/* RIVERSIDE PHOTO CO. — HIGH CONTRAST · BOLD · SAGE + BLUE */
:root {
  --blue: #2e5d8a;
  --blue-light: #4a7aaa;
  --blue-dark: #1e4268;
  --blue-glow: rgba(46, 93, 138, 0.10);
  --sage: #5c7a4a;
  --sage-light: #7a9a66;
  --sage-dark: #3e5a32;
  --sage-glow: rgba(92, 122, 74, 0.10);
  --white: #ffffff;
  --off-white: #f4f1ec;
  --cream: #e8e3da;
  --cream-2: #ddd6cb;
  --sand: #c4b9aa;
  --warm-gray: #9e9184;
  --gray-400: #736860;
  --gray-500: #554c44;
  --gray-600: #3d362f;
  --charcoal: #1c1917;
  --deep: #131110;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --section-pad: clamp(56px, 7vw, 90px);
  --container: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 1.65; color: var(--gray-600); background: var(--off-white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
::selection { background: var(--blue); color: var(--white); }

.anim-fade, .anim-slide { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.anim-fade.visible, .anim-slide.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 32px; border: none; border-radius: 3px; cursor: pointer; transition: all 0.35s var(--ease); }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(46, 93, 138, 0.3); }
.btn--outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn--secondary { background: var(--cream); color: var(--charcoal); border: 1.5px solid var(--sand); }
.btn--secondary:hover { border-color: var(--blue); background: var(--blue-glow); transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 40px; font-size: 14px; }

/* SECTION HEADERS */
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 46px); font-weight: 700; line-height: 1.15; color: var(--charcoal); margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--blue); }
.section-desc { font-size: 16px; color: var(--gray-500); max-width: 520px; line-height: 1.7; font-weight: 500; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .section-desc { margin: 0 auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.35s var(--ease); }
.nav.scrolled { background: rgba(244, 241, 236, 0.97); backdrop-filter: blur(16px); padding: 10px 0; border-bottom: 1px solid var(--sand); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; flex-direction: column; transition: opacity 0.3s; }
.nav__logo:hover { opacity: 0.8; }
.nav__logo-mark { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; letter-spacing: -0.5px; }
.nav__logo-sub { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: var(--blue-light); margin-top: 1px; padding-left: 2px; }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-500); transition: color 0.3s; position: relative; }
.nav__links a:hover { color: var(--charcoal); }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { background: var(--blue) !important; color: var(--white) !important; padding: 10px 26px !important; font-weight: 600 !important; border-radius: 3px !important; }
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s var(--ease); transform-origin: center; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 25% 25%, rgba(46,93,138,0.06) 0%, transparent 50%), radial-gradient(ellipse at 75% 75%, rgba(92,122,74,0.05) 0%, transparent 50%), linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%); overflow: hidden; }
.hero__grain { position: absolute; inset: 0; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px; pointer-events: none; }
.hero__content { text-align: center; padding: 0 24px; max-width: 760px; position: relative; z-index: 2; }
.hero__location { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--blue); margin-bottom: 32px; padding: 8px 24px; border: 2px solid var(--blue); border-radius: 40px; }
.hero__location svg { stroke: var(--blue); }
.hero__title { font-family: var(--font-display); font-size: clamp(40px, 7vw, 76px); font-weight: 800; line-height: 1.08; color: var(--charcoal); margin-bottom: 24px; }
.hero__title span { display: block; }
.hero__title-accent { color: var(--blue) !important; font-style: italic; }
.hero__sub { font-family: var(--font-accent); font-size: clamp(17px, 2.2vw, 21px); font-weight: 500; color: var(--gray-400); margin-bottom: 40px; line-height: 1.5; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2; }
.hero__scroll span { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--warm-gray); }
.hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--blue), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* TRUST */
.trust { padding: 36px 0; background: var(--charcoal); }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust__item { text-align: center; }
.trust__number { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px; }
.trust__label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.trust__divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* SERVICES */
.services { padding: var(--section-pad) 0; background: var(--off-white); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { display: flex; flex-direction: column; padding: 32px 24px; background: var(--white); border: 2px solid var(--cream); transition: all 0.4s var(--ease); overflow: hidden; border-radius: 4px; position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--blue)); transform: scaleX(0); transition: transform 0.4s var(--ease); }
.service-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 20px; }
.service-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.service-card__desc { font-size: 13px; font-weight: 500; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.service-card__price { font-family: var(--font-display); font-size: 16px; color: var(--blue-dark); font-weight: 700; margin-bottom: 10px; }
.service-card__link { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-dark); transition: letter-spacing 0.3s var(--ease); }
.service-card:hover .service-card__link { letter-spacing: 3px; color: var(--blue); }

/* EXPANDABLE SECTIONS */
.expandable { padding: var(--section-pad) 0; border-top: 2px solid var(--cream); }
.expandable:nth-of-type(odd) { background: var(--white); }
.expandable:nth-of-type(even) { background: var(--off-white); }
.expandable__header { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 0; font-family: inherit; gap: 24px; }
.expandable__preview { font-size: 15px; font-weight: 500; color: var(--gray-400); margin-top: 8px; }
.expandable__toggle { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; color: var(--blue); transition: transform 0.3s; }
.expandable__toggle-text { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap; }
.expandable__toggle svg { transition: transform 0.35s var(--ease); }
.expandable__header.active .expandable__toggle svg { transform: rotate(180deg); }
.expandable__header.active .expandable__toggle-text { display: none; }
.expandable__body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out), opacity 0.4s; opacity: 0; }
.expandable__body.open { opacity: 1; margin-top: 32px; }

/* BOOTH INNER */
.booth__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.booth__img { overflow: hidden; border-radius: 4px; }
.booth__img img { width: 100%; height: 100%; object-fit: cover; }
.split__photo { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

/* PRICING CARDS */
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pricing-card { padding: 28px 24px; background: var(--off-white); border: 2px solid var(--cream); transition: all 0.35s var(--ease); border-radius: 4px; }
.pricing-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.pricing-card--featured { border-color: var(--blue); background: linear-gradient(135deg, var(--off-white) 0%, rgba(46,93,138,0.04) 100%); }
.pricing-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pricing-card__label { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.pricing-card__badge { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-dark); background: var(--blue-glow); padding: 4px 10px; border-radius: 3px; }
.pricing-card__price { margin-bottom: 16px; }
.pricing-card__amount { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.pricing-card__per { font-size: 15px; font-weight: 600; color: var(--gray-500); margin-left: 2px; }
.pricing-card__features { list-style: none; margin-bottom: 20px; }
.pricing-card__features li { font-size: 13px; font-weight: 500; color: var(--gray-600); padding: 4px 0 4px 20px; position: relative; }
.pricing-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 800; font-size: 12px; }

/* PHOTOGRAPHY GRID */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-tier { padding: 28px 24px; background: var(--white); border: 2px solid var(--cream); position: relative; overflow: hidden; transition: all 0.35s var(--ease); border-radius: 4px; }
.photo-tier:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.06); }
.photo-tier__accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--blue)); opacity: 0; transition: opacity 0.35s; }
.photo-tier:hover .photo-tier__accent { opacity: 1; }
.photo-tier--featured { border-color: var(--blue); }
.photo-tier--featured .photo-tier__accent { opacity: 1; }
.photo-tier__badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 10px; }
.photo-tier__title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.photo-tier__price { margin-bottom: 4px; }
.photo-tier__amount { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.photo-tier__per { font-size: 15px; font-weight: 600; color: var(--gray-500); }
.photo-tier__duration { font-size: 12px; font-weight: 600; color: var(--gray-400); margin-bottom: 18px; }
.photo-tier__list { list-style: none; margin-bottom: 24px; }
.photo-tier__list li { font-size: 13px; font-weight: 500; color: var(--gray-600); padding: 4px 0 4px 20px; position: relative; }
.photo-tier__list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 800; font-size: 12px; }
.photo-tier--wide { grid-column: 1 / -1; }
.photo-tier--wide__inner { display: flex; align-items: center; gap: 28px; }
.photo-tier--wide__img { flex-shrink: 0; width: 280px; height: 200px; border-radius: 4px; overflow: hidden; }
.photo-tier--wide__img img { width: 100%; height: 100%; object-fit: cover; }
.photo-tier--wide__text { flex: 1; }
.photo-tier--wide__right { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }

/* GALLERY */
.gallery { padding: var(--section-pad) 0; background: var(--charcoal); }
.gallery .section-tag { color: var(--sage-light); }
.gallery .section-title { color: var(--white); }
.gallery .section-title em { color: var(--blue-light); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 5px; }
.gallery__item { overflow: hidden; border-radius: 3px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* SCHOOL */
.school { padding: var(--section-pad) 0; background: var(--cream); }
.school__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.school__features { list-style: none; margin: 16px 0; }
.school__features li { font-size: 14px; font-weight: 600; color: var(--gray-600); padding: 4px 0 4px 20px; position: relative; }
.school__features li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 800; }
.school__notice { font-size: 13px; font-weight: 600; color: var(--blue-dark); background: var(--blue-glow); padding: 10px 16px; border-left: 3px solid var(--blue); border-radius: 0 3px 3px 0; margin-top: 4px; }
.school__img { margin: 16px 0; border-radius: 4px; overflow: hidden; }
.school__img img { width: 100%; height: 160px; object-fit: cover; }
.school__form-wrap { background: var(--white); border: 2px solid var(--sand); padding: 32px 28px; border-radius: 4px; }
.school__form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }

/* ABOUT */
.about { padding: var(--section-pad) 0; background: var(--white); }
.about__layout { display: flex; align-items: flex-start; gap: 48px; }
.about__text { flex: 1; }
.about__headshot { flex-shrink: 0; width: 200px; }
.about__headshot img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 4px; border: 2px solid var(--cream); }
.split__text { font-size: 15px; font-weight: 500; color: var(--gray-500); line-height: 1.7; margin-bottom: 12px; }
.about__signature { margin-top: 20px; padding-top: 16px; border-top: 2px solid var(--cream); }
.about__sig-name { display: block; font-family: var(--font-accent); font-size: 26px; font-style: italic; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.about__sig-title { font-size: 12px; font-weight: 600; color: var(--gray-400); letter-spacing: 1px; }

/* CONTACT */
.contact { padding: var(--section-pad) 0; background: var(--off-white); }
.contact__layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact__text { font-size: 15px; font-weight: 500; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.contact__details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact__detail { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--gray-600); }
.contact__detail svg { color: var(--blue); flex-shrink: 0; }
.contact__detail a { transition: color 0.3s; }
.contact__detail a:hover { color: var(--blue); }
.contact__img { margin-top: 16px; border-radius: 4px; overflow: hidden; }
.contact__img img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; }
.contact__form-wrap { background: var(--white); border: 2px solid var(--cream); padding: 36px 32px; border-radius: 4px; }
.contact__form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-600); }
.form-group input, .form-group select, .form-group textarea { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--charcoal); background: var(--off-white); border: 2px solid var(--cream); padding: 12px 14px; outline: none; transition: all 0.3s var(--ease); border-radius: 3px; -webkit-appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23554c44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; background-color: var(--off-white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--warm-gray); font-weight: 500; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group--submit { margin-top: 4px; }
.form-note { font-size: 12px; font-weight: 500; color: var(--gray-400); text-align: center; margin-top: 8px; }

/* FOOTER */
.footer { background: var(--blue-dark); color: rgba(255,255,255,0.65); }
.footer__inner { display: flex; justify-content: space-between; align-items: flex-start; padding: 48px 24px 32px; gap: 40px; }
.footer__logo-mark { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.footer__logo-sub { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 2px; }
.footer__tagline { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); max-width: 260px; line-height: 1.6; margin-top: 10px; }
.footer__links { display: flex; gap: 60px; }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.footer__col a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer__bottom-inner { display: flex; justify-content: space-between; padding: 16px 24px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .booth__inner { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-tier--wide__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .photo-tier--wide__img { width: 100%; height: 220px; }
  .contact__layout { grid-template-columns: 1fr; gap: 36px; }
  .school__layout { grid-template-columns: 1fr; gap: 32px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .about__layout { flex-direction: row; }
}
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links { position: fixed; top: 0; right: -100%; width: 240px; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; align-items: flex-start; padding: 40px 32px; gap: 24px; transition: right 0.4s var(--ease-out); border-left: 2px solid var(--cream); box-shadow: -8px 0 32px rgba(0,0,0,0.1); }
  .nav__links.open { right: 0; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .trust__divider { display: none; }
  .trust__item { flex: 1; min-width: 90px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap, .school__form-wrap { padding: 24px 18px; }
  .footer__inner { flex-direction: column; }
  .footer__links { gap: 40px; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .services__grid { grid-template-columns: 1fr; }
  .about__layout { flex-direction: column; align-items: flex-start; gap: 24px; }
  .about__headshot { width: 160px; }
  .expandable__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .booth__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__location { font-size: 10px; letter-spacing: 3px; padding: 6px 18px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .about__headshot { width: 140px; }
}
