:root {
  --purple: #7c3aed;
  --purple-deep: #5326b4;
  --pink: #ec4899;
  --teal: #14b8a6;
  --lavender: #f5f3ff;
  --charcoal: #1f2937;
  --ink: #252333;
  --gray: #6b7280;
  --line: rgba(31, 41, 55, .13);
  --ease: cubic-bezier(.23, 1, .32, 1);
  --display: 'Space Grotesk', sans-serif;
  --body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--body); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body, button, input, textarea { font-family: var(--body); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font-size: inherit; }
button { border: 0; }
::selection { color: #fff; background: var(--purple); }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -100px; padding: 12px 18px; color: #fff; background: var(--purple); font-weight: 700; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 4px; }

.site-header { position: fixed; z-index: 20; inset: 0 0 auto; border-bottom: 1px solid rgba(255,255,255,.28); color: #fff; transition: .3s var(--ease); }
.site-header.is-scrolled { color: var(--ink); background: rgba(255,255,255,.94); border-bottom-color: var(--purple); box-shadow: 0 8px 28px rgba(31, 41, 55, .1); backdrop-filter: blur(14px); }
.header-shell { width: min(1240px, calc(100% - 40px)); min-height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 44px; }
.brand img { width: 45px; height: 45px; }
.brand-copy { display: grid; gap: 1px; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 17px; line-height: .88; letter-spacing: -.04em; text-transform: lowercase; }
.brand-copy small { margin-top: 7px; color: currentColor; opacity: .72; font-size: 8px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(15px, 2.4vw, 32px); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 15px 0; }
.primary-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--pink); transition: right .25s var(--ease); }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; padding: 0 18px; color: #fff; background: var(--purple); transition: transform .2s var(--ease), background .2s ease; }
.nav-cta:hover { background: var(--pink); transform: translateY(-2px); }
.nav-cta span, .button span, .card-link span { font-size: 16px; line-height: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; color: currentColor; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .25s ease; }

.hero { position: relative; min-height: 90vh; min-height: 760px; display: grid; align-items: center; isolation: isolate; overflow: hidden; color: #fff; background: var(--charcoal); }
.hero-media, .hero-media img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay { z-index: 0; background: linear-gradient(90deg, rgba(20, 12, 28, .88) 0%, rgba(31, 20, 42, .6) 47%, rgba(31, 20, 42, .17) 100%), linear-gradient(0deg, rgba(20, 12, 28, .45), transparent 60%); }
.hero::after { content: ''; position: absolute; z-index: 0; inset: 0; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.35) .6px, transparent .6px); background-size: 5px 5px; mix-blend-mode: soft-light; pointer-events: none; }
.hero-content { position: relative; z-index: 1; padding-top: 110px; }
.eyebrow, .section-kicker { margin: 0 0 20px; font-size: 10px; font-weight: 700; letter-spacing: .19em; line-height: 1.3; text-transform: uppercase; }
.eyebrow.light, .section-kicker.light { color: rgba(255,255,255,.7); }
.eyebrow-line { display: inline-block; width: 36px; height: 1px; margin-right: 12px; vertical-align: middle; background: var(--pink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 { max-width: 850px; margin-bottom: 28px; font-size: clamp(54px, 8.8vw, 112px); font-weight: 600; letter-spacing: -.08em; line-height: .88; }
h1 em, h2 em { color: var(--pink); font-style: normal; }
.hero-copy { max-width: 580px; margin-bottom: 34px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 22px; font-size: 12px; font-weight: 700; letter-spacing: .04em; cursor: pointer; transition: transform .2s var(--ease), background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-3px); }
.button:active { transform: scale(.97); }
.button-primary { color: #fff; background: var(--purple); box-shadow: 0 12px 24px rgba(124,58,237,.22); }
.button-primary:hover { background: var(--pink); box-shadow: 0 15px 28px rgba(236,72,153,.25); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.46); background: rgba(255,255,255,.04); }
.button-ghost:hover { color: var(--ink); background: #fff; }
.trust-line { margin-top: 54px; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .04em; }
.trust-line span:not(.trust-dot) { padding-inline: 7px; color: rgba(255,255,255,.4); }
.trust-dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(20,184,166,.15); }
.hero-orb { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -180px; top: 20%; }
.hero-orb-two { width: 160px; height: 160px; right: 16%; bottom: 10%; border-color: rgba(236,72,153,.55); }
.hero-scroll { position: absolute; z-index: 1; right: 40px; bottom: 34px; display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.75); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll i { color: var(--pink); font-size: 22px; font-style: normal; }

.intro-band { padding: 74px 0 82px; background: var(--lavender); }
.intro-grid { display: grid; grid-template-columns: 1fr minmax(360px, 2.1fr) minmax(210px, 1fr); align-items: end; gap: 45px; }
.section-kicker { color: var(--purple); }
.intro-statement { margin: 0; font-family: var(--display); font-size: clamp(28px, 4vw, 50px); font-weight: 500; letter-spacing: -.06em; line-height: 1; }
.intro-statement span { color: var(--purple); font-style: italic; }
.intro-note { max-width: 290px; margin: 0; color: var(--gray); font-size: 13px; line-height: 1.65; }

.section { padding: 110px 0; }
.services-section { background: #fff; }
.section-heading { margin-bottom: 66px; }
.split-heading, .gallery-heading { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 50px; }
h2 { margin-bottom: 0; font-size: clamp(45px, 6vw, 78px); font-weight: 600; letter-spacing: -.08em; line-height: .9; }
h2 em { color: var(--purple); font-weight: 400; }
.section-lead { max-width: 385px; margin: 0 0 4px; color: var(--gray); font-size: 15px; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 330px; display: flex; flex-direction: column; padding: 28px 22px 25px; border-right: 1px solid var(--line); background: #fff; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { position: relative; z-index: 1; transform: translateY(-10px); border-color: var(--purple); box-shadow: 0 20px 35px rgba(31, 41, 55, .12); }
.service-card.accent-card:hover { border-color: var(--pink); }
.service-card.teal-card:hover { border-color: var(--teal); }
.service-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 48px; }
.service-number { color: var(--purple); font-family: var(--display); font-size: 12px; font-weight: 600; }
.service-card svg { width: 37px; height: 37px; fill: none; stroke: var(--purple); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke .25s ease, transform .25s var(--ease); }
.service-card:nth-child(2) svg { stroke: var(--pink); }
.service-card:nth-child(3) svg { stroke: var(--purple-deep); }
.service-card:nth-child(4) svg { stroke: var(--teal); }
.service-card:hover svg { transform: rotate(-9deg) scale(1.1); }
.service-card h3 { min-height: 53px; margin-bottom: 16px; font-size: 20px; line-height: 1.05; letter-spacing: -.05em; }
.service-card p { margin-bottom: 18px; color: var(--gray); font-size: 13px; line-height: 1.65; }
.card-link { margin-top: auto; color: var(--purple); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.card-link span { margin-left: 7px; }

.gallery-section { background: var(--charcoal); color: #fff; }
.gallery-heading { margin-bottom: 54px; }
.gallery-section .section-kicker { color: var(--teal); }
.gallery-section h2 em { color: var(--pink); }
.gallery-section .section-lead { color: rgba(255,255,255,.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.gallery-item { position: relative; min-height: 260px; margin: 0; overflow: hidden; background: #332c40; }
.gallery-item img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .6s var(--ease), filter .4s ease; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,12,28,.9), transparent 60%); opacity: .78; transition: opacity .3s ease; }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.16); }
.gallery-item:hover::after { opacity: .58; }
.gallery-item figcaption { position: absolute; z-index: 1; right: 18px; bottom: 16px; left: 18px; display: flex; align-items: end; gap: 10px; font-size: 13px; font-weight: 600; line-height: 1.2; }
.gallery-item figcaption span { align-self: start; color: var(--pink); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.gallery-item figcaption b { margin-left: auto; color: var(--teal); font-size: 18px; font-weight: 400; }
.gallery-wide { grid-column: span 2; min-height: 390px; }
.gallery-wide img { min-height: 390px; }
.gallery-tall { grid-row: span 2; min-height: 537px; }
.gallery-tall img { min-height: 537px; }

.about-section { background: var(--lavender); }
.about-grid { display: grid; grid-template-columns: minmax(300px, .9fr) 1.1fr; gap: clamp(50px, 9vw, 125px); align-items: center; }
.about-image-wrap { position: relative; padding: 0 30px 30px 0; }
.about-image-wrap::before { content: ''; position: absolute; z-index: 0; inset: 32px 0 0 30px; background: var(--purple); }
.about-image-wrap::after { content: ''; position: absolute; z-index: 2; left: -14px; bottom: 52px; width: 100px; height: 100px; border: 1px solid var(--pink); border-radius: 50%; }
.about-image-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: .93; object-fit: cover; }
.image-stamp { position: absolute; z-index: 3; right: 2px; bottom: 0; display: grid; place-content: center; width: 95px; height: 95px; color: #fff; background: var(--pink); font-size: 11px; line-height: 1.1; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.image-stamp strong { font-family: var(--display); font-size: 16px; letter-spacing: -.04em; }
.about-copy { max-width: 550px; margin: 32px 0 28px; color: var(--gray); font-size: 15px; line-height: 1.8; }
.benefit-list { max-width: 590px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.benefit-list li { display: flex; gap: 18px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 600; }
.benefit-list span { min-width: 25px; color: var(--pink); font-family: var(--display); font-size: 11px; }

.testimonials-section { background: #fff; }
.testimonial-intro { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: end; gap: 40px; margin-bottom: 52px; }
.testimonial-intro .section-kicker { align-self: start; }
.testimonial-intro > p:last-child { max-width: 250px; margin: 0; color: var(--gray); font-size: 12px; line-height: 1.65; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { min-height: 260px; display: flex; flex-direction: column; padding: 27px; background: var(--lavender); }
.featured-testimonial { color: #fff; background: var(--purple); transform: translateY(22px); }
.stars { margin-bottom: 28px; color: var(--pink); font-size: 15px; letter-spacing: .2em; }
.featured-testimonial .stars { color: #fff; }
.testimonial-card blockquote { margin: 0; font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -.05em; line-height: 1.1; }
.testimonial-source { margin: auto 0 0; padding-top: 25px; font-size: 11px; font-weight: 700; }
.testimonial-source span { margin-left: 10px; color: var(--gray); font-weight: 400; }
.featured-testimonial .testimonial-source span { color: rgba(255,255,255,.65); }

.contact-section { position: relative; overflow: hidden; color: #fff; background: var(--charcoal); }
.contact-section::before { content: ''; position: absolute; width: 520px; height: 520px; top: -235px; right: -90px; border: 1px solid rgba(236,72,153,.35); border-radius: 50%; box-shadow: 0 0 0 36px rgba(236,72,153,.07), 0 0 0 72px rgba(236,72,153,.04); }
.contact-section::after { content: ''; position: absolute; width: 260px; height: 260px; bottom: -180px; left: -100px; border: 1px solid rgba(20,184,166,.3); border-radius: 50%; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 115px); align-items: start; }
.contact-copy > p:not(.section-kicker) { max-width: 400px; margin: 30px 0 34px; color: rgba(255,255,255,.63); font-size: 15px; line-height: 1.75; }
.contact-copy h2 em { color: var(--pink); }
.contact-details { display: grid; gap: 17px; margin-bottom: 34px; }
.contact-details a, .contact-details p { margin: 0; color: #fff; font-family: var(--display); font-size: 16px; letter-spacing: -.02em; line-height: 1.35; }
.contact-details a:hover { color: var(--pink); }
.contact-details span { display: block; margin-bottom: 4px; color: var(--teal); font-family: var(--body); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.contact-details p:last-child { color: rgba(255,255,255,.67); font-family: var(--body); font-size: 12px; line-height: 1.5; }
.map-wrap { overflow: hidden; border: 1px solid rgba(255,255,255,.15); filter: grayscale(1) contrast(1.1); opacity: .84; }
.map-wrap iframe { display: block; height: 165px; }
.form-card { padding: clamp(24px, 4vw, 44px); color: var(--ink); background: #fff; box-shadow: 18px 18px 0 var(--purple); }
.form-card-top { display: flex; justify-content: space-between; margin-bottom: 33px; color: var(--purple); font-family: var(--display); font-size: 23px; font-weight: 600; letter-spacing: -.06em; }
.form-card-top span:last-child { color: var(--pink); font-size: 25px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { margin-bottom: 22px; }
.field label { display: block; margin-bottom: 7px; color: var(--gray); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.field sup { color: var(--pink); font-size: 12px; }
.field input, .field textarea { width: 100%; padding: 12px 0; color: var(--ink); border: 0; border-bottom: 1px solid rgba(31,41,55,.25); border-radius: 0; outline: 0; background: transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #a5a5ae; }
.field input:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 2px 0 var(--purple); }
.field-hint { display: block; margin-top: 5px; color: var(--gray); font-size: 10px; }
.form-submit { width: 100%; margin-top: 2px; }
#form-success { padding: 18px; color: #0b5d52; border: 1px solid rgba(20,184,166,.4); background: #e5fbf7; font-size: 14px; }
.form-note { margin: 22px 0 0; color: var(--gray); font-size: 10px; line-height: 1.5; }

.site-footer { color: rgba(255,255,255,.7); background: #171c25; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr 1.1fr 1.2fr; gap: 50px; padding: 72px 0 58px; }
.footer-brand { display: inline-block; color: #fff; font-family: var(--display); font-size: 25px; font-weight: 600; letter-spacing: -.06em; line-height: .9; }
.footer-brand em { color: var(--pink); font-style: normal; }
.footer-grid > div:first-child p { margin-top: 18px; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.55; }
.footer-label { color: var(--teal); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: grid; align-content: start; gap: 10px; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-links p:not(.footer-label) { margin: 3px 0 0; font-size: 12px; line-height: 1.55; }
.footer-cta { border-left: 1px solid rgba(255,255,255,.17); padding-left: 38px; }
.footer-cta p { margin: 0 0 24px; color: #fff; font-family: var(--display); font-size: 26px; letter-spacing: -.06em; line-height: 1.05; }
.footer-cta em { color: var(--pink); font-style: normal; }
.button-light { color: var(--ink); background: #fff; }
.button-light:hover { color: #fff; background: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-bottom a { color: rgba(255,255,255,.75); }
.footer-bottom a:hover { color: var(--pink); }

@media (max-width: 1024px) {
  .header-shell, .shell { width: min(100% - 44px, 920px); }
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.nav-cta) { font-size: 11px; }
  .nav-cta { padding: 0 13px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1.4fr; }
  .footer-cta { grid-column: span 3; border-top: 1px solid rgba(255,255,255,.17); border-left: 0; padding: 25px 0 0; }
  .footer-cta p { display: inline-block; margin-right: 30px; }
}
@media (max-width: 767px) {
  .header-shell, .shell { width: min(100% - 36px, 600px); }
  .site-header { border-bottom-color: rgba(255,255,255,.18); }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 83px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px 20px; color: var(--ink); background: rgba(255,255,255,.98); box-shadow: 0 20px 30px rgba(31,41,55,.14); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.nav-cta) { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { justify-content: center; margin-top: 12px; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 94px; }
  h1 { font-size: clamp(50px, 14vw, 83px); }
  .hero-copy { max-width: 450px; font-size: 14px; }
  .trust-line { margin-top: 35px; font-size: 9px; }
  .hero-scroll { right: 17px; bottom: 20px; }
  .intro-band { padding: 58px 0; }
  .intro-grid, .split-heading, .gallery-heading, .testimonial-intro, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .intro-statement { max-width: 500px; }
  .intro-note { max-width: 360px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 40px; }
  h2 { font-size: clamp(46px, 13vw, 70px); }
  .section-lead { max-width: 480px; }
  .service-card { min-height: 285px; padding: 22px 17px; }
  .service-top { margin-bottom: 28px; }
  .service-card h3 { font-size: 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item, .gallery-wide, .gallery-tall { min-height: 215px; grid-column: auto; grid-row: auto; }
  .gallery-item img, .gallery-wide img, .gallery-tall img { min-height: 215px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 2; }
  .gallery-item figcaption { right: 10px; bottom: 10px; left: 10px; font-size: 10px; gap: 5px; }
  .gallery-item figcaption b { font-size: 14px; }
  .about-grid { gap: 48px; }
  .about-image-wrap { width: calc(100% - 20px); max-width: 465px; }
  .about-copy { margin-top: 24px; font-size: 14px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 12px; }
  .testimonial-card { min-height: 215px; }
  .featured-testimonial { transform: none; }
  .contact-grid { gap: 55px; }
  .form-card { box-shadow: 10px 10px 0 var(--purple); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; padding: 58px 0 45px; }
  .footer-cta { grid-column: span 2; }
  .footer-cta p { display: block; margin-bottom: 20px; }
}
@media (max-width: 479px) {
  .header-shell, .shell { width: calc(100% - 30px); }
  .brand-copy small { display: none; }
  .hero { min-height: 690px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(20, 12, 28, .9), rgba(31,20,42,.58)), linear-gradient(0deg, rgba(20,12,28,.5), transparent 70%); }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 270px; }
  .button { min-height: 48px; }
  .trust-line { max-width: 230px; line-height: 1.8; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide { grid-column: auto; }
  .gallery-item, .gallery-wide, .gallery-tall, .gallery-item img, .gallery-wide img, .gallery-tall img { min-height: 290px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta { grid-column: auto; }
  .footer-bottom { display: grid; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
