/* ============================================================
   Maison Atelier — Luxury Manufacturing
   Static site — vanilla CSS only
   ============================================================ */

:root {
  --charcoal: #111111;
  --charcoal-soft: #1a1a1a;
  --ivory: #F7F4EE;
  --ivory-dim: #EDE8DE;
  --beige: #D6C5A4;
  --gold: #B89A6A;
  --gold-soft: #C9AE82;
  --line: rgba(17, 17, 17, 0.12);
  --line-dark: rgba(247, 244, 238, 0.14);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--ivory); }

/* ----------  Typography  ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 5vw, 4.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  max-width: 52ch;
}

/* ----------  Layout  ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

.section-head { max-width: 760px; margin-bottom: clamp(48px, 7vw, 96px); }

/* ----------  Header / Nav  ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), color 0.4s var(--ease);
  color: var(--ivory);
  mix-blend-mode: difference;
}

.site-header.scrolled {
  mix-blend-mode: normal;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--charcoal);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand span { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 36px; }

.nav a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  border: 1px solid currentColor;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: currentColor; color: var(--ivory); }
.site-header.scrolled .nav-cta:hover { color: var(--ivory); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  cursor: pointer;
  color: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}
.menu-toggle span:nth-child(2) { width: 16px; }

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    color: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease);
  }
  .nav a { font-size: 18px; letter-spacing: 0.18em; }
  .nav-open .nav { transform: translateY(0); }
  .nav-open .menu-toggle span:nth-child(1) { transform: translateY(3px) rotate(45deg); width: 24px; }
  .nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); width: 24px; }
}

/* ----------  Hero  ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  padding: 0 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
  transform: translateY(var(--parallax, 0));
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0.55) 0%,
    rgba(17, 17, 17, 0.25) 40%,
    rgba(17, 17, 17, 0.75) 100%
  );
}

.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  max-width: 14ch;
}

.hero h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 44ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(247, 244, 238, 0.82);
  margin-top: 8px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }

.hero-meta {
  position: absolute;
  bottom: 32px; right: var(--gutter);
  display: flex; flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.7);
}
.hero-meta::after {
  content: "";
  display: block;
  width: 1px; height: 60px;
  background: rgba(247, 244, 238, 0.4);
  margin-top: 10px;
  animation: pulse-line 2.4s var(--ease) infinite;
}
@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

/* ----------  Buttons  ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
  font-family: var(--sans);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

.btn-ghost:hover { background: var(--ivory); color: var(--charcoal); }

.btn-dark { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.btn-dark:hover { background: transparent; color: var(--charcoal); }

.btn .arrow { display: inline-block; transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ----------  Marquee bar  ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--ivory);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--charcoal);
  white-space: nowrap;
  opacity: 0.7;
}
.marquee span::after {
  content: "✦";
  margin-left: 64px;
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----------  Heritage  ---------- */

.heritage { background: var(--ivory); }

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.heritage-grid + .heritage-grid { margin-top: clamp(60px, 10vw, 140px); }
.heritage-grid.reverse > :first-child { order: 2; }

.heritage-grid figure { margin: 0; position: relative; overflow: hidden; }
.heritage-grid figure img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.heritage-grid figure:hover img { transform: scale(1.04); }

.heritage-text h2 { margin-bottom: 28px; }
.heritage-text .lead { margin-bottom: 24px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat-row .num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  display: block;
  color: var(--charcoal);
}
.stat-row .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  display: block;
}

@media (max-width: 768px) {
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-grid.reverse > :first-child { order: 0; }
  .stat-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ----------  Expertise  ---------- */

.expertise { background: var(--charcoal); color: var(--ivory); }
.expertise .eyebrow { color: var(--gold-soft); }
.expertise .eyebrow::before { background: var(--gold-soft); }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  isolation: isolate;
}
.exp-card .bg {
  position: absolute; inset: 0;
  z-index: -1;
  transition: transform 1.4s var(--ease), filter 0.8s var(--ease);
  filter: brightness(0.55);
}
.exp-card .bg img { width: 100%; height: 100%; object-fit: cover; }
.exp-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 40%, rgba(17,17,17,0.85) 100%);
}
.exp-card:hover .bg { transform: scale(1.08); filter: brightness(0.7); }

.exp-card .num {
  position: absolute; top: 24px; left: 32px;
  font-family: var(--display); font-style: italic;
  color: var(--gold-soft); font-size: 14px;
  letter-spacing: 0.1em;
}
.exp-card h3 {
  color: var(--ivory);
  margin: 0;
  transform: translateY(8px);
  transition: transform 0.6s var(--ease);
}
.exp-card p {
  color: rgba(247,244,238,0.75);
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.exp-card .body { position: relative; }
.exp-card:hover h3 { transform: translateY(0); }
.exp-card:hover p { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .expertise-grid { grid-template-columns: 1fr; } .exp-card { aspect-ratio: 5 / 4; } }

/* ----------  Craftsmanship  ---------- */

.craft { background: var(--ivory); }
.craft-hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.craft-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s linear; }
.craft-hero:hover img { transform: scale(1.06); }

.craft-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.craft-list > div {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.craft-list > div:last-child { border-right: 0; padding-right: 0; }
.craft-list .step {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  display: block;
  margin-bottom: 14px;
}
.craft-list h4 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 12px;
}
.craft-list p { font-size: 14px; color: rgba(17,17,17,0.7); margin: 0; }

@media (max-width: 880px) { .craft-list { grid-template-columns: 1fr 1fr; } .craft-list > div:nth-child(2) { border-right: 0; } .craft-list > div { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .craft-list { grid-template-columns: 1fr; } .craft-list > div { border-right: 0; } }

/* ----------  Why Choose Us  ---------- */

.values { background: var(--ivory-dim); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value {
  background: var(--ivory-dim);
  padding: 48px 32px;
  transition: background 0.5s var(--ease);
}
.value:hover { background: var(--ivory); }
.value .ico {
  width: 40px; height: 40px;
  margin-bottom: 28px;
  color: var(--gold);
}
.value h4 { font-family: var(--display); font-size: 1.4rem; margin: 0 0 12px; }
.value p { font-size: 14px; color: rgba(17,17,17,0.7); margin: 0; line-height: 1.6; }

@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

/* ----------  Partnerships  ---------- */

.partners { background: var(--ivory); text-align: center; }
.partners .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.partners .eyebrow::before { display: inline-block; }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.logo-wall .logo {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.04em;
  color: rgba(17,17,17,0.55);
  transition: color 0.4s var(--ease), background 0.4s var(--ease);
  min-height: 130px;
}
.logo-wall .logo:hover { color: var(--charcoal); background: var(--ivory-dim); }

.partner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: clamp(64px, 9vw, 120px);
  text-align: left;
}
.partner-stats .num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  display: block;
  line-height: 1;
}
.partner-stats .num .accent { color: var(--gold); }
.partner-stats .lbl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(17,17,17,0.6); margin-top: 14px; display: block;
}

@media (max-width: 880px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } .partner-stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .logo-wall { grid-template-columns: 1fr 1fr; } }

/* ----------  Sustainability  ---------- */

.sustain { background: var(--charcoal); color: var(--ivory); position: relative; overflow: hidden; }
.sustain::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../images/sustain.jpg");
  background-size: cover; background-position: center;
  opacity: 0.18;
  filter: contrast(1.1);
}
.sustain > .container { position: relative; }
.sustain .eyebrow { color: var(--gold-soft); }
.sustain .eyebrow::before { background: var(--gold-soft); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 7vw, 80px);
}
.cert {
  border: 1px solid var(--line-dark);
  padding: 36px 28px;
  background: rgba(247, 244, 238, 0.03);
  backdrop-filter: blur(6px);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.cert:hover { background: rgba(184, 154, 106, 0.08); border-color: var(--gold); }
.cert .tag {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 18px; display: block;
}
.cert h4 { font-family: var(--display); font-size: 1.5rem; margin: 0 0 10px; color: var(--ivory); }
.cert p { font-size: 14px; color: rgba(247,244,238,0.7); margin: 0; }

@media (max-width: 880px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .cert-grid { grid-template-columns: 1fr; } }

/* ----------  Timeline  ---------- */

.timeline { background: var(--ivory); overflow: hidden; }
.timeline-scroll {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 var(--gutter) 24px;
  margin: 0 calc(var(--gutter) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.timeline-scroll::-webkit-scrollbar { height: 4px; }
.timeline-scroll::-webkit-scrollbar-track { background: var(--line); }
.timeline-scroll::-webkit-scrollbar-thumb { background: var(--gold); }

.milestone {
  flex: 0 0 clamp(280px, 28vw, 380px);
  scroll-snap-align: start;
  border-top: 1px solid var(--charcoal);
  padding: 28px 0 0;
  position: relative;
}
.milestone::before {
  content: "";
  position: absolute; top: -5px; left: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
}
.milestone .year {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  display: block; margin-bottom: 12px;
}
.milestone h4 { font-family: var(--display); font-size: 1.3rem; margin: 0 0 10px; }
.milestone p { font-size: 14px; color: rgba(17,17,17,0.7); margin: 0; }

/* ----------  Leadership  ---------- */

.leadership { background: var(--ivory-dim); }
.leadership-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.leadership figure { margin: 0; overflow: hidden; }
.leadership figure img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.2) sepia(0.05);
}
.leadership blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.35;
  font-weight: 300;
}
.leadership blockquote::before {
  content: "“";
  font-family: var(--display);
  font-size: 6rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--gold);
  margin-right: 8px;
}
.attribution {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.attribution .name { font-family: var(--display); font-size: 1.2rem; }
.attribution .role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 6px; display: block; }

@media (max-width: 880px) { .leadership-grid { grid-template-columns: 1fr; } }

/* ----------  Contact  ---------- */

.contact { background: var(--charcoal); color: var(--ivory); }
.contact .eyebrow { color: var(--gold-soft); }
.contact .eyebrow::before { background: var(--gold-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
}

.contact-info h2 { margin-bottom: 32px; }
.contact-info .lead { color: rgba(247,244,238,0.78); }
.contact-info dl { margin: 40px 0 0; display: grid; gap: 28px; }
.contact-info dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-family: var(--display); font-size: 1.2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 10px 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  transition: border-color 0.4s var(--ease);
  resize: none;
}
.field textarea { min-height: 120px; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--gold); }

.form-grid .btn { justify-self: start; margin-top: 8px; color: var(--ivory); }
.form-grid .btn-primary { color: var(--charcoal); }

@media (max-width: 880px) {
  .contact-grid, .form-grid { grid-template-columns: 1fr; }
}

/* ----------  Footer  ---------- */

footer {
  background: #0a0a0a;
  color: rgba(247,244,238,0.7);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 20px;
  font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a:hover { color: var(--ivory); }
.foot-brand .brand { color: var(--ivory); font-size: 28px; }
.foot-brand p { margin-top: 18px; font-family: var(--serif); font-style: italic; max-width: 36ch; }

.foot-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* ----------  Page hero (sub-pages)  ---------- */

.page-hero {
  padding: clamp(180px, 22vw, 260px) 0 clamp(80px, 10vw, 120px);
  background: var(--ivory-dim);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 14ch; }
.page-hero .lead { margin-top: 32px; }
.crumbs {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
}
.crumbs a:hover { color: var(--charcoal); }

/* ----------  Reveal animation  ---------- */

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
