/* ==========================================================================
   KNP EXPORT v2 — Editorial Luxury System
   Design: dark editorial · oversized serif · asymmetric grid · slow motion
   ========================================================================== */

:root {
  /* Core palette — deep, warm, expensive */
  --bg: #0c0c0a;
  --bg-elev: #141411;
  --bg-warm: #1a1814;
  --paper: #f4ede1;
  --paper-warm: #ebe2d2;
  --ink: #f7f3eb;
  --ink-mute: #a39d92;
  --ink-faint: #5a564f;
  --line: rgba(244,237,225,0.10);
  --line-strong: rgba(244,237,225,0.22);

  /* Accents — saffron / leaf / clay */
  --saffron: #e8a13a;
  --saffron-deep: #b87520;
  --leaf: #4f7942;
  --leaf-bright: #82a86b;
  --clay: #c66b3d;
  --gold: #d4b170;

  /* Type */
  --serif: 'Fraunces', 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --max: 1480px;

  /* Motion */
  --ease: cubic-bezier(.16,.84,.24,1);
  --slow: cubic-bezier(.7,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle film grain */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .4s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--saffron); color: var(--bg); }

h1, h2, h3, h4, .display {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ============================ TICKERS / EYEBROWS ============================ */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,161,58,.15);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(232,161,58,.15); }
  50% { box-shadow: 0 0 0 9px rgba(232,161,58,.05); }
}
.label.no-dot::before { display: none; }
.label.dot-leaf::before { background: var(--leaf-bright); box-shadow: 0 0 0 4px rgba(130,168,107,.15); }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  font-family: var(--serif);
  font-size: 18px;
  transition: transform .4s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }

.btn-fill { background: var(--paper); color: var(--bg); }
.btn-fill:hover { background: var(--saffron); }

.btn-outline {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-outline:hover { background: var(--paper); color: var(--bg); border-color: var(--paper); }

.btn-ink { background: var(--bg); color: var(--paper); }
.btn-ink:hover { background: var(--saffron); color: var(--bg); }

/* ============================ ANNOUNCEMENT BAR ============================ */
.announce {
  background: var(--saffron);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid var(--bg);
}
.announce-track {
  display: flex;
  gap: 60px;
  padding: 11px 0;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.announce-track span {
  display: inline-flex; align-items: center; gap: 60px;
}
.announce-track span::after {
  content: '✱';
  font-size: 14px;
  color: var(--bg);
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(12,12,10,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute; inset: -4px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mute);
  border-radius: 999px;
  transition: all .35s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--saffron);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 12px 22px; font-size: 11px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  align-items: center; justify-content: center;
  font-size: 18px;
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  min-height: 78vh;
}
.hero-left { padding-bottom: 80px; position: relative; z-index: 2; }
.hero-meta {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-meta .divider {
  width: 1px; height: 24px;
  background: var(--line-strong);
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0;
}
.hero h1 .it {
  font-style: italic;
  color: var(--saffron);
}
.hero h1 .thin {
  font-weight: 200;
  font-style: italic;
}

.hero-rule {
  margin: 50px 0;
  width: 80%;
  height: 1px;
  background: var(--line-strong);
}

.hero-lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--ink-mute);
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  height: 78vh;
  min-height: 600px;
}
.hero-img {
  position: absolute;
  inset: 0 0 60px 0;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1814, #2a261e);
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,12,10,0.4));
}

.hero-circle {
  position: absolute;
  bottom: -10px; left: -50px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--bg);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  animation: rotate 40s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.hero-circle::before {
  content: 'EST. 2014 · GLOBAL EXPORT · EST. 2014 · GLOBAL EXPORT · ';
  position: absolute;
  width: 100%; height: 100%;
  line-height: 180px;
  white-space: nowrap;
  display: none;
}

.hero-circle .inner {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero-circle .small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-numbers {
  position: absolute;
  bottom: 0; right: 0;
  display: flex; gap: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  z-index: 3;
}
.hero-numbers .n {
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.hero-numbers .n:last-child { border-right: none; }
.hero-numbers .num {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}
.hero-numbers .lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* ============================ BIG MARQUEE ============================ */
.marquee {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 80px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 80px;
}
.marquee-track span::after {
  content: '✺';
  color: var(--saffron);
  font-style: normal;
  font-size: 0.6em;
}
.marquee.alt .marquee-track {
  animation-direction: reverse;
  animation-duration: 50s;
}
.marquee.alt span { color: var(--ink-mute); -webkit-text-stroke: 1px var(--ink); -webkit-text-fill-color: transparent; }

/* ============================ INTRO ============================ */
.intro {
  padding: 160px 0 120px;
  position: relative;
}
.intro-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
.intro-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.intro-head h2 .it { font-style: italic; color: var(--saffron); }
.intro-text {
  font-size: 1.05rem;
  color: var(--ink-mute);
  line-height: 1.75;
}
.intro-text p + p { margin-top: 18px; }

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.intro-cell {
  padding: 50px 36px;
  background: var(--bg);
}
.intro-cell .num {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.intro-cell .num .plus {
  color: var(--saffron);
  font-style: italic;
}
.intro-cell .cap {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================ FEATURE / EDITORIAL BLOCK ============================ */
.editorial {
  padding: 140px 0;
  background: var(--paper);
  color: var(--bg);
  position: relative;
}
.editorial .label { color: var(--ink-faint); }
.editorial .label::before { background: var(--saffron-deep); box-shadow: 0 0 0 4px rgba(184,117,32,.18); }

.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: center;
}
.editorial-text h2 {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  margin: 24px 0 32px;
  color: var(--bg);
}
.editorial-text h2 .it { font-style: italic; color: var(--saffron-deep); }
.editorial-text p {
  font-size: 1.06rem;
  color: var(--ink-faint);
  line-height: 1.7;
  max-width: 560px;
}
.editorial-text p + p { margin-top: 18px; }

.editorial-list {
  margin: 40px 0;
  list-style: none;
  border-top: 1px solid rgba(12,12,10,0.12);
}
.editorial-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(12,12,10,0.12);
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bg);
  transition: padding .4s var(--ease);
}
.editorial-list li:hover { padding-left: 12px; }
.editorial-list li .nm {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  flex-shrink: 0; width: 30px;
}

.editorial-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #2a261e, #1a1814);
}
.editorial-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-img .tag {
  position: absolute;
  bottom: 24px; left: 24px;
  padding: 10px 18px;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================ SERVICES — VERTICAL EDITORIAL LIST ============================ */
.services {
  padding: 140px 0;
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 80px;
}
.services-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.services-head h2 .it { font-style: italic; color: var(--saffron); }
.services-head p {
  color: var(--ink-mute); max-width: 460px;
  font-size: 1rem; line-height: 1.7;
}

.svc {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: all .5s var(--slow);
  position: relative;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { padding: 36px 24px; background: var(--bg-elev); }
.svc-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  transition: transform .5s var(--slow);
}
.svc:hover .svc-title { transform: translateX(8px); }
.svc-title .it { font-style: italic; color: var(--saffron); }
.svc-desc {
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
}
.svc-arrow {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink-mute);
  text-align: right;
  transition: all .4s var(--ease);
}
.svc:hover .svc-arrow { color: var(--saffron); transform: translateX(8px) rotate(-45deg); }

/* ============================ PRINCIPLES (DARK CARDS) ============================ */
.principles {
  padding: 140px 0;
  background:
    radial-gradient(800px 600px at 15% 20%, rgba(232,161,58,0.07), transparent 60%),
    radial-gradient(700px 500px at 85% 80%, rgba(79,121,66,0.08), transparent 60%),
    var(--bg);
  position: relative;
  border-top: 1px solid var(--line);
}
.principles-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.principles-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-top: 22px;
}
.principles-head h2 .it { font-style: italic; color: var(--saffron); }
.principles-head .label { justify-content: center; }

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pcell {
  padding: 50px 36px;
  background: var(--bg);
  position: relative;
  transition: background .5s var(--ease);
}
.pcell:hover { background: var(--bg-warm); }
.pcell .pn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--saffron);
}
.pcell h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 80px 0 16px;
  letter-spacing: -0.02em;
}
.pcell h3 .it { font-style: italic; color: var(--ink-mute); font-weight: 300; }
.pcell p {
  color: var(--ink-mute);
  font-size: 0.93rem;
  line-height: 1.7;
}
.pcell .ico {
  position: absolute;
  top: 50px; right: 36px;
  font-size: 22px;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-style: italic;
}

/* ============================ PRODUCTS GALLERY ============================ */
.gallery {
  padding: 140px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 80px;
}
.gallery-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.gallery-head h2 .it { font-style: italic; color: var(--saffron); }
.gallery-head p { color: var(--ink-mute); max-width: 460px; line-height: 1.7; }

.ggrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gitem {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
}
.gitem.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gitem.wide { grid-column: span 6; aspect-ratio: 4/3; }
.gitem.sq { grid-column: span 4; aspect-ratio: 1/1; }
.gitem.lg { grid-column: span 8; aspect-ratio: 3/2; }
.gitem.sm { grid-column: span 4; aspect-ratio: 1/1; }
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--slow);
  filter: saturate(1.05);
}
.gitem:hover img { transform: scale(1.06); }
.gitem .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(12,12,10,0.85));
  color: var(--ink);
  display: flex; align-items: end; justify-content: space-between;
  gap: 14px;
}
.gitem .meta h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.gitem .meta h4 .it { font-style: italic; color: var(--saffron); }
.gitem .meta .cap {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.gitem .meta .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: var(--serif);
  flex-shrink: 0;
  transition: all .4s var(--ease);
}
.gitem:hover .meta .arrow { background: var(--saffron); color: var(--bg); border-color: var(--saffron); }

/* Fallback colored placeholder for missing imagery */
.gitem.placeholder {
  background:
    radial-gradient(circle at 30% 30%, var(--c1, #2a2018), var(--c2, #14110d) 70%);
  display: grid; place-items: center;
}
.gitem.placeholder .glyph {
  font-size: 5rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5));
}

/* ============================ PROCESS / TIMELINE ============================ */
.process {
  padding: 140px 0;
  position: relative;
}
.process-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.process-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-top: 22px;
}
.process-head h2 .it { font-style: italic; color: var(--saffron); }
.process-head .label { justify-content: center; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 11%; right: 11%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.step { text-align: left; position: relative; z-index: 2; }
.step .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--saffron);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 13px;
  margin-bottom: 30px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step p { color: var(--ink-mute); font-size: 0.95rem; line-height: 1.65; }

/* ============================ TEAM ============================ */
.team {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-elev);
}
.team-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 80px;
}
.team-head h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}
.team-head h2 .it { font-style: italic; color: var(--saffron); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tcard {
  background: var(--bg);
  border: 1px solid var(--line);
  position: relative;
}
.tcard-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #2a261e, #14110d);
  position: relative;
}
.tcard-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,10,0.6));
}
.tcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: filter .6s var(--ease), transform 1s var(--slow);
}
.tcard:hover .tcard-img img { filter: grayscale(0) contrast(1.1); transform: scale(1.04); }
.tcard-body { padding: 28px; }
.tcard .role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
}
.tcard h4 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 10px 0 14px;
  letter-spacing: -0.02em;
}
.tcard h4 .it { font-style: italic; color: var(--ink-mute); font-weight: 300; }
.tcard p { color: var(--ink-mute); font-size: 0.92rem; line-height: 1.65; }

/* ============================ TESTIMONIAL / QUOTE ============================ */
.quote-section {
  padding: 160px 0;
  text-align: center;
  background:
    radial-gradient(1000px 600px at 50% 50%, rgba(232,161,58,0.1), transparent 70%),
    var(--bg);
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 14rem;
  line-height: 0.7;
  color: var(--saffron);
  font-style: italic;
  margin-bottom: -40px;
  display: block;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 1100px;
  margin: 0 auto;
}
.quote-text .h { color: var(--saffron); font-style: normal; font-weight: 500; }
.quote-attr {
  margin-top: 50px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================ CTA / CLOSER ============================ */
.closer {
  padding: 140px 0 100px;
  background: var(--paper);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.closer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.closer h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--bg);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.closer h2 .it { font-style: italic; color: var(--saffron-deep); }
.closer-side {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 32px;
}
.closer-side p { color: var(--ink-faint); font-size: 1.05rem; line-height: 1.7; }
.closer-side .label { color: var(--ink-faint); }
.closer-side .label::before { background: var(--saffron-deep); box-shadow: 0 0 0 4px rgba(184,117,32,.18); }
.closer .btn-ink:hover { background: var(--bg); color: var(--paper); }

.closer-flourish {
  position: absolute;
  bottom: -60px; right: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22rem;
  color: rgba(12,12,10,0.04);
  pointer-events: none;
}

/* ============================ FOOTER ============================ */
.footer {
  padding: 100px 0 30px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.footer-brand .it { font-style: italic; color: var(--saffron); }
.footer-brand p {
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 360px;
}

.fcol h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.fcol ul { list-style: none; }
.fcol ul li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--serif);
}
.fcol a:hover { color: var(--saffron); }
.fcol address {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-bottom: 14px;
}
.fcol .big {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .socials { display: flex; gap: 6px; }
.footer-bottom .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 13px;
  letter-spacing: 0;
  transition: all .35s var(--ease);
}
.footer-bottom .socials a:hover { background: var(--saffron); color: var(--bg); border-color: var(--saffron); }

/* ============================ PAGE HEADER ============================ */
.ph {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ph-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
}
.ph .crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 30px;
  display: flex; gap: 12px; align-items: center;
}
.ph .crumb a { color: var(--saffron); }
.ph h1 {
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.ph h1 .it { font-style: italic; color: var(--saffron); }
.ph p {
  color: var(--ink-mute);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 460px;
}

/* ============================ FORM ============================ */
.form-section { padding: 120px 0; }
.form-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
}
.form-aside h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 18px 0 24px;
  letter-spacing: -0.02em;
}
.form-aside h3 .it { font-style: italic; color: var(--saffron); }
.form-aside .info {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.form-aside .info-row {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.form-aside .info-row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.form-aside .info-row .val {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 50px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field select { background: var(--bg-elev); }
.field option { background: var(--bg-elev); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--saffron);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ============================ FAQ ============================ */
.faq-section { padding: 120px 0; background: var(--bg-elev); border-top: 1px solid var(--line); }
.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); cursor: pointer; transition: padding .4s var(--ease); }
.faq-item:hover { padding-left: 12px; }
.faq-q {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  gap: 24px;
}
.faq-q .plus {
  font-size: 1.4rem;
  color: var(--saffron);
  transition: transform .4s var(--ease);
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
  color: var(--ink-mute);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 0 28px; }

/* ============================ ANIMATIONS ============================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--slow), transform 1s var(--slow); }
.reveal.visible { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .hero-grid, .intro-head, .editorial-grid, .services-head, .gallery-head, .team-head, .closer-grid, .ph-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid, .pgrid, .steps, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 24px var(--gut);
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: inline-flex; }
  .hero-right { height: 60vh; }
  .ggrid { grid-template-columns: repeat(6, 1fr); }
  .gitem.tall, .gitem.wide, .gitem.sq, .gitem.lg, .gitem.sm { grid-column: span 3; aspect-ratio: 1/1; }
  .svc { grid-template-columns: 50px 1fr 60px; }
  .svc-desc { display: none; }
}

@media (max-width: 640px) {
  .intro-grid, .pgrid, .steps, .team-grid, .form-row { grid-template-columns: 1fr; }
  .ggrid { grid-template-columns: 1fr 1fr; }
  .gitem.tall, .gitem.wide, .gitem.sq, .gitem.lg, .gitem.sm { grid-column: span 1; aspect-ratio: 1/1; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-cta .btn { display: none; }
  .hero { padding-top: 40px; }
  .hero-circle { width: 110px; height: 110px; }
  .hero-circle .inner { font-size: 11px; }
  .marquee { padding: 30px 0; }
  .intro, .services, .editorial, .principles, .gallery, .process, .team, .quote-section, .closer, .form-section, .faq-section { padding: 80px 0; }
  .quote-mark { font-size: 7rem; margin-bottom: -16px; }
}
