/* ============================================================
   Elite Arts & Crafts — Luxury edition
   Obsidian · champagne · gold · Bodoni Moda
   ============================================================ */

:root {
  /* Palette - Earthy heritage */
  --obsidian:    #2A2419;   /* deep umber (primary dark bg) */
  --onyx:        #3A3024;   /* cocoa (alt dark) */
  --graphite:    #4A3D2A;
  --champagne:   #F5EFE4;   /* cream (primary light bg) */
  --pearl:       #FBF7EE;   /* ivory (alt light bg) */
  --ivory:       #EBE3D2;   /* soft cream (text on dark) */
  --ink:         #2A2419;
  --ink-soft:    #4A3D2A;
  --ink-muted:   #7A6D5A;
  --ink-line:    #C7BB9C;

  --gold:        #6B8E3D;   /* leaf green (primary accent, from logo) */
  --gold-deep:   #4A6B2A;   /* deep leaf */
  --bronze:      #8A7A4A;
  --leaf:        #7CB342;

  --hair-dark:   rgba(245, 239, 228, 0.20);
  --hair-light:  rgba(42, 36, 25, 0.18);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--obsidian);
  color: var(--ivory);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }

/* Type */
.eyebrow {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--muted { color: var(--ink-muted); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
h2 { font-size: clamp(46px, 6vw, 104px); }

p { max-width: 60ch; }

.shell { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 760px) { .shell { padding: 0 20px; } }
section { padding: 140px 0; position: relative; }
@media (max-width: 760px) { section { padding: 64px 0; } }

/* Light/dark section helpers */
.sect--light { background: var(--champagne); color: var(--ink); }
.sect--dark  { background: var(--obsidian); color: var(--ivory); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(42, 36, 25, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
}
.nav.scrolled {
  background: rgba(42, 36, 25, 0.92);
  border-bottom-color: var(--hair-dark);
}
.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ivory); white-space: nowrap; }
.nav__logo { height: 38px; width: auto; }
.nav__word { display: flex; flex-direction: column; line-height: 1.05; }
.nav__word b {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.nav__word span {
  font-family: "Tenor Sans", serif;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--gold);
  margin-top: 3px;
  text-transform: uppercase;
}
.nav__links { display: flex; gap: 32px; white-space: nowrap; }
.nav__links a {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  padding: 4px 0;
  transition: color 180ms var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--obsidian);
  background: var(--gold);
  padding: 11px 20px;
  border-radius: 999px;
  transition: all 180ms var(--ease);
}
.nav__cta:hover { background: var(--ivory); color: var(--obsidian); }
.nav__links-cta { display: none; }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 240ms var(--ease), opacity 180ms var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 1080px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__links-cta { display: inline-flex; }
  .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100vh;
    height: 100dvh;
    width: min(360px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 96px 32px 40px;
    background: #1c1811;
    border-left: 1px solid var(--hair-dark);
    transform: translateX(100%);
    transition: transform 360ms var(--ease);
    z-index: 55;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
  }
  .nav__links-cta {
    margin-top: 20px;
    align-self: stretch;
    text-align: center;
    color: var(--obsidian);
    background: var(--gold);
    padding: 14px 20px !important;
    border-radius: 999px;
    border-bottom: 0 !important;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { background: #1c1811; }
}
@media (max-width: 900px) { .nav { padding: 14px 24px; } .nav__logo { height: 32px; } .nav__word { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--ivory);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,11,0.72) 0%, rgba(14,13,11,0.25) 30%, rgba(14,13,11,0.55) 70%, rgba(14,13,11,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%;
}
.hero__eyebrow-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 140px 0 28px;
  border-bottom: 1px solid var(--hair-dark);
  margin-bottom: 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 760px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__title { font-size: clamp(52px, 14vw, 80px) !important; }
  .hero__aside .num { font-size: 48px; }
  .hero__eyebrow-row { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 100px; }
  .hero__caption { flex-direction: column; gap: 8px; margin-top: 40px; }
}
.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(72px, 11vw, 200px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero__title em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
}
.hero__title .amp {
  font-style: italic; font-weight: 300;
  color: var(--gold);
  opacity: 0.85;
}
.hero__aside { padding-bottom: 16px; }
.hero__aside p {
  font-size: 17px;
  color: rgba(243,238,227,0.82);
  line-height: 1.55;
  max-width: 36ch;
}
.hero__aside .num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  color: var(--gold);
}

.hero__caption {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--hair-dark);
  color: rgba(243,238,227,0.7);
}
.hero__caption b {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400; font-style: italic;
  font-size: 20px;
  color: var(--ivory);
  margin-right: 12px;
}
.hero__caption span {
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ---------- Section header ---------- */
.sect-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 48px;
  padding-bottom: 56px;
  margin-bottom: 72px;
  border-bottom: 1px solid currentColor;
}
@media (max-width: 760px) {
  .sect-head { flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 32px; margin-bottom: 48px; }
  .sect-head__meta { text-align: left; }
  h2 { font-size: clamp(36px, 9vw, 56px); }
}
.sect--light .sect-head { border-bottom-color: var(--hair-light); }
.sect--dark  .sect-head { border-bottom-color: var(--hair-dark); }

.sect-head__tag { display: flex; gap: 12px; align-items: center; }
.sect-head__tag::before {
  content: ""; width: 28px; height: 1px;
  background: var(--gold);
}
.sect-head h2 { max-width: 16ch; }
.sect-head__meta {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  min-width: 120px;
}
.sect--dark .sect-head__meta { color: rgba(243,238,227,0.55); }

.accent { color: var(--gold); font-style: italic; font-weight: 400; }

/* ---------- About ---------- */
.about__body {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 760px) {
  .about__body { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { grid-template-columns: 1fr; }
  .about__photo .small { aspect-ratio: 16 / 10; }
}
.about__lede {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 22ch;
}
.about__lede em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.about__copy { display: flex; flex-direction: column; gap: 22px; }
.about__copy p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; }

.about__photo {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.about__photo figure { position: relative; overflow: hidden; border-radius: 2px; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__photo .big { aspect-ratio: 16 / 10; }
.about__photo .small { aspect-ratio: 4 / 5; }
.about__photo figcaption {
  position: absolute; left: 20px; bottom: 16px;
  font-family: "Tenor Sans", serif;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair-light);
  border-bottom: 1px solid var(--hair-light);
}
.stat {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--hair-light);
  display: flex; flex-direction: column; gap: 6px;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 5.5vw, 92px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat__num em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.stat__num sup { font-size: 0.38em; vertical-align: top; margin-left: 6px; color: var(--gold-deep); font-style: italic; }
.stat__label {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 10px;
}
.stat__sub { font-size: 14px; color: var(--ink-muted); line-height: 1.45; margin-top: 4px; }

@media (max-width: 900px) {
  .about__body { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hair-light); }
}

/* ---------- Capability (dark) ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair-dark);
  border-top: 1px solid var(--hair-dark);
  border-bottom: 1px solid var(--hair-dark);
}
.cap {
  background: var(--obsidian);
  padding: 0 0 40px;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.cap__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}
.cap__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 700ms var(--ease);
}
.cap:hover .cap__img img { transform: scale(1.03); }

/* Ornamental variant - card without photography (matches other tiles' aspect) */
.cap--noimg { background: linear-gradient(180deg, #1a1816 0%, #0e0d0b 100%); }
.cap__ornament {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  color: var(--gold);
  position: relative;
  border-bottom: 1px solid var(--hair-dark);
}
.cap__ornament::before {
  content: "METAL";
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(201, 169, 110, 0.55);
}
.cap__ornament svg {
  opacity: 0.85;
  transition: transform 700ms var(--ease);
}
.cap--noimg:hover .cap__ornament svg { transform: rotate(45deg); }
.cap__body { padding: 36px 30px 0; display: flex; flex-direction: column; gap: 12px; }
.cap__num {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
.cap__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ivory);
}
.cap__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.cap__desc { font-size: 15px; color: rgba(243,238,227,0.68); line-height: 1.6; }

@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: 1fr; } .cap { min-height: auto; } }

/* ---------- Craft showcase (light) ---------- */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 18px;
}
.craft-tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: var(--ivory);
  cursor: default;
  transition: transform 400ms var(--ease);
}
.craft-tile:hover { transform: translateY(-4px); }
.craft-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms var(--ease);
}
.craft-tile:hover img { transform: scale(1.04); }
.craft-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 48%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.craft-tile__label {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 6px;
}
.craft-tile__label b {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.craft-tile__label span {
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
  color: var(--gold);
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.row-2 { grid-row: span 2; }
.row-3 { grid-row: span 3; }
@media (max-width: 900px) {
  .craft-grid { grid-auto-rows: 190px; }
  .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: span 12; }
  .row-2, .row-3 { grid-row: span 1; }
}

.craft__footnote {
  margin-top: 48px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 300;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.craft__footnote em { color: var(--gold-deep); }

/* ---------- Why us (dark) ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair-dark);
  border-top: 1px solid var(--hair-dark);
  border-bottom: 1px solid var(--hair-dark);
}
.why__item {
  background: var(--obsidian);
  padding: 44px 34px 48px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
  transition: background 280ms var(--ease);
}
.why__item:hover { background: var(--onyx); }
.why__icon { color: var(--gold); margin-bottom: 8px; }
.why__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ivory);
}
.why__desc { font-size: 15px; color: rgba(243,238,227,0.72); line-height: 1.6; }
@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .why__grid { grid-template-columns: 1fr; } }

.certs {
  border-top: 1px solid var(--hair-dark);
  padding: 48px 0 0;
  margin-top: 56px;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap;
}
.certs__lead {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.cert {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 300;
  font-size: 34px;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.cert + .cert::before {
  content: "·"; margin-right: 32px; color: var(--gold); font-style: normal;
}

/* ---------- Awards (light) ---------- */
.awards__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 72px;
}
.award {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--hair-light);
}
.award:first-child, .award:nth-child(2) { border-top: none; }
.award__year {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300; font-style: italic;
  font-size: 44px;
  color: var(--gold-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.award__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.award__by { font-size: 14px; color: var(--ink-muted); font-style: italic; line-height: 1.55; }
@media (max-width: 760px) { .awards__list { grid-template-columns: 1fr; gap: 0; } }

/* ---------- Global (dark) ---------- */
.global__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 760px) {
  .global__body { grid-template-columns: 1fr; gap: 40px; }
  .countries { column-count: 1; }
  .global__stat { font-size: 80px; }
}
.global__lede {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 40px;
  max-width: 20ch;
}
.global__lede em { font-style: italic; color: var(--gold); font-weight: 400; }
.global__stat {
  font-family: "Cormorant Garamond", serif;
  font-size: 140px;
  font-weight: 300; font-style: italic;
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.global__stat-sub {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.7);
  margin-top: 14px;
}

.countries {
  column-count: 2;
  column-gap: 48px;
  list-style: none;
}
.countries li {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hair-dark);
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.countries li span {
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
}
@media (max-width: 900px) {
  .global__body { grid-template-columns: 1fr; gap: 40px; }
  .countries { column-count: 1; }
}

/* ---------- Team (light) ---------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.leader { display: flex; flex-direction: column; gap: 18px; }
.leader__portrait {
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #3a2f22 0%, #1a1511 100%);
}
.leader__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.88) contrast(1.02);
}
.leader__portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 62%, rgba(14,13,11,0.45) 100%);
}
.leader__initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300; font-style: italic;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.04em;
  z-index: 1;
}
.leader__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}
.leader__role {
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
@media (max-width: 900px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .team__grid { grid-template-columns: 1fr; } }

/* ---------- Contact (dark) ---------- */
.contact { padding: 0; position: relative; overflow: hidden; }
.contact__hero {
  position: relative;
  min-height: 560px;
  display: grid; place-items: center;
  padding: 120px 56px;
  overflow: hidden;
}
.contact__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.78);
}
.contact__hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,11,0.55) 0%, rgba(14,13,11,0.92) 100%);
}
.contact__headline {
  position: relative; z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 18ch;
  text-align: center;
  color: var(--ivory);
}
.contact__headline em { font-style: italic; color: var(--gold); font-weight: 400; }

.contact__body { padding: 96px 0 64px; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding: 56px 0 56px 72px;
  border-top: 1px solid var(--hair-dark);
  border-bottom: 1px solid var(--hair-dark);
}
.contact__col b {
  display: block;
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 400;
}
.contact__col p, .contact__col a {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--ivory);
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 6px;
  transition: color 180ms var(--ease);
}
.contact__col a:hover { color: var(--gold); }

.footer {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(243,238,227,0.48);
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer > :nth-child(1) { justify-self: start; padding-left: 40px; }
.footer > :nth-child(2) { justify-self: center; text-align: center; }
.footer > :nth-child(3) { justify-self: end; }
.footer__logo { height: 32px; width: auto; opacity: 0.7; }
@media (max-width: 760px) {
  .contact__grid { padding-left: 0; grid-template-columns: 1fr; gap: 36px; }
  .footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer > :nth-child(1), .footer > :nth-child(3) { justify-self: center; padding-left: 0; }
}

/* ---------- Products (archive preview, light) ---------- */
.products__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hair-light);
}
.products__note {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 48ch;
}
.products__note em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.products__sku {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.products__sku-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--gold);
}
.products__sku-num sup { font-size: 0.42em; vertical-align: top; margin-left: 4px; font-style: normal; }
.products__sku-lbl {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Collection row */
.collection { margin-bottom: 80px; }
.collection__head {
  display: flex;
  align-items: baseline;
  gap: 28px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair-light);
}
.collection__name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.collection__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 40ch;
}

/* Product cards grid */
.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-card {
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  padding: 20px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  box-shadow: 0 2px 12px rgba(42, 36, 25, 0.06);
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42, 36, 25, 0.12);
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA on light bg */
.products__cta {
  margin-top: 24px;
  padding: 48px 0 8px;
  border-top: 1px solid var(--hair-light);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.products__cta-head {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.2;
  color: var(--ink);
  max-width: 24ch;
  margin-bottom: 8px;
}
.products__cta-sub {
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.products__cta-link {
  font-family: "Tenor Sans", serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  padding: 18px 32px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  transition: all 200ms var(--ease);
  white-space: nowrap;
}
.products__cta-link:hover {
  background: var(--gold-deep);
  color: var(--champagne);
}
.products__cta-link span { display: inline-block; margin-left: 8px; transition: transform 200ms var(--ease); }
.products__cta-link:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
  .products__intro { flex-direction: column; align-items: flex-start; gap: 32px; }
  .products__sku { align-items: flex-start; }
  .collection__head { flex-direction: column; gap: 10px; }
  .collection__grid { grid-template-columns: repeat(2, 1fr); }
  .products__cta { grid-template-columns: 1fr; gap: 24px; }
  .products__cta-link { justify-self: start; }
}
@media (max-width: 540px) {
  .collection__grid { grid-template-columns: 1fr; }
}

/* ---------- Materials & Surfaces ---------- */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mat-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
  box-shadow: 0 2px 12px rgba(42, 36, 25, 0.08);
}
.mat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42, 36, 25, 0.14);
}
.mat-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 16px;
}
.mat-card figcaption {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(42, 36, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mat-card figcaption b {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.mat-card figcaption span {
  font-family: "Tenor Sans", serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.mat__footnote {
  margin-top: 48px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 400;
  font-size: 20px;
  color: var(--ink-muted);
  max-width: 72ch;
  line-height: 1.5;
}
.mat__footnote em { color: var(--gold-deep); font-weight: 500; }

@media (max-width: 900px) { .mat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mat-grid { grid-template-columns: 1fr; } }

/* ---------- Film ---------- */
.film__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--hair-dark);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8);
}
.film__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.film__caption {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243,238,227,0.55);
}
@media (max-width: 760px) {
  .film__caption { flex-direction: column; gap: 8px; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Contact Modal ---------- */
.cmodal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.cmodal[hidden] { display: none; }
.cmodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(12, 10, 6, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 280ms var(--ease);
}
.cmodal.is-open .cmodal__backdrop { opacity: 1; }
.cmodal__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--pearl);
  color: var(--ink);
  border-radius: 4px;
  padding: 48px 44px 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 320ms var(--ease), opacity 280ms var(--ease);
}
.cmodal.is-open .cmodal__panel { transform: none; opacity: 1; }
.cmodal__close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 180ms var(--ease), color 180ms var(--ease);
}
.cmodal__close:hover { background: var(--hair-light); color: var(--ink); }
.cmodal__head { margin-bottom: 28px; }
.cmodal__eyebrow {
  display: block;
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cmodal__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.cmodal__sub {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.cform { display: flex; flex-direction: column; gap: 18px; }
.cform__row { display: flex; flex-direction: column; gap: 6px; }
.cform__label {
  font-family: "Tenor Sans", serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cform__row input {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink-line);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 200ms var(--ease);
}
.cform__row input:focus { border-bottom-color: var(--gold); }
.cform__submit {
  margin-top: 14px;
  font-family: "Tenor Sans", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}
.cform__submit:hover:not(:disabled) { background: var(--obsidian); color: var(--ivory); }
.cform__submit:disabled { opacity: 0.7; cursor: not-allowed; }
.cform__status {
  font-size: 13px;
  min-height: 1.2em;
  text-align: center;
  margin-top: 4px;
}
.cform__status.is-ok { color: var(--gold-deep); }
.cform__status.is-err { color: #b14a3a; }

@media (max-width: 540px) {
  .cmodal { padding: 0; align-items: stretch; }
  .cmodal__panel {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    padding: 64px 24px 32px;
  }
  .cmodal__title { font-size: 26px; }
  .cmodal__close { top: 12px; right: 12px; }
}
