:root {
  --bg: #f7f2ea;          /* warm ivory */
  --surface: #fffdf9;
  --ink: #1c1815;         /* espresso near-black */
  --ink-soft: #6a6056;
  --gold: #c39a4d;
  --gold-deep: #a87f33;
  --gold-light: #e3c887;
  --wine: #5a2230;
  --dark: #14110f;
  --line: #e7ddcd;
  --shadow: 0 30px 60px -32px rgba(28, 24, 21, 0.5);
  --radius: 4px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h1 em, h2 em { font-style: italic; color: var(--gold-deep); }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); }

.container { width: min(var(--max), 90%); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.eyebrow.light { color: var(--gold-light); }

.rule { display: block; width: 64px; height: 1px; background: var(--gold); margin: 1.4rem auto 0; opacity: 0.8; }
.section-head .rule { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: var(--radius);
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #2a1f0e;
  box-shadow: 0 14px 30px -16px rgba(168, 127, 51, 0.8);
}
.btn-gold:hover { color: #2a1f0e; transform: translateY(-2px); box-shadow: 0 20px 38px -16px rgba(168, 127, 51, 0.95); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover { color: #fff; background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-small { padding: 0.6rem 1.2rem; font-size: 0.72rem; }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-logo { display: block; height: 40px; width: auto; }
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.3s;
}
.site-header:not(.scrolled) .brand-name { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  transition: color 0.3s;
}
.site-header:not(.scrolled) .nav-links > li > a { color: rgba(255,255,255,0.85); }
.site-header:not(.scrolled) .nav-links > li > a.btn { color: #2a1f0e; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; z-index: 60; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: #fff; margin: 6px 0; transition: 0.3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  animation: slowzoom 18s ease-in-out infinite alternate;
}
@keyframes slowzoom { to { transform: scale(1.14); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,15,0.62) 0%, rgba(20,17,15,0.42) 45%, rgba(20,17,15,0.82) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(90,34,48,0.35), transparent 60%);
}
.hero-inner { position: relative; text-align: center; padding: 7rem 0 5rem; max-width: 900px; }
.hero h1 { margin-bottom: 1.2rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero h1 em { color: var(--gold-light); }
.lead { font-size: 1.18rem; font-weight: 300; color: var(--ink-soft); max-width: 56ch; margin-inline: auto; }
.lead.light { color: rgba(255,255,255,0.92); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.8); font-size: 1.6rem; line-height: 1;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Sections */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { text-align: center; max-width: 42ch; margin: 0 auto 3.4rem; }
.section-dark { background: var(--dark); color: #f1e9dd; }
.section-dark h2 { color: #fff; }

/* SPARK */
.spark { background: var(--dark); color: #f1e9dd; overflow: hidden; }
.spark-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; min-height: 60vh; }
.spark-media { margin: 0; position: relative; }
.spark-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spark-copy { padding: clamp(3rem, 6vw, 6rem); display: flex; flex-direction: column; justify-content: center; }
.spark-copy h2 { color: #fff; }
.spark-copy p { color: #cdbfae; }
.signature {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 1.35rem; color: var(--gold-light); margin-top: 1rem;
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }
.step { text-align: center; padding: 1rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin-bottom: 1.4rem;
  border: 1px solid var(--gold); border-radius: 50%;
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem;
  color: var(--gold-deep); letter-spacing: 0.05em;
}
.step h3 { font-size: 1.7rem; }
.step p { color: var(--ink-soft); margin: 0; max-width: 32ch; margin-inline: auto; }

/* APPROACH */
.approach { background: var(--surface); border-block: 1px solid var(--line); }
.approach-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.approach-media { margin: 0; height: 100%; min-height: 520px; }
.approach-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-copy { padding: clamp(3rem, 6vw, 6rem); }
.approach-copy > p { color: var(--ink-soft); }
.approach-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.4rem; }
.approach-list li { display: flex; gap: 1rem; }
.approach-list strong { font-weight: 500; font-size: 1.05rem; letter-spacing: 0.02em; }
.approach-list p { margin: 0.2rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }
.dot { flex: none; width: 9px; height: 9px; margin-top: 0.6rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(195,154,77,0.18); }

/* FOUNDER */
.founder { background: var(--bg); padding: clamp(4.5rem, 9vw, 8rem) 0; }
.founder-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.founder-portrait { position: relative; }
.founder-portrait img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow); }
.founder-portrait::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(195,154,77,0.55); border-radius: var(--radius); pointer-events: none; z-index: 1; }
.founder-plate {
  position: absolute; left: 50%; bottom: -28px; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--line); border-top: 2px solid var(--gold);
  padding: 0.9rem 2.2rem; text-align: center; box-shadow: var(--shadow); white-space: nowrap;
}
.founder-sign { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.9rem; color: var(--ink); margin: 0; line-height: 1; }
.founder-role { display: block; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.66rem; color: var(--gold-deep); margin-top: 0.35rem; }
.founder-copy > p { color: var(--ink-soft); }
.founder-copy strong { color: var(--ink); font-weight: 500; }
.pull { margin: 1.8rem 0 0; padding-left: 1.4rem; border-left: 2px solid var(--gold); font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.5rem; line-height: 1.3; color: var(--gold-deep); }

/* QUOTE BAND */
.quote-band { background: var(--dark); color: #fff; text-align: center; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.quote-mark { font-family: "Cormorant Garamond", serif; color: var(--gold); font-size: 4rem; line-height: 0.2; margin: 0 0 1rem; }
.quote-text { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.6rem); max-width: 24ch; margin: 0 auto; line-height: 1.25; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pillar { padding: 2rem 1.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.pillar-no { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; color: var(--gold); letter-spacing: 0.1em; }
.pillar h3 { font-size: 1.55rem; margin: 0.4rem 0 0.5rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* BANNER */
.banner { position: relative; color: #fff; text-align: center; overflow: hidden; }
.banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,15,0.7), rgba(90,34,48,0.7)); }
.banner-inner { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; max-width: 760px; }
.banner h2 { color: #fff; margin-bottom: 2rem; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.g { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); }
.g img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.g::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,17,15,0.7)); }
.g figcaption {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 1; color: #fff;
  font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.25rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(8px); transition: 0.4s ease;
}
.g:hover img { transform: scale(1.06); }
.g:hover figcaption { opacity: 1; transform: none; }
.g1 { grid-column: span 4; grid-row: span 2; }
.g2 { grid-column: span 2; grid-row: span 1; }
.g3 { grid-column: span 2; grid-row: span 1; }
.g4 { grid-column: span 2; grid-row: span 1; }
.g5 { grid-column: span 2; grid-row: span 1; }
.g6 { grid-column: span 2; grid-row: span 1; }

/* JOIN */
.join { background: var(--surface); border-top: 1px solid var(--line); padding: clamp(4.5rem, 9vw, 8rem) 0; }
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.join-copy > p { color: var(--ink-soft); }
.join-points { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.join-points li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.join-points li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); }
.join-form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem; font: inherit; font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink); resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(195,154,77,0.18); }
.form-note { font-size: 0.92rem; color: var(--gold-deep); margin: 0.9rem 0 0; min-height: 1.2em; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.contact-list li { display: grid; grid-template-columns: 90px 1fr; align-items: baseline; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.contact-list span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.contact-list a, .contact-list address { color: #f1e9dd; font-style: normal; font-size: 1.05rem; }
.contact-list a:hover { color: var(--gold-light); }

/* Legal pages */
.page-hero { padding: 9rem 0 2rem; background: var(--dark); color: #f1e9dd; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero .lead { color: #cdbfae; }
.legal { background: var(--surface); }
.prose { max-width: 72ch; margin-inline: auto; }
.prose h2 { font-size: 1.7rem; margin-top: 2.4rem; }
.prose p { color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--dark); color: #cdbfae; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { display: block; width: 175px; height: auto; }
.footer-brand p { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.2rem; color: var(--gold-light); margin-top: 1.4rem; }
.footer-col h4 { font-family: "Jost", sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--gold-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { color: #cdbfae; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.12); padding: 1.6rem 0; font-size: 0.82rem; color: #8d8175; }
.footer-tag { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; }
.site-footer .footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 900px) {
  .spark-inner, .approach-inner, .join-inner, .contact-grid, .founder-inner { grid-template-columns: 1fr; }
  .spark-media, .approach-media { min-height: 340px; }
  .founder-portrait { max-width: 380px; margin: 0 auto 2.5rem; }
  .steps { grid-template-columns: 1fr; gap: 3rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g1 { grid-column: span 2; grid-row: span 2; }
  .g2, .g3, .g4, .g5, .g6 { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80%, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.4rem;
    background: var(--dark);
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links > li > a, .site-header:not(.scrolled) .nav-links > li > a { color: #f1e9dd; font-size: 0.95rem; }
  .nav-links .btn { margin-top: 0.5rem; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .pillars { grid-template-columns: 1fr; }
}
