@charset "utf-8";
/* ==========================================================================
   Navigating North Florida — Gina Graham
   Design system. Hand-written, no frameworks.

   1.  Tokens
   2.  Reset & base
   3.  Layout primitives (wrap / section / split / rail)
   4.  Typography utilities (overline, display, prose, rules, ornament)
   5.  Buttons & links
   6.  Header, desktop nav, mobile overlay
   7.  Home hero (ambient video)
   8.  Page hero (interior pages)
   9.  Editorial trio, figures, galleries
   10. Reviews
   11. Video CTA + modal
   12. Forms (lead + newsletter)
   13. Affiliations
   14. Footer
   15. Reveal utilities + reduced motion
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */

:root {
  /* --- Brand colour, sampled from the gtg marks --------------------------- */
  --navy:        #10486f;   /* monogram navy — the brand blue */
  --navy-deep:   #0a3050;   /* deep ground for dark sections */
  --navy-night:  #072134;   /* near-black navy, footer + scrims */
  --ink:         #14314a;   /* body text on light */
  --ink-soft:    #5b7085;   /* secondary text, captions */
  --ink-faint:   #8a9aa8;   /* meta, disabled */

  --shell:       #faf7f2;   /* page ground — warm ivory, never pure white */
  --shell-warm:  #f2ebe1;   /* alternate band */
  --shell-deep:  #e7ddd0;   /* hairline-adjacent tint */
  --paper:       #fffdfa;   /* raised surfaces */

  --aqua:        #6ec6d9;   /* script-logo aqua — accents only, never fields */
  --aqua-deep:   #3d8ea3;   /* aqua that survives a light background */
  --aqua-mist:   #e4f2f6;

  --brass:       #c09a3e;   /* wordmark gold */
  --brass-soft:  #d8b868;   /* foil highlight, use on dark */
  --brass-deep:  #8a6a24;   /* brass that reads as text on ivory */

  --line:        rgba(20, 49, 74, 0.14);
  --line-strong: rgba(20, 49, 74, 0.28);
  --line-brass:  rgba(192, 154, 62, 0.55);
  --line-light:  rgba(250, 247, 242, 0.24);

  /* --- Type -------------------------------------------------------------- */
  --font-display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Jost", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-display: clamp(3.4rem, 12vw, 9.5rem);
  --fs-h1:      clamp(2.5rem, 6vw, 4.5rem);
  --fs-h2:      clamp(2rem, 4.3vw, 3.35rem);
  --fs-h3:      clamp(1.45rem, 2.4vw, 2.05rem);
  --fs-h4:      clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-lede:    clamp(1.08rem, 1.35vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-small:   0.9rem;
  --fs-overline: 0.72rem;

  --track-overline: 0.22em;
  --track-caps: 0.16em;

  /* --- Space ------------------------------------------------------------- */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6.5rem;

  --section-y:  clamp(4.5rem, 9vw, 9rem);
  --gutter:     clamp(1.25rem, 5vw, 3.5rem);

  --wrap:        1240px;
  --wrap-wide:   1520px;
  --wrap-narrow: 720px;

  --header-h: 88px;

  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
  --dur:  0.5s;

  --shadow-soft: 0 24px 60px -30px rgba(7, 33, 52, 0.45);
  --shadow-lift: 0 40px 90px -40px rgba(7, 33, 52, 0.6);
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }

img, video, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: var(--navy); text-decoration: none; }

button { font: inherit; color: inherit; }

hr { border: 0; height: 1px; background: var(--line); margin: var(--sp-6) 0; }

:focus-visible {
  outline: 2px solid var(--aqua-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--aqua); color: var(--navy-night); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--navy);
  color: var(--shell);
  padding: 0.75rem 1.25rem;
  font-size: var(--fs-overline);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   3. LAYOUT PRIMITIVES
   ========================================================================== */

/* .wrap — the standard centred measure. Modifiers change width only. */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide   { max-width: var(--wrap-wide); }
.wrap--narrow { max-width: var(--wrap-narrow); }

/* .section — vertical rhythm unit. Every band on every page is one. */
.section {
  position: relative;
  padding-block: var(--section-y);
}
.section--tight { padding-block: clamp(3rem, 5.5vw, 5rem); }
.section--flush-top    { padding-top: 0; }
.section--flush-bottom { padding-bottom: 0; }

/* Ground variants */
.section--shell { background: var(--shell-warm); }
.section--paper { background: var(--paper); }
.section--ink {
  background: var(--navy-deep);
  color: rgba(250, 247, 242, 0.82);
}
.section--ink h1, .section--ink h2, .section--ink h3,
.section--ink h4, .section--ink h5 { color: var(--shell); }
.section--ink a { color: var(--aqua); }
.section--ink .overline { color: var(--brass-soft); }
.section--ink .rule { background: var(--line-brass); }

/* .section--media — full-bleed photograph behind content.
   Put the <img> in .section__bg and the copy in a .wrap. */
.section--media {
  color: rgba(250, 247, 242, 0.9);
  isolation: isolate;
}
.section--media h1, .section--media h2, .section--media h3,
.section--media h4 { color: var(--shell); }
.section--media .overline { color: var(--brass-soft); }

.section__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Scrim keeps type legible over any photograph. */
.section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,33,52,0.78) 0%, rgba(7,33,52,0.62) 55%, rgba(10,48,80,0.8) 100%);
}
.section__bg--soft::after {
  background: linear-gradient(180deg, rgba(7,33,52,0.5) 0%, rgba(7,33,52,0.72) 100%);
}

/* .split — the workhorse asymmetric two-column. 7/5 by default.
   .split--reverse puts media on the right; .split--even is 1:1;
   .split--wide-media is 8/4 for hero-scale photography. */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 7fr 5fr; }
  .split--even       { grid-template-columns: 1fr 1fr; }
  .split--wide-media { grid-template-columns: 8fr 4fr; }
  .split--narrow-media { grid-template-columns: 5fr 7fr; }
  .split--reverse .split__media { order: 2; }
  .split--reverse .split__body  { order: 1; }
  .split--top { align-items: start; }
}
.split__body { max-width: 46ch; }
.split--even .split__body,
.split--narrow-media .split__body { max-width: 52ch; }

/* .split--offset — media bleeds past the container on its outer edge and the
   body overlaps it slightly. The editorial look; desktop only. */
@media (min-width: 1100px) {
  .split--offset .split__media { margin-left: calc(var(--gutter) * -1 - 2vw); }
  .split--offset.split--reverse .split__media {
    margin-left: 0;
    margin-right: calc(var(--gutter) * -1 - 2vw);
  }
  .split--offset .split__body { margin-left: -3rem; }
  .split--offset.split--reverse .split__body { margin-left: 0; margin-right: -3rem; }
}

/* .rail — horizontal scrolling strip for galleries. Never traps the page. */
.rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  padding-bottom: var(--sp-3);
}
.rail__track {
  display: flex;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  padding-inline: var(--gutter);
  width: max-content;
}
.rail__item {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 400px);
  scroll-snap-align: center;
}
.rail__item img {
  width: 100%;
  height: clamp(180px, 24vw, 320px);
  object-fit: cover;
}
.rail__item--tall img { height: clamp(230px, 30vw, 400px); }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); }

/* ==========================================================================
   4. TYPOGRAPHY UTILITIES
   ========================================================================== */

/* .overline — letterspaced small caps label. Sits above headings. */
.overline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 var(--sp-3);
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--brass-deep);
  line-height: 1.4;
}
.overline::before {
  content: "";
  flex: 0 0 auto;
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}
.overline--bare::before { display: none; }
.overline--center { justify-content: center; }

/* .display — the hero lockup scale. One per page, in the hero only. */
.display {
  font-size: var(--fs-display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.headline   { font-size: var(--fs-h2); }
.headline--lg { font-size: var(--fs-h1); }
.subhead {
  font-size: var(--fs-h3);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
}
.section--ink .subhead, .section--media .subhead { color: var(--aqua); }

/* .lede — the one larger paragraph directly under a heading. */
.lede {
  font-size: var(--fs-lede);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}
.section--ink .lede, .section--media .lede { color: rgba(250,247,242,0.9); }

/* .prose — body copy blocks; sets a comfortable measure. */
.prose { max-width: 62ch; }
.prose p + p { margin-top: 0; }
.prose > * + h3, .prose > * + h4 { margin-top: var(--sp-5); }

/* .rule — thin brass hairline used as a divider or under a heading. */
.rule {
  width: 4.5rem;
  height: 1px;
  border: 0;
  margin: var(--sp-4) 0;
  background: var(--brass);
  opacity: 0.8;
}
.rule--full { width: 100%; background: var(--line); }
.rule--center { margin-inline: auto; }

/* .ornament — the gtg monogram used as a small section mark. */
.ornament {
  width: 44px;
  height: 44px;
  margin: 0 0 var(--sp-4);
  opacity: 0.9;
}
.ornament--center { margin-inline: auto; }

.text-center { text-align: center; }
.text-center .overline { justify-content: center; }
.text-center .prose, .text-center .lede { margin-inline: auto; }

.stack > * + * { margin-top: var(--sp-4); }

/* ==========================================================================
   5. BUTTONS & LINKS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--navy);
  color: var(--shell);
  border-color: var(--navy);
}

.btn--solid {
  background: var(--navy);
  color: var(--shell);
}
.btn--solid:hover, .btn--solid:focus-visible {
  background: var(--brass-deep);
  border-color: var(--brass-deep);
  color: var(--shell);
}

/* .btn--light — for dark grounds (ink sections, media scrims, hero). */
.btn--light {
  border-color: rgba(250, 247, 242, 0.7);
  color: var(--shell);
}
.btn--light:hover, .btn--light:focus-visible {
  background: var(--shell);
  color: var(--navy);
  border-color: var(--shell);
}

.btn--brass { border-color: var(--brass); color: var(--brass-deep); }
.btn--brass:hover, .btn--brass:focus-visible {
  background: var(--brass); border-color: var(--brass); color: var(--navy-night);
}

.btn__arrow {
  display: block;
  width: 1.4rem; height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--dur) var(--ease);
}
.btn__arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .btn__arrow { width: 2rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

/* .link-quiet — inline text link with a brass underline on hover. */
.link-quiet {
  color: inherit;
  border-bottom: 1px solid var(--line-brass);
  padding-bottom: 1px;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-quiet:hover { border-bottom-color: var(--brass); color: var(--brass-deep); }
.section--ink .link-quiet:hover, .section--media .link-quiet:hover { color: var(--brass-soft); }

/* ==========================================================================
   6. HEADER / NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

/* .site-header--overlay — home page only: sits on the hero until scrolled. */
.site-header--overlay {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--overlay .nav__link,
.site-header--overlay .nav-toggle { color: var(--shell); }
.site-header--overlay .header__logo img { filter: drop-shadow(0 2px 12px rgba(7,33,52,0.55)); }
.site-header--overlay.is-stuck {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom-color: var(--line);
}
.site-header--overlay.is-stuck .nav__link,
.site-header--overlay.is-stuck .nav-toggle { color: var(--ink); }
.site-header--overlay.is-stuck .header__logo img { filter: none; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.header__logo { display: block; flex: 0 0 auto; line-height: 0; }
.header__logo img { width: 230px; height: auto; }
.header__logo--h1 { margin: 0; font-size: 0; }

@media (max-width: 640px) {
  .header__logo img { width: 180px; }
  :root { --header-h: 72px; }
}

.nav { display: none; }
@media (min-width: 1080px) { .nav { display: block; } }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.7vw, 1.75rem);
  list-style: none;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.4rem 0;
  font-size: var(--fs-overline);
  font-weight: 400;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brass-deep); }
.site-header--overlay .nav__link[aria-current="page"] { color: var(--brass-soft); }
.site-header--overlay.is-stuck .nav__link[aria-current="page"] { color: var(--brass-deep); }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}
@media (min-width: 1080px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle span:nth-child(1) { width: 100%; }
.nav-toggle span:nth-child(2) { width: 70%; margin-left: auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(10deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { width: 100%; transform: translateY(-3.5px) rotate(-10deg); }

/* Full-screen overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  background: var(--navy-deep);
  color: var(--shell);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transform: none; }

.nav-overlay__close {
  position: absolute;
  top: max(1rem, calc((var(--header-h) - 44px) / 2));
  right: var(--gutter);
  width: 44px; height: 44px;
  border: 0;
  background: none;
  color: var(--shell);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.nav-overlay__list { list-style: none; }
.nav-overlay__list li + li { margin-top: 0.35rem; }
.nav-overlay__link {
  display: inline-block;
  padding: 0.28rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--shell);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-overlay__link:hover,
.nav-overlay__link:focus-visible { color: var(--aqua); transform: translateX(6px); }
.nav-overlay__link[aria-current="page"] { color: var(--brass-soft); font-style: italic; }

.nav-overlay__foot {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-light);
  font-size: var(--fs-small);
  color: rgba(250, 247, 242, 0.7);
}
.nav-overlay__foot a { color: var(--aqua); }

/* ==========================================================================
   7. HOME HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--navy-night);
  color: var(--shell);
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video {
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__video.is-playing { opacity: 1; }

/* Invisible marker at the top of the page; the overlay header flips to its
   solid state once this scrolls out of view. */
.header-sentinel {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,33,52,0.62) 0%, rgba(7,33,52,0.18) 38%, rgba(7,33,52,0.86) 100%),
    linear-gradient(90deg, rgba(7,33,52,0.55) 0%, rgba(7,33,52,0) 62%);
}

.hero__inner {
  width: 100%;
  padding-top: calc(var(--header-h) + clamp(4rem, 14vh, 9rem));
  padding-bottom: clamp(2.5rem, 7vh, 5rem);
}

/* The three-part display lockup: script-ish italic / caps / large roman. */
.hero__lockup { margin: 0; color: var(--shell); }
.hero__line-1 {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.3rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-left: 0.06em;
}
.hero__line-2 {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.78rem, 1.6vw, 1.05rem);
  letter-spacing: 0.52em;
  text-transform: uppercase;
  margin: clamp(0.6rem, 1.4vw, 1.1rem) 0 clamp(0.2rem, 0.8vw, 0.6rem);
  padding-left: 0.3em;
  color: rgba(250, 247, 242, 0.92);
}
.hero__line-3 {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 0.8;
  letter-spacing: -0.035em;
}

.hero__cta { margin-top: clamp(1.75rem, 4vw, 2.75rem); }

/* Neighbourhood links across the foot of the hero. */
.hero__places {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(1rem, 3.5vw, 3rem);
  list-style: none;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-light);
}
.hero__places a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  color: rgba(250, 247, 242, 0.86);
  transition: color var(--dur) var(--ease);
}
.hero__places a:hover, .hero__places a:focus-visible { color: var(--aqua); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 7vh, 5rem);
  z-index: 1;
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-overline);
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.72);
}
@media (min-width: 1080px) { .hero__scroll { display: flex; } }
.hero__scroll::after {
  content: "";
  width: 1px; height: 3.5rem;
  background: linear-gradient(180deg, rgba(250,247,242,0.7), rgba(250,247,242,0));
}

/* ==========================================================================
   8. PAGE HERO (interior pages)
   ========================================================================== */

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 46vh, 520px);
  background: var(--navy-deep);
  color: var(--shell);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,33,52,0.62) 0%, rgba(7,33,52,0.3) 45%, rgba(7,33,52,0.85) 100%);
}
.page-hero__inner {
  width: 100%;
  padding-block: clamp(3rem, 8vh, 5.5rem);
}
.page-hero__title {
  font-size: var(--fs-h1);
  color: var(--shell);
  max-width: 18ch;
}
.page-hero .overline { color: var(--brass-soft); }
.page-hero__lede {
  margin-top: var(--sp-4);
  max-width: 52ch;
  font-size: var(--fs-lede);
  font-weight: 300;
  color: rgba(250, 247, 242, 0.88);
}
/* Plain variant — no photograph, ivory ground, for text-first pages. */
.page-hero--plain {
  min-height: 0;
  background: var(--shell-warm);
  color: var(--ink);
}
.page-hero--plain::before { display: none; }
.page-hero--plain .page-hero__title { color: var(--navy); }
.page-hero--plain .overline { color: var(--brass-deep); }
.page-hero--plain .page-hero__lede { color: var(--ink); }

/* Breadcrumb */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none;
  font-size: var(--fs-overline);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }
.page-hero .crumbs { color: rgba(250, 247, 242, 0.7); }
.page-hero .crumbs a { color: inherit; }

/* ==========================================================================
   9. FIGURES, EDITORIAL TRIO, GALLERIES
   ========================================================================== */

/* .figure — a framed photograph with an optional brass offset frame. */
.figure { position: relative; margin: 0; }
.figure img { width: 100%; height: auto; }
.figure--framed::before {
  content: "";
  position: absolute;
  inset: auto -1.25rem -1.25rem auto;
  width: 55%; height: 60%;
  border: 1px solid var(--line-brass);
  z-index: -1;
}
.figure--tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.figure--wide img { aspect-ratio: 16 / 10; object-fit: cover; }
.figure--square img { aspect-ratio: 1 / 1; object-fit: cover; }
.figure__caption {
  margin-top: var(--sp-2);
  font-size: var(--fs-small);
  color: var(--ink-soft);
  font-style: italic;
}

/* .editorial-grid — a set of photo-led entries. Deliberately staggered so it
   never reads as a row of identical cards. Use 2 or 3 children. */
.editorial-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 820px) {
  .editorial-grid--3 { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .editorial-grid--2 { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .editorial-grid--3 > :nth-child(2) { margin-top: clamp(2rem, 5vw, 4.5rem); }
  .editorial-grid--3 > :nth-child(3) { margin-top: clamp(1rem, 2.5vw, 2rem); }
  .editorial-grid--2 > :nth-child(2) { margin-top: clamp(2rem, 5vw, 4rem); }
}

.editorial-item { display: block; }
.editorial-item__media { overflow: hidden; margin-bottom: var(--sp-4); }
.editorial-item__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.editorial-item:hover .editorial-item__media img,
.editorial-item:focus-within .editorial-item__media img { transform: scale(1.04); }
.editorial-item__title {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-2);
}
.editorial-item__title a { color: inherit; }
.editorial-item:hover .editorial-item__title,
.editorial-item:focus-within .editorial-item__title { color: var(--brass-deep); }
.editorial-item__body { color: var(--ink-soft); font-size: var(--fs-small); line-height: 1.8; }
.editorial-item__more {
  display: inline-block;
  margin-top: var(--sp-3);
  font-size: var(--fs-overline);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--brass-deep);
  border-bottom: 1px solid var(--line-brass);
  padding-bottom: 2px;
}

/* .mosaic — asymmetric image collage for portfolio / project pages. */
.mosaic { display: grid; gap: clamp(0.75rem, 1.5vw, 1.25rem); }
@media (min-width: 780px) {
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .mosaic > * { grid-column: span 2; }
  .mosaic__wide  { grid-column: span 4; }
  .mosaic__full  { grid-column: span 6; }
  .mosaic__half  { grid-column: span 3; }
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   10. REVIEWS
   ========================================================================== */

/* .reviews — a wall of verbatim Google reviews. CSS columns give an
   editorial, uneven rhythm instead of a card grid. */
.reviews { columns: 1; column-gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 760px)  { .reviews { columns: 2; } }
@media (min-width: 1180px) { .reviews { columns: 3; } }

.review {
  break-inside: avoid;
  margin: 0 0 clamp(2rem, 3.5vw, 3rem);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line-brass);
}
.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(250, 247, 242, 0.9);
  margin: 0 0 var(--sp-3);
}
.section--shell .review__quote,
.section--paper .review__quote { color: var(--ink); }
.review__attrib { display: flex; flex-direction: column; gap: 0.15rem; }
.review__name {
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--brass-soft);
}
.section--shell .review__name, .section--paper .review__name { color: var(--brass-deep); }
.review__meta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(250, 247, 242, 0.55);
}
.section--shell .review__meta, .section--paper .review__meta { color: var(--ink-faint); }
.review__stars { color: var(--brass-soft); letter-spacing: 0.18em; font-size: 0.8rem; }

/* Single large pull-quote, for pages that want one testimonial only. */
.pullquote {
  max-width: 44ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--navy);
}
.section--ink .pullquote, .section--media .pullquote { color: var(--shell); }
.pullquote footer {
  margin-top: var(--sp-4);
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-style: normal;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--brass-deep);
}
.section--ink .pullquote footer, .section--media .pullquote footer { color: var(--brass-soft); }

/* ==========================================================================
   11. VIDEO CTA + MODAL
   ========================================================================== */

.video-cta {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
}
.video-cta img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter var(--dur) var(--ease);
}
.video-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,33,52,0.05) 40%, rgba(7,33,52,0.72) 100%);
}
.video-cta:hover img, .video-cta:focus-visible img { transform: scale(1.03); }

.video-cta__label {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.25rem);
  right: clamp(1.25rem, 3vw, 2.25rem);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--shell);
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  line-height: 1.5;
}
.video-cta__play {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border: 1px solid rgba(250, 247, 242, 0.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.video-cta__play::before {
  content: "";
  width: 0; height: 0;
  margin-left: 3px;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.video-cta:hover .video-cta__play,
.video-cta:focus-visible .video-cta__play { background: var(--shell); color: var(--navy); }

.modal {
  width: min(1080px, 92vw);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--shell);
  overflow: visible;
}
.modal::backdrop { background: rgba(7, 33, 52, 0.92); }
.modal[open] { animation: modal-in 0.4s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-lift);
}
.modal__close {
  position: absolute;
  top: -3rem; right: 0;
  width: 44px; height: 44px;
  border: 0;
  background: none;
  color: var(--shell);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.modal__close:hover { color: var(--aqua); }

/* ==========================================================================
   12. FORMS
   ========================================================================== */

.form { max-width: 640px; }
.form--wide { max-width: 760px; }
.form--center { margin-inline: auto; }

.form__note {
  margin-bottom: var(--sp-4);
  font-size: var(--fs-small);
  color: var(--ink-soft);
}
.section--ink .form__note, .section--media .form__note { color: rgba(250,247,242,0.82); }

.form__grid { display: grid; gap: var(--sp-3); }
@media (min-width: 620px) {
  .form__grid--2 { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field > label {
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section--ink .field > label,
.section--media .field > label { color: rgba(250, 247, 242, 0.75); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.15rem;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--dur) var(--ease);
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field select {
  appearance: none;
  padding-right: 1.75rem;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 0.65rem center, right 0.35rem center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--aqua-deep);
  outline-offset: 4px;
}

.section--ink .field input,
.section--ink .field select,
.section--ink .field textarea,
.section--media .field input,
.section--media .field select,
.section--media .field textarea {
  color: var(--shell);
  border-bottom-color: rgba(250, 247, 242, 0.4);
}
.section--ink .field input::placeholder,
.section--media .field input::placeholder { color: rgba(250, 247, 242, 0.5); }
.section--ink .field input:focus,
.section--media .field input:focus { border-bottom-color: var(--brass-soft); }
.section--ink .field select option,
.section--media .field select option { color: var(--ink); }

/* Honeypot — visually and programmatically out of the way, never display:none
   (some bots skip hidden fields, and screen readers get aria-hidden anyway). */
.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.form__status {
  margin: 0;
  min-height: 1.5em;
  font-size: var(--fs-small);
  line-height: 1.5;
}
.form__status:empty { min-height: 0; }
.form__status[data-state="ok"]   { color: var(--aqua-deep); }
.form__status[data-state="error"]{ color: #b1442f; }
.section--ink .form__status[data-state="ok"],
.section--media .form__status[data-state="ok"] { color: var(--aqua); }
.section--ink .form__status[data-state="error"],
.section--media .form__status[data-state="error"] { color: #f0a493; }

.form.is-sending .btn { opacity: 0.6; pointer-events: none; }

/* Newsletter band */
.newsletter { position: relative; isolation: isolate; }
.newsletter .form { max-width: 620px; }

/* ==========================================================================
   13. AFFILIATIONS
   ========================================================================== */

.affiliations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line);
}
.affiliations img {
  height: clamp(46px, 6vw, 66px);
  width: auto;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.affiliations img:hover { filter: none; opacity: 1; }

/* Social icon row */
.social-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  list-style: none;
  margin-top: var(--sp-5);
}
.social-row a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--navy);
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.social-row a:hover, .social-row a:focus-visible {
  background: var(--navy); border-color: var(--navy); color: var(--shell);
}
.social-row svg { width: 17px; height: 17px; fill: currentColor; }
.section--ink .social-row a, .site-footer .social-row a {
  border-color: var(--line-light);
  color: var(--shell);
}
.section--ink .social-row a:hover, .site-footer .social-row a:hover,
.section--ink .social-row a:focus-visible, .site-footer .social-row a:focus-visible {
  background: var(--brass); border-color: var(--brass); color: var(--navy-night);
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--navy-night);
  color: rgba(250, 247, 242, 0.72);
  font-size: var(--fs-small);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}
.site-footer h2, .site-footer h3 { color: var(--shell); }
.site-footer a { color: rgba(250, 247, 242, 0.82); transition: color var(--dur) var(--ease); }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--aqua); }

.footer__top {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 860px) {
  .footer__top { grid-template-columns: 1.4fr 1fr 1.2fr; }
}

.footer__logo { width: 190px; height: auto; }
.footer__monogram { width: 56px; height: 56px; margin-bottom: var(--sp-4); }

.footer__heading {
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-weight: 500;
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: var(--sp-3);
}

.footer__menu { list-style: none; }
.footer__menu li + li { margin-top: 0.5rem; }
.footer__menu a {
  font-size: var(--fs-overline);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}

.footer__contact { list-style: none; }
.footer__contact li + li { margin-top: 0.55rem; }
.footer__contact .footer__name {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--shell);
  line-height: 1.2;
}

.footer__legal {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.79rem;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.5);
  max-width: 95ch;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
  flex-wrap: wrap;
}
.footer__badges img { height: 44px; width: auto; opacity: 0.75; }
.footer__badges img.footer__badge--resa { background: var(--shell); padding: 4px 6px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer__top-link {
  font-size: var(--fs-overline);
  letter-spacing: var(--track-overline);
  text-transform: uppercase;
}

/* ==========================================================================
   15. REVEAL UTILITIES + REDUCED MOTION
   ========================================================================== */

/* Nothing hides unless JS is running — no-JS visitors see everything. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="left"]  { transform: translateX(-26px); }
.js [data-reveal="right"] { transform: translateX(26px); }
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__video { display: none; }
  .editorial-item__media img, .video-cta img { transition: none; }
}

/* Print — keep the contact details usable on paper. */
@media print {
  .site-header, .nav-overlay, .hero__media, .modal, .video-cta, .rail { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
}
