/* ============================================================
   Chateau de Lis - shared stylesheet (tokens + chrome)
   Owned by the orchestrator. Page agents add page-scoped rules
   as an inline <style> block in their own page <head>, never here.
   ============================================================ */

:root {
  --cream: #f4efe6;
  --cream-2: #ede4d6;
  --cream-3: #e7dcc9;
  --dark: #211d19;
  --dark-2: #2c2620;
  --ink: #33302b;
  --ink-soft: #5b544c;
  --wine: #8a1c1c;
  --wine-dark: #6f1414;
  --gold: #a9834a;
  --line: #d8cdb8;
  --white: #ffffff;

  --font-script: "Pinyon Script", cursive;
  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "EB Garamond", "Cormorant Garamond", Georgia, serif;

  --maxw: 1200px;
  --radius: 2px;
  --shadow: 0 14px 40px rgba(33, 29, 25, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }

.section { padding: 70px 0; }
.section-sm { padding: 44px 0; }

.eyebrow {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 .6em;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.1;
  color: var(--gold);
}
.script-wine { color: var(--wine); }

.h-display {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  font-weight: 600;
  padding: 14px 34px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-wine { background: var(--wine); color: #fff; }
.btn-wine:hover { background: var(--wine-dark); color: #fff; box-shadow: 0 8px 22px rgba(138,28,28,.28); }

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

.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.75); }
.btn-outline-light:hover { background: #fff; color: var(--dark); }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand {
  text-align: center;
  padding: 16px 0 8px;
}
.brand a { color: var(--ink); text-decoration: none; }
.brand .brand-pre {
  display: block;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .4em;
  font-size: .62rem;
  color: var(--ink-soft);
  margin-bottom: -6px;
}
.brand .brand-name {
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  line-height: 1;
  color: var(--ink);
}
.main-nav { border-top: 1px solid var(--line); }
.main-nav ul {
  list-style: none;
  margin: 0; padding: 10px 12px;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 22px;
}
.main-nav a {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover { color: var(--wine); text-decoration: none; border-bottom-color: var(--wine); }
.main-nav a[aria-current="page"] { color: var(--wine); border-bottom-color: var(--wine); }

.nav-toggle { display: none; }

/* ---------- Footer ---------- */
.insta-band {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 46px 0;
}
.insta-band h3 {
  color: var(--cream);
  font-family: var(--font-serif);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
}
.site-footer {
  background: var(--dark-2);
  color: var(--cream);
  text-align: center;
  padding: 26px 0;
  font-size: .9rem;
}
.social-bar {
  display: flex; justify-content: center; gap: 20px;
  margin-bottom: 12px;
}
.social-bar a {
  color: var(--cream);
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(244,239,230,.4);
  border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.social-bar a:hover { background: var(--cream); color: var(--dark); text-decoration: none; }
.social-bar svg { width: 16px; height: 16px; fill: currentColor; }
.site-footer p { margin: 0; color: rgba(244,239,230,.8); }

/* ---------- Bands ---------- */
.band-dark { background: var(--dark); color: var(--cream); }
.band-dark h1, .band-dark h2, .band-dark h3, .band-dark h4, .band-dark h5, .band-dark h6 { color: var(--cream); }
.band-dark .eyebrow { color: rgba(244,239,230,.75); }
.band-cream-2 { background: var(--cream-2); }

/* Full-bleed image band: <img> needs explicit width+height (replaced element) */
.band-photo { position: relative; overflow: hidden; }
.band-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.photo-fixed { width: 100%; height: 100%; object-fit: cover; }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

figure { margin: 0; }

/* ---------- Accordion (FAQ) ---------- */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  padding: 16px 40px 16px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--wine); transition: transform .25s ease;
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-body { padding: 0 0 18px; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-wrap { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wine); box-shadow: 0 0 0 2px rgba(138,28,28,.12);
}
.hp-field { position: absolute; left: -9999px; overflow: hidden; width: 1px; height: 1px; }
.form-note { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Motion (plain CSS; content always ends visible) ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
/* Applied directly to elements: the animation always runs, so the
   element always ends visible even if nothing else executes. */
.reveal   { animation: fadeUp .9s ease both; }
.reveal-2 { animation: fadeUp .9s ease .15s both; }
.reveal-3 { animation: fadeUp .9s ease .3s both; }
.fade-in  { animation: fadeIn 1.1s ease both; }
.hero-zoom { animation: zoomIn 1.4s ease both; }

.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform .6s ease; }
.hover-zoom:hover img { transform: scale(1.06); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .main-nav ul { gap: 4px 16px; }
  .main-nav a { font-size: .72rem; }
}
@media (max-width: 640px) {
  body { font-size: 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
