@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F9F3E8;
  --charcoal: #1C1C1A;
  --ember:    #B5421A;
  --gold:     #C89B3C;
  --smoke:    #4A4540;
  --dim:      rgba(249, 243, 232, 0.55);
}

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
  position: sticky;
  top: 0;
  background: var(--charcoal);
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 300px;
}

.divider-line {
  height: 1px;
  width: 80px;
  background: var(--gold);
  opacity: 0.4;
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--ember);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(249, 243, 232, 0.3);
  text-transform: uppercase;
  line-height: 2;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 1.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200, 155, 60, 0.08);
}

.footer-legal a {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 243, 232, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold); }

/* ════════════════════════════════
   HOME PAGE
   ════════════════════════════════ */

/* Hero */
.home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(181, 66, 26, 0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(200, 155, 60, 0.03) 60px,
      rgba(200, 155, 60, 0.03) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(200, 155, 60, 0.03) 60px,
      rgba(200, 155, 60, 0.03) 61px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  position: relative;
}

.home-hero h1 .accent { color: var(--ember); }

.home-hero h1 .outline {
  -webkit-text-stroke: 1px var(--cream);
  color: transparent;
}

.hero-tagline {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ember);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--ember);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: transparent;
  color: var(--ember);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(249, 243, 232, 0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Features strip */
.features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(200, 155, 60, 0.15);
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.feature-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(200, 155, 60, 0.15);
}

.feature-item:last-child { border-right: none; }

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  display: block;
}

.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Signature section */
.signature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.sig-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(200, 155, 60, 0.12);
}

.sig-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}

.sig-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.sig-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.sig-text p {
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 2rem;
}

.sig-visual {
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sig-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(200, 155, 60, 0.04) 20px,
    rgba(200, 155, 60, 0.04) 21px
  );
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(200, 155, 60, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}

/* Reserve band */
.reserve-band {
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200, 155, 60, 0.1);
}

.reserve-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reserve-band p {
  font-size: 0.82rem;
  color: var(--dim);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* ════════════════════════════════
   MENU PAGE
   ════════════════════════════════ */

.menu-hero {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.menu-hero::before {
  content: '— The Menu —';
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.menu-hero h1 span { color: var(--ember); }

.menu-hero p {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 0.6rem;
}

/* Filter bar */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.8rem 2rem 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border-radius: 2px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  padding: 1.5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 155, 60, 0.12);
  padding: 1.5rem;
  transition: background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--ember);
  transition: height 0.3s;
}

.menu-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(200, 155, 60, 0.3);
}

.menu-card:hover::before { height: 100%; }

.card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.6rem;
}

.card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 400;
}

.card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ember);
  color: white;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
}

/* ════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════ */

.contact-hero {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.contact-hero::before {
  content: '— Get In Touch —';
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}

.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.contact-hero h1 span { color: var(--ember); }

.contact-hero p {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 0.6rem;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  gap: 5rem;
}

/* Info panel */
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.8rem;
}

.info-block p,
.info-block a {
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.9;
}

.info-block a {
  color: var(--gold);
  transition: opacity 0.2s;
  display: inline-block;
}

.info-block a:hover { opacity: 0.7; }

.info-divider {
  height: 1px;
  background: rgba(200, 155, 60, 0.15);
  width: 100%;
}

/* Form panel */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 155, 60, 0.2);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200, 155, 60, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(249, 243, 232, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 0.4rem;
}

/* ════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════ */

.about-hero {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.about-hero::before {
  content: '— Our Story —';
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.about-hero h1 span { color: var(--ember); }

.about-hero p {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 0.6rem;
}

/* Origin split */
.about-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
}

.origin-visual {
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(200, 155, 60, 0.12);
}

.origin-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(200, 155, 60, 0.04) 20px,
    rgba(200, 155, 60, 0.04) 21px
  );
}

.origin-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.origin-text .sig-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.2rem;
}

.origin-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.origin-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.origin-text p {
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.95;
  margin-bottom: 1rem;
  max-width: 420px;
}

/* Values grid */
.values-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.values-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.values-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.values-heading p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(200, 155, 60, 0.12);
}

.value-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(200, 155, 60, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(255, 255, 255, 0.05); }

.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(181, 66, 26, 0.25);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.75;
}

/* Team section */
.team-section {
  border-top: 1px solid rgba(200, 155, 60, 0.12);
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.team-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.team-heading p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(200, 155, 60, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s;
}

.team-card:hover { background: rgba(255, 255, 255, 0.05); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(181, 66, 26, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.team-card .team-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.9rem;
}

.team-card p {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.75;
}

/* CTA band */
.about-cta {
  border-top: 1px solid rgba(200, 155, 60, 0.12);
  text-align: center;
  padding: 5rem 2rem;
}

.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.about-cta p {
  font-size: 0.82rem;
  color: var(--dim);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════
   LEGAL / INFO PAGES (Privacy, Terms, Cookies, FAQ)
   ════════════════════════════════ */

.legal-hero {
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.15);
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.legal-hero h1 span { color: var(--ember); }

.legal-hero p {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-top: 0.6rem;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.95;
  margin-bottom: 0.9rem;
}

.legal-body ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.legal-body ul li {
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.9;
  padding-left: 1.2rem;
  position: relative;
}

.legal-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.75rem;
}

.legal-updated {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 243, 232, 0.2);
  margin-bottom: 2.5rem;
  display: block;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(200, 155, 60, 0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
  padding: 1.3rem 2rem 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
  position: relative;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--ember);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.86rem;
  color: var(--dim);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.3rem;
}
