/* ==========================================================================
   FULLER LIVING INTERIORS  ·  Design system v2 (luxury elevation)
   Type: Fraunces (display serif, optical) + Hanken Grotesk (body) + Montserrat (labels)
   Warm coastal palette  ·  full-width editorial layout  ·  restrained premium motion
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/*  TOKENS                                                                     */
/* -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --cream:      #F6F1E7;
  --cream-soft: #FBF8F1;
  --sand:       #ECE3D2;
  --sand-deep:  #E3D7C1;
  --shell:      #FFFFFF;

  /* Ink */
  --ink:        #2A2824;
  --ink-soft:   #565047;
  --ink-mute:   #877F72;

  /* Brand accents */
  --sage:       #76805E;
  --sage-deep:  #525B3E;
  --sage-tint:  #E7EADD;
  --terra:      #B26544;
  --terra-soft: #F0E0D6;
  --gold:       #C09A52;
  --blue:       #7F96A4;

  /* Lines & shadow */
  --line:       rgba(42, 40, 36, 0.14);
  --line-soft:  rgba(42, 40, 36, 0.08);
  --shadow-sm:  0 1px 3px rgba(42,40,36,0.04), 0 6px 18px rgba(42,40,36,0.06);
  --shadow-md:  0 2px 6px rgba(42,40,36,0.04), 0 16px 44px rgba(42,40,36,0.11);
  --shadow-lg:  0 4px 12px rgba(42,40,36,0.06), 0 42px 90px rgba(42,40,36,0.17);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", "Hoefler Text", Georgia, serif;
  --sans:  "Hanken Grotesk", "Mulish", "Helvetica Neue", Arial, sans-serif;
  --label: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm — three width tiers so wide monitors fill with imagery,
     while long-form text keeps a comfortable reading measure */
  --container-wide:   1800px;   /* hero, galleries, grids, footer */
  --container:        1600px;   /* default content frame */
  --container-narrow: 880px;    /* long-form prose */
  --container-text:   46rem;    /* hard reading measure (~70ch) */

  --gutter:      clamp(1.25rem, 4vw, 4.5rem);
  --gutter-wide: clamp(1.25rem, 2.6vw, 3.5rem);
  --bleed: calc(50% - 50vw);

  --section:       clamp(5rem, 9vw, 10rem);
  --section-tight: clamp(3.25rem, 6vw, 6rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:  cubic-bezier(0.40, 0, 0.20, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: .45s;
  --dur-2: .8s;
  --dur-3: 1.1s;
  --stagger: 90ms;
}

/* -------------------------------------------------------------------------- */
/*  RESET / BASE                                                              */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  letter-spacing: 0.004em;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
  font-optical-sizing: auto;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--sage); color: var(--cream); }

/* film grain + paper bloom: kills the flat-digital cream */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 80;
  pointer-events: none; opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 79; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(192,154,82,0.05), transparent 60%),
    radial-gradient(100% 60% at 100% 110%, rgba(178,101,68,0.04), transparent 55%);
}

/* -------------------------------------------------------------------------- */
/*  TYPOGRAPHY                                                                */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
  font-variation-settings: "opsz" 96;
  text-wrap: balance;
}

.display {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8.5vw, 8.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}
h1, .h1 { font-size: clamp(2.7rem, 5.6vw, 5.25rem); line-height: 1.02; letter-spacing: -0.022em; font-weight: 500; font-variation-settings: "opsz" 120; }
h2, .h2 { font-size: clamp(2.05rem, 4.1vw, 3.6rem); line-height: 1.06; letter-spacing: -0.018em; font-weight: 500; font-variation-settings: "opsz" 80; }
h3, .h3 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.14; letter-spacing: -0.012em; font-weight: 500; font-variation-settings: "opsz" 48; }
h4, .h4 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); line-height: 1.28; letter-spacing: -0.006em; font-weight: 600; font-variation-settings: "opsz" 32; }

.lede {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  line-height: 1.6;
  letter-spacing: 0.001em;
  color: var(--ink-soft);
  font-weight: 400;
}

p { max-width: 68ch; }
p + p { margin-top: 1.1em; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--sage);
  opacity: 0.6;
}
.eyebrow.is-center::before { display: none; }
.eyebrow.on-dark { color: #d8d2c2; }
.eyebrow.on-dark::before { background: #d8d2c2; }
.eyebrow .idx { font-variant-numeric: tabular-nums; opacity: 0.55; margin-right: 0.2em; }

.small, small { font-family: var(--sans); font-size: 0.9375rem; line-height: 1.6; letter-spacing: 0.003em; color: var(--ink-soft); font-weight: 400; }

.script-accent { font-family: var(--serif); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 90; color: var(--sage); }

/* editorial micro-details */
.section-index {
  display: block; font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem); font-weight: 500; line-height: 0.8;
  color: var(--ink); opacity: 0.08; letter-spacing: -0.02em;
  margin-bottom: -0.1em; font-variant-numeric: tabular-nums; user-select: none;
}
.section-index.on-dark { color: #fff; opacity: 0.12; }

.coords {
  font-family: var(--label); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 0.7em;
}
.coords::before { content: ""; width: 5px; height: 5px; border: 1px solid currentColor; border-radius: 50%; opacity: 0.7; }
.coords.on-dark { color: rgba(255,255,255,0.78); }

.rule { height: 1px; background: var(--line); width: 100%; border: 0; }
.rule-soft { background: var(--line-soft); }
.rule-ornament { display: flex; align-items: center; gap: 1.4rem; color: var(--line); }
.rule-ornament::before, .rule-ornament::after { content: ""; flex: 1; height: 1px; background: currentColor; }
.rule-ornament .mark { width: 6px; height: 6px; border: 1px solid var(--sage); transform: rotate(45deg); opacity: 0.7; flex: none; }

.fig-caption {
  display: flex; align-items: baseline; gap: 1rem; margin-top: 1rem;
  font-family: var(--label); font-size: 0.64rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute);
}
.fig-caption .fc-rule { flex: 1; height: 1px; background: var(--line); align-self: center; }
.fig-caption .fc-idx { color: var(--sage); }

/* -------------------------------------------------------------------------- */
/*  LAYOUT                                                                    */
/* -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter-wide); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.container-text { width: 100%; max-width: var(--container-text); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section); }
.section-tight { padding-block: var(--section-tight); }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-soft  { background: var(--cream-soft); }
.bg-sage  { background: var(--sage); color: var(--cream); }
.bg-ink   { background: #211F1B; color: var(--cream); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 60ch; }
.measure-wide { max-width: 72ch; }

.section-head { max-width: 56rem; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-wide { max-width: 72rem; }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1.1rem; }

/* -------------------------------------------------------------------------- */
/*  BUTTONS                                                                   */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1em 2.3em;
  border-radius: 2px;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .3s var(--ease), box-shadow .45s var(--ease);
  position: relative;
  white-space: nowrap;
  will-change: transform;
}
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--sage); color: var(--cream); }
.btn-primary:hover { background: var(--sage-deep); box-shadow: var(--shadow-md); }

.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: #000; box-shadow: var(--shadow-md); }

.btn-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-light { border: 1px solid rgba(255,255,255,0.65); color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link {
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding-bottom: 4px;
  position: relative;
}
.link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(1); transform-origin: left;
  transition: transform .5s var(--ease);
}
.link:hover::after { transform: scaleX(0); transform-origin: right; }
.link .arrow { transition: transform .45s var(--ease); }
.link:hover .arrow { transform: translateX(5px); }
.link.is-sage { color: var(--sage-deep); }

/* -------------------------------------------------------------------------- */
/*  HEADER / NAV                                                              */
/* -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.5rem;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { max-width: var(--container-wide); padding-inline: var(--gutter-wide); }
.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-utility {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); padding-bottom: 0.85rem; margin-bottom: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter-wide);
  transition: color .5s var(--ease), border-color .5s var(--ease), opacity .5s var(--ease);
}
.nav-utility a:hover { color: #fff; }
.nav-utility .u-right { display: flex; gap: 1.6rem; align-items: center; }
.site-header.is-solid .nav-utility { color: var(--ink-soft); border-color: var(--line-soft); }
.site-header.is-solid .nav-utility a:hover { color: var(--ink); }

.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand img { height: 48px; width: auto; transition: height .5s var(--ease), filter .5s var(--ease); }
.site-header.is-solid .brand img,
.brand.needs-dark img { filter: brightness(0) saturate(100%) invert(13%) sepia(8%) saturate(900%) hue-rotate(2deg) brightness(95%); }

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-block: 0.4rem;
  transition: color .4s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.site-header.is-solid { background: rgba(246,241,231,0.9); backdrop-filter: blur(14px); padding-block: 1rem; border-color: var(--line-soft); box-shadow: 0 8px 30px rgba(42,40,36,0.06); }
.site-header.is-solid .nav-links a,
.site-header.is-solid .nav-cta.link { color: var(--ink); }
.site-header.is-solid .brand img { height: 40px; }

.nav-cta { display: inline-flex; }
.nav-right { display: flex; align-items: center; gap: 2.2rem; }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor; color: #fff; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.site-header.is-solid .nav-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.4rem);
  color: var(--ink);
  padding-block: 0.35rem;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .m-meta { margin-top: 2.5rem; font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.12em; color: var(--ink-soft); }
.mobile-nav .m-meta a { font-family: var(--label); font-size: 0.95rem; border: none; display: block; padding: 0.2rem 0; }

/* -------------------------------------------------------------------------- */
/*  HERO                                                                      */
/* -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.16); will-change: transform; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,0.46) 0%, rgba(20,18,15,0.08) 30%, rgba(20,18,15,0.34) 60%, rgba(20,18,15,0.78) 100%);
}
.kenburns { animation: kenburns 20s var(--ease-soft) infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1.1) translate(0, 0); }
  to   { transform: scale(1.2) translate(-1.5%, -1.5%); }
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter-wide);
  padding-bottom: clamp(5rem, 12vh, 10rem); padding-top: 9rem;
}
.hero h1 { color: #fff; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.98; letter-spacing: -0.022em; max-width: 15ch; text-shadow: 0 2px 40px rgba(20,18,15,0.4); font-variation-settings: "opsz" 144; }
.hero .lede { color: rgba(255,255,255,0.92); max-width: 48ch; text-shadow: 0 1px 24px rgba(20,18,15,0.45); margin-top: 1.6rem; }
.hero .eyebrow.on-dark { color: #f2ede0; text-shadow: 0 1px 18px rgba(20,18,15,0.55); }
.hero .eyebrow.on-dark::before { background: #f2ede0; opacity: 0.9; }
.hero .coords.on-dark { margin-top: 1.6rem; text-shadow: 0 1px 14px rgba(20,18,15,0.5); }
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.page-hero .hero-media::after {
  background: linear-gradient(180deg, rgba(20,18,15,0.45) 0%, rgba(20,18,15,0.12) 40%, rgba(20,18,15,0.66) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter-wide);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem); padding-top: 10rem;
}
.page-hero h1 { color: #fff; max-width: 20ch; text-shadow: 0 2px 34px rgba(20,18,15,0.4); }
.page-hero .lede { color: rgba(255,255,255,0.88); text-shadow: 0 2px 34px rgba(20,18,15,0.4); margin-top: 1.4rem; }
.breadcrumb { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.78); margin-bottom: 1.4rem; display: flex; gap: 0.6em; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.6; }

/* -------------------------------------------------------------------------- */
/*  EDITORIAL SPLIT                                                           */
/* -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.split.is-reverse .split-media { order: 2; }
.split-media { position: relative; overflow: hidden; border-radius: var(--radius); }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-media .stack { display: grid; gap: 1.25rem; }
.split-body .eyebrow { margin-bottom: 1.3rem; }
.split-body h2 { margin-bottom: 1.4rem; }
.split-body .btn, .split-body .link { margin-top: 2rem; }

.img-tag {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 3;
  background: rgba(20,18,15,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--label);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.55em 1em; border-radius: 2px;
}

.framed { position: relative; }
.framed::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--sage); border-radius: var(--radius); z-index: -1;
}

/* parallax media wrapper */
.parallax-media { overflow: hidden; border-radius: var(--radius); }
.parallax-media img { transform: scale(1.16); will-change: transform; }

/* -------------------------------------------------------------------------- */
/*  CARDS                                                                     */
/* -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2.25rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(2rem, 3.2vw, 3rem);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card .num { font-family: var(--serif); font-size: 2.6rem; color: var(--sage); opacity: 0.55; line-height: 1; margin-bottom: 1.1rem; font-variation-settings: "opsz" 60; }
.card h3 { margin-bottom: 0.8rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }
.card .link { margin-top: 1.6rem; font-size: 0.72rem; }

.feature-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: block; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm);
}
@media (min-width: 1200px) { .feature-card { aspect-ratio: 5 / 7; } }
.feature-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.02); transition: transform 1.1s var(--ease), filter .8s var(--ease); }
.feature-card:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.04); }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,15,0) 38%, rgba(20,18,15,0.78) 100%); }
.feature-card .fc-body { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(1.5rem, 2.5vw, 2.4rem); color: #fff; }
.feature-card .eyebrow { color: #e7e1d2; margin-bottom: 0.7rem; }
.feature-card .eyebrow::before { background: #e7e1d2; }
.feature-card h3 { color: #fff; font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
.feature-card .fc-meta { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-top: 0.5rem; }
.feature-card .fc-link { font-family: var(--label); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 1.1rem; display: inline-flex; gap: 0.5em; opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.feature-card:hover .fc-link { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------- */
/*  PORTFOLIO / GALLERY                                                       */
/* -------------------------------------------------------------------------- */
.masonry { columns: 3; column-gap: clamp(0.85rem, 1.4vw, 1.4rem); }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(0.85rem, 1.4vw, 1.4rem); display: block; }
.masonry .tile img { width: 100%; height: auto; display: block; }

.tile {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  background: var(--sand);
}
.tile img { width: 100%; transition: transform 1.2s var(--ease), filter 1s var(--ease); filter: saturate(.92) contrast(1.02); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,15,0) 55%, rgba(20,18,15,0.45) 100%); opacity: 0; transition: opacity .55s var(--ease); }
.tile:hover img { transform: scale(1.05); filter: saturate(1.06) contrast(1.04); }
.tile:hover::after { opacity: 1; }
.tile .tile-zoom {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.8);
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.85);
  display: grid; place-items: center; color: #fff; opacity: 0; transition: opacity .5s var(--ease), transform .5s var(--ease);
  background: rgba(20,18,15,0.25); backdrop-filter: blur(2px);
}
.tile:hover .tile-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: clamp(2rem,4vw,3rem); }
.chip {
  font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.7em 1.4em; border-radius: 40px; border: 1px solid var(--line);
  color: var(--ink-soft); transition: all .4s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active { background: var(--sage); color: var(--cream); border-color: var(--sage); }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,16,13,0.95); display: none; align-items: center; justify-content: center; padding: 3vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 2px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; color: #fff; font-family: var(--label); }
.lightbox .lb-close { top: 5vh; right: 5vw; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; transition: background .4s; }
.lightbox .lb-nav:hover { background: rgba(255,255,255,0.12); }
.lightbox .lb-prev { left: 4vw; }
.lightbox .lb-next { right: 4vw; }
.lightbox .lb-count { position: absolute; bottom: 5vh; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.16em; }

.project-grid { display: grid; gap: clamp(0.7rem, 1.2vw, 1.2rem); grid-template-columns: repeat(12, 1fr); }
.project-grid .tile { grid-column: span 6; aspect-ratio: 3 / 2; }
.project-grid .tile.wide { grid-column: span 12; aspect-ratio: 16 / 7; }
.project-grid .tile.third { grid-column: span 4; aspect-ratio: 4 / 5; }
.project-grid .tile.two-thirds { grid-column: span 8; }
.project-grid .tile.five { grid-column: span 5; aspect-ratio: 4 / 5; }
.project-grid .tile.seven { grid-column: span 7; }
.project-grid .tile img { height: 100%; object-fit: cover; }

/* -------------------------------------------------------------------------- */
/*  STATS / MARQUEE / QUOTE                                                   */
/* -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 4rem); }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.4rem); color: var(--ink); line-height: 1; font-variation-settings: "opsz" 110; }
.stat .l { font-family: var(--label); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.9rem; }
.stat.on-dark .n { color: #fff; }
.stat.on-dark .l { color: rgba(255,255,255,0.7); }

.pullquote {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  line-height: 1.22; letter-spacing: -0.015em;
  max-width: 22ch;
  font-variation-settings: "opsz" 90;
}
.pullquote-block { text-align: center; max-width: 30ch; margin-inline: auto; position: relative; }
.pullquote-block::before {
  content: "\201C"; font-family: var(--serif); font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.7; color: var(--sage); opacity: 0.18; display: block; margin-bottom: -0.1em;
}
.pullquote-block .pq { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.28; font-variation-settings: "opsz" 80; }
.pullquote-block cite { display: inline-flex; align-items: center; gap: 0.9em; font-family: var(--label); font-style: normal; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-top: 1.8rem; }
.pullquote-block cite::before { content: ""; width: 2.2rem; height: 1px; background: var(--sage); opacity: 0.6; }

.marquee {
  overflow: hidden; position: relative; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 64s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track a { position: relative; overflow: hidden; border-radius: 2px; flex: 0 0 auto; }
.marquee-track img { width: 20vw; max-width: 340px; min-width: 200px; aspect-ratio: 1/1; object-fit: cover; transition: transform 1s var(--ease); }
.marquee-track a:hover img { transform: scale(1.06); }
@keyframes marquee { to { transform: translateX(-50%); } }
.ig-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(42,40,36,0); transition: background .5s; opacity: 0; }
.marquee-track a:hover .ig-overlay { background: rgba(42,40,36,0.32); opacity: 1; }

/* -------------------------------------------------------------------------- */
/*  PROCESS / STEPS                                                           */
/* -------------------------------------------------------------------------- */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(1.8rem, 3.5vw, 2.8rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-n { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--sage); line-height: 1; min-width: 2.5ch; font-variation-settings: "opsz" 80; }
.step h3 { margin-bottom: 0.7rem; }
.step p { color: var(--ink-soft); }

.checklist { display: grid; gap: 0.95rem; }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; color: var(--ink-soft); }
.checklist li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; margin-top: 3px;
  background: var(--sage-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23525B3E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
  flex: none;
}
.checklist.two-col { grid-template-columns: 1fr 1fr; gap: 0.95rem 2.5rem; }

/* -------------------------------------------------------------------------- */
/*  FAQ ACCORDION                                                             */
/* -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  padding-block: clamp(1.3rem, 2.4vw, 1.9rem);
  font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.6rem); color: var(--ink);
  transition: color .3s; font-variation-settings: "opsz" 48; font-weight: 500;
}
.faq-q:hover { color: var(--sage); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--sage); transition: transform .4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a-inner { padding-bottom: clamp(1.3rem, 2.4vw, 1.9rem); color: var(--ink-soft); max-width: 80ch; }

/* -------------------------------------------------------------------------- */
/*  FORM (Inquire)                                                            */
/* -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; transition: border-color .4s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: 0.7; }

.contact-meta { display: grid; gap: 1.6rem; }
.contact-line .l { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 0.4rem; }
.contact-line .v { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--ink); font-variation-settings: "opsz" 40; }
.contact-line .v:hover { color: var(--sage); }

/* -------------------------------------------------------------------------- */
/*  CTA BAND (full-bleed dark moment)                                         */
/* -------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: #fff; text-align: center; }
.cta-band .hero-media::after { background: linear-gradient(180deg, rgba(20,18,15,0.62), rgba(20,18,15,0.72)); }
.cta-band-inner { position: relative; z-index: 2; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); padding-block: clamp(6rem, 12vw, 10rem); }
.cta-band h2 { color: #fff; margin-bottom: 1.3rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-inline: auto; }
.cta-band .btn { margin-top: 2.4rem; }

/* -------------------------------------------------------------------------- */
/*  FOOTER                                                                    */
/* -------------------------------------------------------------------------- */
.site-footer { background: #211F1B; color: #cfc8ba; padding-top: clamp(3rem, 6vw, 5rem); }
.site-footer .container { max-width: var(--container-wide); padding-inline: var(--gutter-wide); }
.footer-wordmark {
  font-family: var(--serif); font-size: clamp(3.2rem, 13vw, 12rem); line-height: 0.86;
  font-weight: 500; color: #fff; letter-spacing: -0.025em;
  padding-bottom: clamp(2.5rem, 5vw, 4rem); margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.12); font-variation-settings: "opsz" 144;
}
.footer-wordmark .accent { font-style: italic; color: var(--sage); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 5rem); padding-bottom: clamp(3rem,6vw,5rem); border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 1500px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.footer-brand img { height: 54px; margin-bottom: 1.6rem; }
.footer-brand p { color: #a59d8e; font-size: 0.96rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 1.3rem; }
.footer-col a { display: block; color: #b8b0a1; padding-block: 0.4rem; font-size: 0.96rem; transition: color .3s, padding-left .3s; }
.footer-col a:hover { color: #fff; padding-left: 6px; }
.footer-contact .v { color: #e7e1d3; font-size: 1.02rem; }
.footer-contact a { color: #e7e1d3; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-block: 2rem; font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8c8576; }
.footer-bottom a:hover { color: #fff; }

/* -------------------------------------------------------------------------- */
/*  REVEAL / MOTION                                                           */
/* -------------------------------------------------------------------------- */
.has-js [data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease);
  will-change: opacity, transform;
}
.has-js [data-reveal="fade"]  { transform: none; }
.has-js [data-reveal="left"]  { transform: translateX(-34px); }
.has-js [data-reveal="right"] { transform: translateX(34px); }
.has-js [data-reveal="scale"] { transform: scale(1.04); }
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }
[data-delay="5"] { transition-delay: .60s; }

/* clip-path image unveil */
.has-js [data-reveal="clip"] {
  opacity: 1; transform: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--dur-3) var(--ease-inout);
  will-change: clip-path;
}
.has-js [data-reveal="clip"] > img,
.has-js [data-reveal="clip"] .reveal-inner { transform: scale(1.12); transition: transform 1.4s var(--ease-inout); will-change: transform; }
.has-js [data-reveal="clip"].is-visible { clip-path: inset(0 0 0 0); }
.has-js [data-reveal="clip"].is-visible > img,
.has-js [data-reveal="clip"].is-visible .reveal-inner { transform: scale(1); }

/* staggered children */
.has-js [data-reveal-group] > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
  transition-delay: calc(var(--i, 0) * var(--stagger));
  will-change: opacity, transform;
}
.has-js [data-reveal-group].is-visible > * { opacity: 1; transform: none; }

/* line-by-line heading reveal */
.reveal-mask { overflow: hidden; }
.has-js .reveal-lines .line { overflow: hidden; display: block; }
.has-js .reveal-lines .line > span {
  display: block; transform: translateY(110%);
  transition: transform 1s var(--ease-inout);
  transition-delay: calc(var(--i, 0) * var(--stagger));
  will-change: transform;
}
.has-js .reveal-lines.is-visible .line > span { transform: translateY(0); }

/* parallax */
.parallax { will-change: transform; }

/* custom cursor (desktop) */
.cursor {
  position: fixed; top: 0; left: 0; width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1px solid #fff; border-radius: 50%; pointer-events: none; z-index: 9998;
  mix-blend-mode: difference; opacity: 0;
  transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background-color .3s var(--ease), opacity .3s, border-color .3s;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 78px; height: 78px; margin: -39px 0 0 -39px; background: rgba(246,241,231,0.1); border-color: transparent; mix-blend-mode: normal; }
.cursor .cursor-label {
  font-family: var(--label); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; opacity: 0; transition: opacity .3s var(--ease);
  display: grid; place-items: center; width: 100%; height: 100%;
}
.cursor.is-hover .cursor-label { opacity: 1; }
@media (pointer: coarse) { .cursor { display: none; } }

/* -------------------------------------------------------------------------- */
/*  RESPONSIVE                                                                */
/* -------------------------------------------------------------------------- */
@media (min-width: 1500px) { .masonry { columns: 4; } }
@media (min-width: 2000px) { .masonry { columns: 5; } .container-wide { max-width: 1920px; } }
@media (max-width: 1200px) {
  .split { grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .project-grid .tile.two-thirds, .project-grid .tile.five, .project-grid .tile.seven { grid-column: span 6; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta.desktop { display: none; }
  .nav-utility { display: none; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .split.is-reverse .split-media { order: 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .checklist.two-col { grid-template-columns: 1fr; }
  .project-grid .tile, .project-grid .tile.third, .project-grid .tile.two-thirds,
  .project-grid .tile.five, .project-grid .tile.seven, .project-grid .tile.wide { grid-column: span 12; aspect-ratio: 4 / 3; }
  .framed::before { display: none; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .stats { grid-template-columns: 1fr; }
  body { font-size: 1.02rem; }
}

/* -------------------------------------------------------------------------- */
/*  ACCESSIBILITY                                                             */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  [data-reveal="clip"] { clip-path: none !important; }
  [data-reveal="clip"] > img, [data-reveal-group] > *, .reveal-lines .line > span { transform: none !important; opacity: 1 !important; }
  .kenburns { animation: none; }
  .hero-media img, .parallax-media img { transform: none; }
  .cursor { display: none; }
}
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.8rem 1.2rem; z-index: 999; }
.skip-link:focus { left: 0; }
