/* =========================================================================
   Pinnacle Hills Portraits — Website
   Brand: forest / cream / parchment / ink · Cormorant Garamond + Inter Tight
   ========================================================================= */

:root {
  --forest:        #2F3A2A;
  --forest-soft:   #3D4A37;
  --forest-deep:   #232C1F;
  --cream:         #FAF5EB;
  --parchment:     #EDE6D8;
  --parchment-deep:#E4DBC8;
  --ink:           #1C1C1A;
  --rule:          rgba(47, 58, 42, 0.22);
  --rule-strong:   rgba(47, 58, 42, 0.5);
  --rule-cream:    rgba(250, 245, 235, 0.32);

  /* Default type system — overridden per Tweak */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter Tight', -apple-system, sans-serif;

  /* Layout */
  --nav-h:    84px;
  --page-max: 1320px;
  --page-pad: 2.5rem;
  --section-y: 7rem;

  /* Density */
  --density-y: 7rem;
}

[data-density="sparse"] { --density-y: 9.5rem; }
[data-density="rich"]   { --density-y: 4.5rem; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--forest);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: default; }
a { color: inherit; text-decoration: none; }

/* =========================================================================
   TYPE UTILITIES
   ========================================================================= */
.serif  { font-family: var(--serif); font-weight: 300; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
}
.eyebrow-cream { color: var(--cream); }
.eyebrow-faded { opacity: 0.6; }

.flourish-line {
  display: inline-block;
  width: 36px;
  height: 0.5px;
  background: currentColor;
  opacity: 0.5;
  vertical-align: middle;
}
.flourish-line-long { width: 60px; }

/* Wordmark — the lockup used on nav, footer, splash overlays */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--forest);
}
.wordmark-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.015em;
}
.wordmark-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.wordmark-rule .flourish-line { width: 22px; opacity: 0.45; }
.wordmark-rule span {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =========================================================================
   LAYOUT PRIMITIVES
   ========================================================================= */
.page-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section {
  padding: var(--density-y) 0;
}
.section-cream     { background: var(--cream); }
.section-parchment { background: var(--parchment); }
.section-forest    { background: var(--forest); color: var(--cream); }
.section-forest .eyebrow { color: var(--cream); opacity: 0.7; }
.section-forest hr { border-color: var(--rule-cream); }
.section-forest .flourish-line { background: var(--cream); opacity: 0.5; }

.section-divider {
  border: none;
  border-top: 0.5px solid var(--rule);
  margin: 0;
}

/* Section header common */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.75;
}
.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.section-sub {
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.65;
  margin-top: 1.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  text-wrap: pretty;
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 0.5px solid var(--rule);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.nav.nav-over-hero {
  background: transparent;
  border-bottom-color: transparent;
}
.nav.nav-over-hero[data-tone="dark"] { color: var(--cream); }
.nav.nav-over-hero[data-tone="dark"] .wordmark,
.nav.nav-over-hero[data-tone="dark"] .nav-link { color: var(--cream); }
.nav.nav-over-hero[data-tone="dark"] .flourish-line { background: var(--cream); }
.nav.nav-over-hero[data-tone="dark"] .nav-hamburger-line { background: var(--cream); }

.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 1.25rem var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

/* Variant: centered wordmark */
.nav[data-variant="centered"] .nav-left,
.nav[data-variant="centered"] .nav-right {
  display: flex;
  gap: 2.5rem;
}
.nav[data-variant="centered"] .nav-left { justify-content: flex-end; }
.nav[data-variant="centered"] .nav-right { justify-content: flex-start; }

/* Variant: left wordmark + right links */
.nav[data-variant="leftmark"] .nav-inner {
  grid-template-columns: auto 1fr auto;
}
.nav[data-variant="leftmark"] .nav-left { display: flex; justify-content: flex-start; }
.nav[data-variant="leftmark"] .nav-center { display: none; }
.nav[data-variant="leftmark"] .nav-right {
  display: flex;
  gap: 2.25rem;
  justify-content: flex-end;
}

/* Variant: minimal (wordmark left, hamburger right) */
.nav[data-variant="minimal"] .nav-inner {
  grid-template-columns: auto 1fr auto;
}
.nav[data-variant="minimal"] .nav-left { display: flex; }
.nav[data-variant="minimal"] .nav-center,
.nav[data-variant="minimal"] .nav-right-links { display: none; }
.nav[data-variant="minimal"] .nav-right { display: flex; justify-content: flex-end; }

.nav[data-variant="thin"] .nav-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.nav[data-variant="thin"] .wordmark-name { font-size: 20px; }
.nav[data-variant="thin"] .wordmark-rule { margin-top: 4px; }

.nav-link {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.8;
  transition: opacity 0.25s ease;
  cursor: default;
  position: relative;
  padding: 4px 0;
}
.nav-link:hover { opacity: 1; }
.nav-link.is-active { opacity: 1; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 6px;
  height: 1px;
  background: currentColor;
}

.nav-hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
}
.nav-hamburger-line {
  width: 22px;
  height: 0.5px;
  background: var(--forest);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  border: 0.5px solid currentColor;
  padding: 0.65rem 1.1rem;
  background: transparent;
  color: inherit;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--forest); color: var(--cream); }
.nav.nav-over-hero[data-tone="dark"] .nav-cta:hover {
  background: var(--cream); color: var(--forest);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 2rem var(--page-pad);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-drawer-close {
  position: absolute;
  right: 0;
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 8px 0;
}
.nav-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
}
.nav-drawer-link {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--forest);
  line-height: 1;
  text-align: center;
}
.nav-drawer-link.is-active { font-style: italic; }
.nav-drawer-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.6;
}

/* =========================================================================
   HERO VARIATIONS
   ========================================================================= */
.hero {
  position: relative;
  width: 100%;
}
.hero-full {
  height: 100dvh;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}
.hero-full-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-full::after {
  /* subtle vignette so wordmark reads */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 28, 26, 0.35) 0%,
    rgba(28, 28, 26, 0.15) 30%,
    rgba(28, 28, 26, 0.1) 60%,
    rgba(28, 28, 26, 0.55) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 6rem 2rem;
  color: var(--cream);
}
.hero-wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(60px, 9vw, 128px);
  letter-spacing: 0.015em;
  line-height: 0.95;
  text-wrap: balance;
}
.hero-wordmark-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 1.5rem;
}
.hero-wordmark-rule .flourish-line { background: var(--cream); width: 64px; opacity: 0.6; }
.hero-wordmark-rule span {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  margin-top: 2.75rem;
  font-weight: 300;
  text-wrap: balance;
  max-width: 640px;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  z-index: 2;
}
.hero-scroll-line {
  width: 0.5px;
  height: 48px;
  background: var(--cream);
  opacity: 0.6;
  animation: heroScroll 2.4s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50%      { transform: scaleY(0.4); transform-origin: top; opacity: 0.2; }
}
.hero-meta {
  position: absolute;
  top: 6.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  z-index: 2;
}

/* Variant: editorial — magazine-cover layout. Photo full-bleed; wordmark sits
   centered in the upper portion of the white field, tagline at the bottom.
   Designed for bright photos with subjects positioned in the lower portion
   (or with significant negative space at top). */
.hero-editorial {
  background: #fff;
  height: 100dvh;
  min-height: 760px;
  max-height: 1100px;
  position: relative;
  overflow: hidden;
}
.hero-editorial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-editorial::before {
  /* Soft dark wash — light at top for nav legibility, deeper at bottom for the wordmark */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(28, 28, 26, 0.28) 0%,
      rgba(28, 28, 26, 0.10) 18%,
      rgba(28, 28, 26, 0.0) 40%,
      rgba(28, 28, 26, 0.0) 55%,
      rgba(28, 28, 26, 0.30) 80%,
      rgba(28, 28, 26, 0.55) 100%);
}
.hero-editorial-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 6rem var(--page-pad) 7rem;
  text-align: center;
  color: var(--cream);
}
.hero-editorial-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}
.hero-editorial-eyebrow .flourish-line {
  background: var(--cream);
  width: 42px;
  opacity: 0.6;
}
.hero-editorial-wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--cream);
  text-wrap: balance;
}
.hero-editorial-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 1.5rem;
}
.hero-editorial-rule .flourish-line {
  background: var(--cream);
  width: 64px;
  opacity: 0.6;
}
.hero-editorial-rule span {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
}
.hero-editorial-tagline {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--cream);
  text-wrap: balance;
  max-width: 32ch;
}
.hero-editorial-meta {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  font-weight: 500;
  pointer-events: none;
}
.hero-editorial-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  font-weight: 500;
}
.hero-editorial-scroll-line {
  width: 0.5px;
  height: 36px;
  background: var(--cream);
  opacity: 0.55;
  animation: heroScroll 2.4s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-editorial { height: 100dvh; min-height: unset; }
  .hero-editorial-img {
    position: absolute;
    height: 100%;
    object-position: center;
  }
  .hero-editorial-content,
  .hero-editorial-meta,
  .hero-editorial-scroll { display: none; }
}

/* Variant: carousel — same shell as full, just multiple stacked images that crossfade */
.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-carousel-img.is-active { opacity: 1; }
.hero-carousel-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250, 245, 235, 0.4);
  transition: background 0.3s, transform 0.3s;
}
.hero-carousel-dot.is-active { background: var(--cream); transform: scale(1.5); }

/* Variant: split */
.hero-split {
  height: 100dvh;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--cream);
}
.hero-split-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}
.hero-split-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(2rem, 5vw, 5rem);
  background: var(--cream);
  position: relative;
}
.hero-split-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.75;
  margin-bottom: 2rem;
}
.hero-split-head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 1;
  color: var(--forest);
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.hero-split-body {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.7;
  margin-top: 2.25rem;
  max-width: 480px;
  color: var(--forest);
  text-wrap: pretty;
}
.hero-split-cta {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--forest);
  padding: 0 0 0.6rem 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  align-self: flex-start;
}
.hero-split-cta .arrow {
  transition: transform 0.35s ease;
}
.hero-split-cta:hover .arrow {
  transform: translateX(6px);
}

/* Variant: mosaic */
.hero-mosaic {
  background: var(--cream);
  padding: 9rem var(--page-pad) 5rem;
}
.hero-mosaic-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 18px;
}
.hero-mosaic-tile {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
}
.hero-mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-mosaic-tile:hover img { transform: scale(1.04); }
.hero-mosaic-tile.tile-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background: var(--cream);
}
.hero-mosaic-tile.tile-text .hero-mosaic-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  color: var(--forest);
}
.hero-mosaic-tile.tile-text .hero-mosaic-sub {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--forest);
}
/* Tile placement */
.hero-mosaic-tile.t1 { grid-column: span 5; grid-row: span 4; }
.hero-mosaic-tile.t2 { grid-column: span 4; grid-row: span 5; }
.hero-mosaic-tile.t3 { grid-column: span 3; grid-row: span 3; }
.hero-mosaic-tile.t4 { grid-column: span 3; grid-row: span 2; }
.hero-mosaic-tile.t5 { grid-column: span 4; grid-row: span 3; }
.hero-mosaic-tile.t6 { grid-column: span 5; grid-row: span 4; }

/* Variant: matted (photo with margins on cream) */
.hero-matted {
  background: var(--cream);
  padding: 8rem var(--page-pad) 4rem;
}
.hero-matted-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.hero-matted-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.65;
}
.hero-matted-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--parchment);
}
.hero-matted-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-matted-caption {
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-matted-head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--forest);
  text-wrap: balance;
  max-width: 16ch;
}
.hero-matted-side {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--forest);
  max-width: 380px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; height: auto; }
  .hero-split-img-wrap { height: 60vh; }
  .hero-split-text { padding: 4rem 1.5rem; }
  .hero-mosaic-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
  .hero-mosaic-tile.t1 { grid-column: span 6; grid-row: span 4; }
  .hero-mosaic-tile.t2 { grid-column: span 6; grid-row: span 4; }
  .hero-mosaic-tile.t3 { grid-column: span 3; grid-row: span 3; }
  .hero-mosaic-tile.t4 { grid-column: span 3; grid-row: span 3; }
  .hero-mosaic-tile.t5 { grid-column: span 3; grid-row: span 3; }
  .hero-mosaic-tile.t6 { grid-column: span 6; grid-row: span 4; }
}

/* =========================================================================
   HOMEPAGE SECTIONS
   ========================================================================= */

/* Story strip */
.story {
  text-align: center;
}
.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  max-width: 920px;
  margin: 0 auto;
  color: var(--forest);
  text-wrap: balance;
}
.story-attrib {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.story-attrib .flourish-line { background: var(--forest); }
.story-attrib span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.7;
}

/* Featured work / categories */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 4rem;
}
.feature-tile {
  position: relative;
  cursor: default;
  overflow: hidden;
  background: var(--parchment);
}
.feature-tile-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.feature-tile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.3s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.feature-tile:hover img { transform: scale(1.04); }
.feature-tile-caption {
  padding: 1.5rem 0.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.feature-tile-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--forest);
  line-height: 1;
}
.feature-tile-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s;
}
.feature-tile:hover .feature-tile-link { opacity: 1; }
.feature-tile-link .arrow { transition: transform 0.35s ease; }
.feature-tile:hover .feature-tile-link .arrow { transform: translateX(4px); }

@media (max-width: 800px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Process: numbered stations */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.process-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--forest);
  opacity: 0.55;
  margin-bottom: 0.5rem;
}
.process-step {
  border-top: 0.5px solid var(--rule);
  padding-top: 1.75rem;
}
.process-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--forest);
}
.process-body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--forest);
  opacity: 0.88;
  max-width: 44ch;
}
@media (max-width: 800px) {
  .process { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Inline forest CTA strip */
.cta-strip {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem var(--page-pad);
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  text-wrap: balance;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-strip p {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 3rem;
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid currentColor;
  padding: 0 0 0.6rem 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
}
.btn-line .arrow { transition: transform 0.35s ease; }
.btn-line:hover .arrow { transform: translateX(6px); }

/* Instagram strip */
.ig-strip {
  background: var(--cream);
  padding: 5rem 0 var(--density-y);
}
.ig-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 var(--page-pad);
  max-width: var(--page-max);
  margin: 0 auto 2rem;
}
.ig-strip-h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--forest);
}
.ig-strip-handle {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
  font-weight: 500;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-grid div {
  aspect-ratio: 1;
  background: var(--parchment);
  overflow: hidden;
}
.ig-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 1.2s ease;
}
.ig-grid div:hover img { opacity: 0.85; transform: scale(1.04); }

@media (max-width: 800px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================================
   PORTFOLIO
   ========================================================================= */
.portfolio-hero {
  padding: 9rem var(--page-pad) 3rem;
  text-align: center;
  background: var(--cream);
}
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--rule);
}
.portfolio-tab {
  background: transparent;
  border: 0;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.55;
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 0.3s;
}
.portfolio-tab:hover { opacity: 0.85; }
.portfolio-tab.is-active { opacity: 1; }
.portfolio-tab.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5px;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--forest);
}

.portfolio-grid {
  column-count: 3;
  column-gap: 18px;
  padding: 3rem var(--page-pad) var(--density-y);
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--cream);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--parchment);
  cursor: zoom-in;
  break-inside: avoid;
  margin-bottom: 18px;
  display: block;
  width: 100%;
}
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.4s;
}
.portfolio-item:hover img { transform: scale(1.02); }
.portfolio-item-cap { display: none; }

/* Masonry preserves each photo's natural aspect ratio — no cropping. */
.portfolio-item[class*="span-"] { aspect-ratio: auto; }

@media (max-width: 1100px) {
  .portfolio-grid { column-count: 2; column-gap: 12px; }
  .portfolio-item { margin-bottom: 12px; }
}
@media (max-width: 620px) {
  .portfolio-grid { column-count: 1; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.96);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: calc(100vw - 8rem);
  max-height: calc(100vh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
@media (max-width: 700px) {
  .lightbox { padding: 3rem 1rem; }
  .lightbox-img { max-width: calc(100vw - 2rem); max-height: calc(100vh - 6rem); }
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.75;
  transition: opacity 0.25s;
  padding: 1rem;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-hero {
  padding: 9rem var(--page-pad) var(--density-y);
  background: var(--cream);
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-hero-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--parchment);
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-head {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.02;
  color: var(--forest);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.about-hero-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: var(--forest);
  max-width: 52ch;
}
.about-hero-body p + p { margin-top: 1.25rem; }

@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.partners {
  background: var(--parchment);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}
.partner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.partner-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}
.partner-img img { width: 100%; height: 100%; object-fit: cover; }
.partner-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  color: var(--forest);
}
.partner-role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
  margin-top: 0.5rem;
  font-weight: 500;
}
.partner-bio {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest);
  margin-top: 0.75rem;
}
@media (max-width: 800px) {
  .partners-grid { grid-template-columns: 1fr; }
}

/* Values strip */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1080px;
  margin: 3rem auto 0;
}
.value {
  text-align: center;
  border-top: 0.5px solid var(--rule);
  padding-top: 2rem;
}
.value-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
  color: var(--forest);
  margin-bottom: 1rem;
}
.value-body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest);
  opacity: 0.85;
  max-width: 32ch;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .values { grid-template-columns: 1fr; }
}

/* =========================================================================
   INVESTMENT
   ========================================================================= */
.invest-hero {
  padding: 9rem var(--page-pad) 4rem;
  background: var(--cream);
  text-align: center;
}
.invest-intro {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.7;
  max-width: 640px;
  margin: 2rem auto 0;
  color: var(--forest);
  text-wrap: pretty;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 4rem auto 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.tier {
  padding: 3rem 2.5rem;
  border-right: 0.5px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: 0; }
.tier.is-featured { background: var(--parchment); }
.tier-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.65;
  font-weight: 500;
  margin-bottom: 1rem;
}
.tier-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: var(--forest);
}
.tier-price {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.tier-price small {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 0.4rem;
}
.tier-divider {
  border: none;
  border-top: 0.5px solid var(--rule);
  margin: 2rem 0;
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tier-list li {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--forest);
  padding-left: 1.25rem;
  position: relative;
}
.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 0.5px;
  background: var(--forest);
  opacity: 0.5;
}
.tier-cta {
  margin-top: auto;
  padding-top: 2rem;
}
.tier-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.6;
}
@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: 0; border-bottom: 0.5px solid var(--rule); }
  .tier:last-child { border-bottom: 0; }
}

.addons {
  max-width: 800px;
  margin: 0 auto;
}
.addon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--rule);
}
.addon-row:last-child { border-bottom: 0; }
.addon-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
}
.addon-name small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 0.3rem;
  font-weight: 400;
  font-style: italic;
}
.addon-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
}

.invest-faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-row {
  border-bottom: 0.5px solid var(--rule);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--forest);
  font-weight: 400;
}
.faq-q-mark {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.3s ease;
  opacity: 0.7;
}
.faq-row.is-open .faq-q-mark { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.88;
}
.faq-row.is-open .faq-a {
  max-height: 400px;
  padding: 0 0 1.75rem 0;
}

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-hero {
  padding: 9rem var(--page-pad) var(--density-y);
  background: var(--cream);
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-intro h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  color: var(--forest);
  margin-bottom: 2rem;
  text-wrap: balance;
}
.contact-intro p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 44ch;
}
.contact-meta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-meta-row {
  padding: 1rem 0;
  border-top: 0.5px solid var(--rule);
}
.contact-meta-row:last-child { border-bottom: 0.5px solid var(--rule); }
.contact-meta-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.contact-meta-value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--forest);
}

/* Form */
.form {
  background: var(--parchment);
  padding: 3rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.field-full { grid-column: span 2; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.field label {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  opacity: 0.75;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--rule-strong);
  padding: 0.6rem 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--forest);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--forest);
  opacity: 0.4;
  font-style: italic;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--forest); }
.field textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.field.is-error input,
.field.is-error textarea,
.field.is-error select { border-bottom-color: #a04040; }
.field-error {
  font-family: var(--sans);
  font-size: 11px;
  color: #a04040;
  font-style: italic;
  display: none;
}
.field.is-error .field-error { display: block; }

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.radio-pill {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border: 0.5px solid var(--rule-strong);
  background: transparent;
  color: var(--forest);
  transition: background 0.25s, color 0.25s;
}
.radio-pill:hover { background: rgba(47, 58, 42, 0.06); }
.radio-pill.is-selected {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.form-submit {
  grid-column: span 2;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-fine {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14.5px;
  color: var(--forest);
  opacity: 0.75;
  max-width: 40ch;
  line-height: 1.55;
}
.btn-submit {
  background: var(--forest);
  color: var(--cream);
  border: 0;
  padding: 1.1rem 2rem;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.btn-submit:hover { background: var(--forest-deep); }
.btn-submit .arrow { transition: transform 0.35s ease; }
.btn-submit:hover .arrow { transform: translateX(6px); }
.btn-submit:disabled { opacity: 0.5; }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
}
.form-success .mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  color: var(--forest);
  line-height: 1;
}
.form-success .body {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--forest);
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 6rem var(--page-pad) 2.5rem;
}
.footer-top {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.5px solid var(--rule-cream);
}
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 44px;
  line-height: 1;
}
.footer-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.footer-rule .flourish-line { background: var(--cream); width: 36px; opacity: 0.55; }
.footer-rule span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-tag {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 30ch;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.65;
  margin-bottom: 1.25rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 2px 0;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: var(--page-max);
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.55;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =========================================================================
   MOBILE / RESPONSIVE
   ========================================================================= */

/* Show/hide helpers */
.nav-mobile-only  { display: none; }
.nav-desktop-only { display: flex; }

@media (max-width: 768px) {
  /* Hamburger visible, desktop links hidden */
  .nav-mobile-only  { display: inline-flex; }
  .nav-desktop-only { display: none !important; }

  /* Reduce page padding on small screens */
  :root { --page-pad: 1.25rem; }

  /* Nav center wordmark stays visible; outer grid simplifies */
  .nav-inner { position: relative; display: flex; justify-content: center; align-items: center; }
  .nav-center { flex: none; }
  .nav-right  { position: absolute; right: var(--page-pad); }

  /* Portfolio tabs: scrollable row instead of wrapping */
  .portfolio-tabs {
    gap: 1.5rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .portfolio-tabs::-webkit-scrollbar { display: none; }

  /* IG grid: 2 columns on phone */
  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA strip spacing */
  .cta-strip { padding: 4rem var(--page-pad); }

  /* Tier cards full padding */
  .tier { padding: 2.5rem var(--page-pad); }

  /* Lightbox controls */
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Drawer backdrop */
.nav-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, 0.4);
  z-index: 199;
}
.nav-drawer-backdrop.is-open { display: block; }

/* =========================================================================
   PAGE TRANSITIONS
   ========================================================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-anim { animation: fadeIn 0.7s ease-out both; }

@keyframes heroIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-full-img,
.hero-split-img-wrap img,
.hero-matted-frame img { animation: heroIn 1.4s ease-out both; }

@keyframes textIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > *,
.hero-split-text > * { animation: textIn 0.9s ease-out both; }
.hero-content > *:nth-child(1) { animation-delay: 0.15s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.45s; }
.hero-split-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-split-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-split-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-split-text > *:nth-child(4) { animation-delay: 0.55s; }
