/* =====================================================
   Peach Parking Solutions — redesign
   ===================================================== */

/* ── Gravesend Sans ── */
@font-face {
  font-family: 'Gravesend Sans';
  src: url('fonts/gravesend-sans-light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gravesend Sans';
  src: url('fonts/gravesend-sans-medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gravesend Sans';
  src: url('fonts/gravesend-sans-bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --ink:     #1a1a1a;
  --ink-2:   #444;
  --cream:   #fdf8f3;
  --white:   #ffffff;
  --rule:    #e8e0d4;
  --peach:   #f2956a;
  --peach-2: #e07a4c;
  --terra:   #c4501f;
  --muted:   #888;
  --navy:    #1b2a3b;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'Manrope', -apple-system, 'Segoe UI', sans-serif;

  --max:  1200px;
  --pad:  clamp(20px, 5vw, 64px);
  --r:    8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  padding-top: 70px;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── GRAIN ── */
.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 9999;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── CONTAINER ── */
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: .04em; cursor: pointer; border: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--peach   { background: var(--peach); color: #fff; border-color: var(--peach); }
.btn--peach:hover { background: var(--peach-2); border-color: var(--peach-2); }
.btn--dark    { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #333; border-color: #333; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--lg { padding: 16px 36px; font-size: 15px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 var(--pad);
  height: 110px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  height: 70px;
  background: rgba(253,248,243,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; margin-right: auto;
}
.nav__logo {
  width: 580px; height: 232px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  margin-block: -76px;
  filter: invert(1);
  transition: width .35s ease, height .35s ease, margin-block .35s ease, filter .35s ease;
}
.nav.scrolled .nav__logo {
  width: 460px; height: 174px;
  margin-block: -52px;
  filter: none;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex; gap: 6px;
}
.nav__links a {
  padding: 8px 16px; border-radius: 6px;
  font-size: 18px; font-weight: 600; color: #fff;
  transition: background .2s, color .2s, font-size .35s ease;
}
.nav__links a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav__links a.is-active { color: var(--peach); font-weight: 700; }
.nav.scrolled .nav__links a { color: var(--ink-2); font-size: 14px; padding: 8px 14px; text-shadow: none; }
.nav.scrolled .nav__links a:hover { background: var(--rule); color: var(--ink); }
.nav.scrolled .nav__links a.is-active { color: var(--peach-2); }

.nav__cta { flex-shrink: 0; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.6); }
.nav__cta:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }
.nav.scrolled .nav__cta { color: var(--ink); border-color: var(--ink); }
.nav.scrolled .nav__cta:hover { background: var(--ink); color: #fff; }

/* ── NAV DROPDOWN ── */
.nav__dropdown-wrap {
  position: relative;
}
/* Bridge the 8px gap between trigger and menu so hover doesn't drop */
.nav__dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 10px;
}
.nav__dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 16px; border-radius: 6px;
  font-family: var(--font-body); font-size: 18px; font-weight: 600;
  color: #fff; background: none; border: none; cursor: pointer;
  transition: background .2s, color .2s, font-size .35s ease;
}
.nav__dropdown-trigger:hover,
.nav__dropdown-wrap:hover .nav__dropdown-trigger { background: rgba(255,255,255,.12); color: #fff; }
.nav__dropdown-trigger.is-active { color: var(--peach); font-weight: 700; }
.nav.scrolled .nav__dropdown-trigger { color: var(--ink-2); font-size: 14px; padding: 8px 14px; text-shadow: none; }
.nav.scrolled .nav__dropdown-trigger:hover,
.nav.scrolled .nav__dropdown-wrap:hover .nav__dropdown-trigger { background: var(--rule); color: var(--ink); }
.nav.scrolled .nav__dropdown-trigger.is-active { color: var(--peach-2); }
.nav__dropdown-arrow {
  font-size: 10px;
  transition: transform .2s ease;
  display: inline-block;
}
.nav__dropdown-wrap:hover .nav__dropdown-arrow,
.nav__dropdown-wrap.open .nav__dropdown-arrow { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 210px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  box-shadow: none;
  list-style: none; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap.open .nav__dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav__dropdown li a {
  display: block; padding: 11px 20px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav__dropdown li a:hover { background: var(--rule); color: var(--ink); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 10px; margin-left: auto;
  width: 44px; height: 44px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ── SECTION HEAD ── */
.section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head__eyebrow {
  display: inline-block; margin-bottom: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--peach);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--peach-2); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-start;
  overflow: hidden;
  margin-top: -70px;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  transform: scale(1.08);
  transform-origin: center center;
  animation: heroZoom 14s ease-out forwards;
}
@media (min-width: 901px) {
  .hero__bg img { object-position: center 60%; }
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay { display: none; }
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max); margin-inline: auto;
  padding: clamp(130px,20vh,200px) var(--pad) clamp(60px,10vw,120px);
  color: #fff;
}
.hero__traits {
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(54px, 9vw, 120px); line-height: .95; letter-spacing: -.025em;
  margin-bottom: 24px; max-width: 12ch;
}
.hero__title em { font-style: italic; color: var(--peach); font-weight: 400; }
.hero__sub {
  font-size: clamp(16px, 2vw, 19px); max-width: 32ch;
  color: rgba(255,255,255,.85); margin-bottom: 36px; line-height: 1.6;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.hero__scroll::before {
  content: ""; display: block; width: 1px; height: 40px;
  background: rgba(255,255,255,.3); margin: 0 auto 8px;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* ── PARTNER LOGOS ── */
.partners {
  background: var(--white);
  padding: 40px 0 60px;
}
.partners__inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.partners__label {
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.partners__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center; align-items: center;
  width: 100%; max-width: 860px; margin-inline: auto;
  gap: 40px 48px;
}
.partners__cortland {
  display: flex; justify-content: center; width: 100%;
  margin-top: 4px;
}
.partners__cortland .partners__logo-wrap img { height: 58px; }
.partners__logo-wrap {
  display: flex; align-items: center; justify-content: center;
  opacity: .85; transition: opacity .2s;
  flex: 0 0 auto;
}
.partners__logo-wrap:hover { opacity: 1; }
.partners__logo-wrap img {
  height: 68px; width: auto; display: block;
}
.partners__logo-wrap img[alt="Block & Drum"] {
  height: 84px;
}
.partners__logo-wrap img[alt="The 1904 on Piedmont Park"] {
  filter: invert(1);
}
.partners__logo-wrap img[alt="Tabla"] {
  height: 96px;
}
.partners__logo-wrap img[alt="Emory University"] {
  height: 60px;
}
.partners__logo-wrap img[alt="Terminus Commercial Real Estate Partners"] {
  height: 76px;
  mix-blend-mode: multiply;
}
.partners__logo-wrap img[alt="The Real Housewives of Atlanta"] {
  height: 68px;
}

/* ── PEACH ACRONYM ── */
.peach-values {
  background: var(--ink);
  padding: clamp(28px, 3.5vw, 48px) 0;
}
.peach-values__label {
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px; text-align: center;
}
.peach-values__list {
  list-style: none;
  display: flex; flex-direction: row;
  justify-content: center; align-items: baseline;
  gap: clamp(12px, 3vw, 24px);
  flex-wrap: wrap;
  width: 100%;
}
.peach-values__item {
  display: inline-flex; flex-direction: row; align-items: baseline;
  gap: 1px;
  padding: 6px 0;
  font-family: 'Gravesend Sans', var(--font-display);
  line-height: 1;
  transition-delay: calc(var(--i, 0) * 120ms) !important;
  white-space: nowrap;
}
.peach-values__letter {
  font-size: clamp(28px, 4.2vw, 68px);
  color: var(--peach);
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  flex-shrink: 0;
}
.peach-values__rest {
  font-size: clamp(14px, 2vw, 32px);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1;
}
@media (min-width: 900px) {
  .peach-values__list {
    justify-content: space-between;
    gap: 0;
    flex-wrap: nowrap;
  }
}

/* ── SERVICES (three-column editorial) ── */
.services {
  padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 56px);
  background: var(--white);
}
.service-cols {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(24px, 3vw, 40px);
}
.service-col {
  display: flex; flex-direction: column;
  padding: 8px 4px;
}
.service-col__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--peach-2);
  margin-bottom: 14px;
  letter-spacing: .005em;
  line-height: 1.3;
  min-height: 2.6em;
}
.service-col__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
  min-height: 3.5rem;
  display: flex; align-items: flex-start;
}
.service-col__rule {
  display: block;
  width: 100%; height: 2px;
  background: var(--peach);
  margin-bottom: 22px;
}
.service-col__desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
}
.service-col__media {
  width: 100%; aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--r); margin-bottom: 28px;
}
.service-col__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.service-col:hover .service-col__media img { transform: scale(1.05); }
.service-col:first-child .service-col__media img { transform: scale(1.18); transform-origin: 78% center; }
.service-col:first-child:hover .service-col__media img { transform: scale(1.24); transform-origin: 78% center; }
.service-col__link {
  align-self: flex-start;
  position: relative;
  margin-top: auto;
  padding-bottom: 10px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink);
  transition: color .25s ease;
}
.service-col__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 48px; height: 2px;
  background: var(--peach);
  transition: width .3s cubic-bezier(.2,.7,.2,1), background .25s ease;
}
.service-col__link:hover { color: var(--peach-2); }
.service-col__link:hover::after { width: 72px; background: var(--peach-2); }

@media (max-width: 860px) {
  .service-cols { grid-template-columns: 1fr; gap: 44px; }
  .service-col { padding: 0; }
}

/* ── PHOTO COLLAGE ── */
.collage {
  padding: clamp(64px, 8vw, 120px) 0 0;
  background: var(--cream);
}
.collage__head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.collage__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.1; letter-spacing: -.02em;
  margin-top: 12px;
  color: var(--ink);
}
.collage__title em { font-style: italic; color: var(--peach-2); font-weight: 400; }

.collage__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, clamp(200px, 20vw, 300px)) clamp(240px, 25vw, 380px);
  gap: 0;
  padding: 0;
}
.collage__item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
/* Explicit placement — fills every cell of a 6×3 grid */
.collage__item--a { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.collage__item--b { grid-column: 3 / span 2; grid-row: 1 / span 1; }
.collage__item--c { grid-column: 5 / span 2; grid-row: 1 / span 2; }
.collage__item--d { grid-column: 3 / span 2; grid-row: 2 / span 1; }
.collage__item--e { grid-column: 1 / span 3; grid-row: 3 / span 1; }
.collage__item--f { grid-column: 4 / span 3; grid-row: 3 / span 1; }

.collage__item img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
}
/* Per-cell framing */
.collage__item--a img { object-position: center 30%; }
.collage__item--c img { object-position: center 20%; }
.collage__item--d img { object-position: center 40%; }
.collage__item--e img { object-position: center 60%; }
.collage__item--f img { object-position: right 40%; }
.collage__item img.img-in { opacity: 1; transform: scale(1); }
.collage__item:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .collage {
    padding: clamp(48px, 6vw, 72px) 0 0;
  }
  .collage__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 68vw 28vw 28vw 48vw;
    gap: 0;
    padding: 0;
  }
  .collage__item { border-radius: 0; }
  /* A: wide hero spanning all 6 cols */
  .collage__item--a { grid-column: 1 / span 6; grid-row: 1 / span 1; }
  /* B: tall portrait, left 2 cols, rows 2-3 */
  .collage__item--b { grid-column: 1 / span 2; grid-row: 2 / span 2; }
  /* C: hidden on mobile */
  .collage__item--c { display: none; }
  /* D & E: expand to fill rows 2-3 */
  .collage__item--d { grid-column: 3 / span 2; grid-row: 2 / span 2; }
  .collage__item--e { grid-column: 5 / span 2; grid-row: 2 / span 2; }
  /* Mobile-specific framing fixes */
  .collage__item--a img { object-position: center 38%; }
  .collage__item--b img { object-position: center 25%; }
  /* F: wide bottom feature spanning all 6 cols */
  .collage__item--f { grid-column: 1 / span 6; grid-row: 4 / span 1; }
}

/* ── PRIVATE EVENTS SPOTLIGHT ── */
.spotlight {
  position: relative; isolation: isolate;
  background: var(--ink);
  color: #fff;
  min-height: clamp(520px, 62vw, 720px);
  display: flex; align-items: center;
  overflow: hidden;
}
.spotlight__media {
  position: absolute; inset: 0; z-index: 0;
}
.spotlight__media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s ease, transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.spotlight__media img.img-in { opacity: .95; transform: scale(1); }
.spotlight__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,10,10,.42) 0%,
    rgba(10,10,10,.18) 55%,
    rgba(10,10,10,.04) 100%
  );
}
.spotlight__inner {
  position: relative; z-index: 1;
  padding-block: clamp(80px, 10vw, 140px);
}
.spotlight__copy { max-width: 640px; }
.spotlight__copy .section-head__eyebrow { color: var(--peach); }
.spotlight__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -.02em;
  margin: 14px 0 22px; color: #fff;
}
.spotlight__title em { font-style: italic; color: var(--peach); font-weight: 400; }
.spotlight__lede {
  color: rgba(255,255,255,.82); font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65; max-width: 56ch; margin-bottom: 28px;
}
.spotlight__chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 32px;
}
.spotlight__chips li {
  padding: 8px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
  transition: border-color .25s, background .25s, color .25s;
}
.spotlight__chips li:hover {
  border-color: var(--peach); background: rgba(242,149,106,.12); color: #fff;
}
.spotlight__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}

@media (max-width: 768px) {
  .spotlight { min-height: 0; padding-block: 0; }
  .spotlight__media img.img-in { opacity: .4; }
  .spotlight__inner { padding-block: clamp(64px, 14vw, 110px); }
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--white);
}
.testimonials__stage {
  max-width: 720px; margin-inline: auto;
  text-align: center;
}
.testimonials__quotes {
  position: relative;
  min-height: 180px;
  margin-bottom: 44px;
}
.testimonials__quote {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.testimonials__quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonials__quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.01em;
}

.testimonials__author-row {
  display: inline-flex; align-items: center;
  gap: 24px;
}
.testimonials__avatars {
  display: flex;
}
.testimonials__avatars .t-avatar + .t-avatar {
  margin-left: -8px;
}
.t-avatar {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--rule);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; font-weight: 400;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s ease;
}
.t-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
}
.t-avatar img.avatar-invert {
  filter: invert(1);
}
.t-avatar:hover {
  transform: scale(1.06);
  z-index: 2;
}
.t-avatar.is-active {
  transform: scale(1.15);
  z-index: 3;
}
.testimonials__divider {
  width: 1px; height: 32px; background: var(--rule);
}
.testimonials__authors {
  position: relative;
  min-width: 200px;
  min-height: 44px;
  text-align: left;
}
.t-author {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.t-author.is-active {
  opacity: 1;
  pointer-events: auto;
}
.t-author__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.2;
}
.t-author__role {
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 600px) {
  .testimonials__author-row {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials__divider { display: none; }
  .testimonials__authors {
    text-align: center;
    min-width: 220px;
  }
  .t-author { align-items: center; }
}

/* ── ABOUT ── */
.about {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--navy);
  color: #fff;
}
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.about__media--ig { display: flex; align-items: center; justify-content: center; }
.about__media--ig .instagram-media { border-radius: var(--r) !important; width: 100% !important; }
.about__media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r);
  opacity: 0; transform: scale(1.04);
  filter: brightness(1.18);
  transition: opacity 1s ease, transform 1.3s cubic-bezier(.2,.7,.2,1);
}
.about__media img.img-in { opacity: 1; transform: scale(1); }
.about__copy .section-head__eyebrow { color: var(--peach); }

/* Instagram link overlay on about photo */
.about__ig {
  position: relative; display: block;
  border-radius: var(--r); overflow: hidden;
}
.about__ig::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 40%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.about__ig:hover::after { opacity: 1; }
.about__ig-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 50px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .01em;
  transform: translateY(6px); opacity: .92;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.about__ig:hover .about__ig-badge {
  transform: translateY(0); opacity: 1;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
}
.about__copy h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.02em;
  margin: 12px 0 20px;
}
.about__copy h2 em { font-style: italic; color: var(--peach); font-weight: 400; }
.about__copy p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 16px; max-width: 52ch; }
.about__traits {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 28px 0 36px;
}
.about__traits span {
  padding: 8px 18px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
}
.about__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ── STAY IN TOUCH ── */
/* ── AS FEATURED ON ── */
.featured-on {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.featured-on__inner {
  max-width: 1000px; margin-inline: auto;
}
.featured-on .section-head__eyebrow {
  color: var(--peach);
}
.featured-on__show-logo {
  display: block; margin: 20px auto 32px;
  height: 160px; width: auto;
}
.featured-on__desc {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.7;
  color: rgba(255,255,255,.75); max-width: 58ch; margin: 0 auto 40px;
}
.featured-on__desc em { font-style: italic; color: #fff; }
.featured-on__stills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}
.featured-on__still {
  margin: 0; overflow: hidden; border-radius: 10px;
  aspect-ratio: 16/10;
}
.featured-on__still img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 90%;
  transform: scale(1.12);
  transition: transform .4s ease;
}
.featured-on__still--wide img { object-position: center 90%; }
.featured-on__still:hover img { transform: scale(1.17); }

@media (max-width: 600px) {
  .featured-on__stills { grid-template-columns: 1fr; }
  .featured-on__show-logo { height: 56px; }
}

.stay {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--cream);
  text-align: center;
}
.stay__inner { max-width: 720px; margin-inline: auto; }
.stay__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1; letter-spacing: -.02em;
  margin: 12px 0 18px; color: var(--ink);
}
.stay__title em {
  font-style: italic; color: var(--peach-2); font-weight: 400;
}
.stay__sub {
  color: var(--ink-2); font-size: 16px; line-height: 1.6;
  max-width: 52ch; margin: 0 auto 36px;
}
.stay__cta-row {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.stay__social-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 50px;
  background: var(--white); color: var(--ink);
  border: 2px solid var(--rule);
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: .02em;
  transition: border-color .25s, color .25s, transform .25s, box-shadow .25s;
}
.stay__social-btn svg { flex-shrink: 0; }
.stay__social-btn:hover {
  border-color: var(--peach);
  color: var(--peach-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(242,149,106,.18);
}
.stay__fineprint {
  font-size: 12px; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: 24px;
}

/* ── CONTACT ── */
.contact {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--white);
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact__info h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -.02em;
  margin: 12px 0 20px;
}
.contact__info h2 em { font-style: italic; color: var(--peach-2); font-weight: 400; }
.contact__info p { color: var(--ink-2); font-size: 16px; margin-bottom: 24px; }
.contact__address { font-style: normal; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rule); }
.contact__address p { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--ink); margin: 0; line-height: 1.4; }

.contact__form {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: var(--r); padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.field__optional {
  font-weight: 400; letter-spacing: .04em; text-transform: none;
  color: var(--muted); opacity: .75; margin-left: 6px;
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--rule); border-radius: 6px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
@media (max-width: 768px) {
  .field input, .field select, .field textarea {
    font-size: 16px; /* prevents iOS auto-zoom on focus */
    padding: 14px 16px;
  }
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--peach); box-shadow: 0 0 0 3px rgba(242,149,106,.15);
}
.form__status { font-size: 14px; color: var(--peach-2); min-height: 1em; }

/* ── FILE DROP ── */
.file-drop {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  border: 2px dashed var(--rule);
  border-radius: var(--r);
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s;
  background: var(--white);
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--peach);
  background: rgba(242,149,106,.04);
}
.file-drop input[type="file"] { display: none; }
.file-drop__icon { color: var(--muted); }
.file-drop__text { font-size: 14px; color: var(--ink-2); }
.file-drop__text u { color: var(--peach-2); text-decoration: underline; cursor: pointer; }
.file-drop__hint { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.file-drop__names {
  font-size: 13px; color: var(--peach-2); font-weight: 600;
  word-break: break-all; margin-top: 4px;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-top: clamp(40px, 5vw, 64px);
  position: relative;
}
.footer__egg {
  position: absolute; bottom: 56px; right: 48px;
  width: 150px; height: auto;
  opacity: .80; pointer-events: auto;
  transition: opacity .3s ease, transform .4s cubic-bezier(.2,.7,.2,1);
  cursor: default;
}
.footer__egg:hover {
  opacity: 1;
  animation: eggBounce .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes eggBounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-14px); }
  60%  { transform: translateY(-5px); }
  80%  { transform: translateY(-9px); }
  100% { transform: translateY(0); }
}
@media (max-width: 768px) {
  .footer__egg { width: 78px; bottom: 56px; right: 12px; }
}
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 28px 48px;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand { display: flex; align-items: center; }
.footer__logo { width: 220px; height: auto; opacity: .95; }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 6px 24px;
  margin-left: auto; align-self: center;
}
.footer__nav a { font-size: 14px; transition: color .2s; }
.footer__nav a:hover { color: var(--peach); }
.footer__social {
  display: flex; align-items: center; gap: 16px;
  align-self: center;
}
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.15);
  transition: color .2s, border-color .2s, transform .2s, background-color .2s;
}
.footer__social a:hover {
  color: #fff; border-color: var(--peach); background: rgba(242,149,106,.14);
  transform: translateY(-1px);
}
.footer__address { font-size: 14px; font-style: normal; width: 100%; }
.footer__bottom {
  padding: 18px 0;
  font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.35);
}
.footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: rgba(255,255,255,.35); transition: color .2s ease; }
.footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0 clamp(60px, 8vw, 100px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  opacity: .6;
}
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,.25) 0%, var(--ink) 95%);
}
.page-hero__inner { position: relative; z-index: 2; text-align: center; }
.page-hero__crumb {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.page-hero__crumb a { color: var(--peach); transition: color .2s; }
.page-hero__crumb a:hover { color: #fff; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(44px, 7vw, 96px); line-height: 1; letter-spacing: -.025em;
  margin-bottom: 18px;
}
.page-hero__title em { font-style: italic; color: var(--peach); font-weight: 400; }
.page-hero__sub {
  font-size: clamp(16px, 2vw, 20px); max-width: 60ch; margin: 0 auto;
  color: rgba(255,255,255,.75);
}

/* ── PAGE CONTENT BLOCKS ── */
.page-section { padding: clamp(64px, 8vw, 120px) 0; background: var(--white); }
.page-section--cream { background: var(--cream); }

/* ── LEGAL PAGES ── */
.legal { max-width: 760px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -.01em;
  color: var(--ink); margin: 48px 0 16px;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--ink-2); line-height: 1.7; margin-bottom: 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { color: var(--ink-2); line-height: 1.7; margin-bottom: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--peach); text-decoration: underline; }
.legal__updated { color: var(--ink-2); font-size: 14px; margin-bottom: 40px; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px); align-items: center;
}
.two-col--flip .two-col__media { order: 2; }

.two-col__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r);
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.two-col__media img.img-in { opacity: 1; transform: scale(1); }
.two-col__video {
  display: block; margin-inline: auto;
  height: clamp(420px, 62vh, 620px); width: auto; max-width: 100%;
  aspect-ratio: 9 / 16; object-fit: cover;
  border-radius: var(--r); background: #000;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.two-col__copy h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.5vw, 48px); line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px; color: var(--ink);
}
.two-col__copy h2 em { font-style: italic; color: var(--peach-2); }
.two-col__copy p { color: var(--ink-2); font-size: 16px; margin-bottom: 16px; }

.feature-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 28px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px; color: var(--ink-2);
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--peach); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 7vw, 100px) 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(32px, 5vw, 54px); line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta-strip h2 em { font-style: italic; color: var(--peach); }
.cta-strip p { color: rgba(255,255,255,.75); max-width: 50ch; margin: 0 auto 28px; }
.cta-strip__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Compact nav — shift brand left, give burger breathing room */
  .nav {
    padding: 0 clamp(12px, 3vw, 20px);
    gap: 8px;
  }
  .nav__logo {
    width: min(400px, calc(100vw - 80px)); height: 160px;
    margin-block: -25px;
  }
  .nav.scrolled .nav__logo {
    width: min(320px, calc(100vw - 80px)); height: 128px;
    margin-block: -29px;
  }

  /* Mobile menu — full-screen takeover */
  .nav__links { display: none; }
  /* Remove backdrop-filter when open — it creates a containing block
     that traps fixed-position children within the 80px nav height */
  .nav.open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: visible;
  }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-evenly;
    position: fixed;
    inset: 0;
    background: var(--cream);
    padding: 90px 40px 48px;
    z-index: 999;
    overflow: hidden;
    animation: mobileMenuIn .35s cubic-bezier(.2,.7,.2,1);
  }
  @keyframes mobileMenuIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  /* Burger → X animation */
  .nav__burger span {
    transition: transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease, background .25s ease;
    transform-origin: center;
    background: #fff; /* white on dark hero by default */
  }
  .nav.scrolled .nav__burger span { background: var(--ink); }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* Staggered item entrance */
  .nav.open .nav__links > a,
  .nav.open .nav__dropdown-wrap {
    opacity: 0;
    transform: translateY(8px);
    animation: menuItemIn .4s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .nav.open .nav__links > a:nth-child(1),
  .nav.open .nav__dropdown-wrap:nth-child(1) { animation-delay: .05s; }
  .nav.open .nav__links > *:nth-child(2) { animation-delay: .1s; }
  .nav.open .nav__links > *:nth-child(3) { animation-delay: .15s; }
  .nav.open .nav__links > *:nth-child(4) { animation-delay: .2s; }
  @keyframes menuItemIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Dropdown — collapsed by default, expands on .open */
  .nav__dropdown-wrap { width: 100%; }
  .nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--peach);
    border-radius: 0;
    padding: 0;
    margin: 0 0 0 20px;
    background: transparent;
    min-width: auto;
    width: calc(100% - 20px);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease, margin .3s ease;
  }
  /* Defeat hover-triggered opening on mobile */
  .nav__dropdown-wrap:hover .nav__dropdown {
    max-height: 0; opacity: 0; pointer-events: none;
    padding: 0; margin: 0 0 0 20px;
  }
  /* Only show when explicitly opened via tap */
  .nav__dropdown-wrap.open .nav__dropdown,
  .nav__dropdown-wrap.open:hover .nav__dropdown {
    max-height: 300px;
    opacity: 1;
    padding: 4px 0 4px 14px;
    margin: 8px 0 8px 20px;
    pointer-events: auto;
  }
  .nav__dropdown li a {
    padding: 12px 16px;
    font-size: 15px;
  }

  /* Editorial nav items inside takeover */
  .nav__links > a,
  .nav__dropdown-trigger {
    padding: 16px 8px;
    width: 100%;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 7vw, 40px);
    letter-spacing: -.01em;
    color: var(--ink);
    border-radius: 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav__links > a:last-child,
  .nav__dropdown-wrap:last-child .nav__dropdown-trigger { border-bottom: none; }
  .nav__dropdown-trigger { display: flex; align-items: center; }
  .nav__dropdown-arrow { font-size: 14px; }
  .nav__dropdown li a {
    padding: 10px 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-bottom: none;
    color: var(--ink-2);
  }
  /* Keep tapped/selected menu items dark + bold (never white) */
  .nav.open .nav__links a:hover,
  .nav.open .nav__links a:focus,
  .nav.open .nav__links a:active,
  .nav.open .nav__links a.is-active,
  .nav.open .nav__dropdown-trigger:hover,
  .nav.open .nav__dropdown-trigger:focus,
  .nav.open .nav__dropdown-trigger:active,
  .nav.open .nav__dropdown-trigger.is-active,
  .nav.open .nav__dropdown-wrap:hover .nav__dropdown-trigger,
  .nav.open .nav__dropdown-wrap.open .nav__dropdown-trigger {
    color: var(--ink);
    font-weight: 700;
    background: transparent;
  }
  .nav.open .nav__dropdown li a:hover,
  .nav.open .nav__dropdown li a:focus,
  .nav.open .nav__dropdown li a:active {
    color: var(--ink);
    font-weight: 700;
    background: transparent;
  }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__nav { margin-left: 0; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--flip .two-col__media { order: 0; }
  .feature-list { grid-template-columns: 1fr; }
  .stay__cta-row { flex-direction: column; align-items: stretch; }

  /* Partner logos: 3x3 grid */
  .partners__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
    justify-items: center;
    align-items: center;
  }
  .partners__logo-wrap {
    max-width: none;
    width: 100%;
    justify-content: center;
  }
  .partners__logo-wrap img { height: 36px; }
  .partners__logo-wrap img[alt="Block & Drum"] { height: 44px; }
  .partners__logo-wrap img[alt="Tabla"] { height: 50px; }
  .partners__logo-wrap img[alt="Emory University"] { height: 32px; }
  .partners__logo-wrap img[alt="Terminus Commercial Real Estate Partners"] { height: 40px; }
  .partners__cortland .partners__logo-wrap img { height: 40px; }
}

@media (max-width: 600px) {
  .hero__content { width: 100%; }
  .hero__title { font-size: clamp(28px, 9.6vw, 80px); max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
