@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink: #1a1212;
  --charcoal: #2a2420;
  --crimson: #8b1a1a;
  --crimson-mid: #a82828;
  --crimson-light: #c94040;
  --warm-white: #faf7f4;
  --warm-off: #f0ebe4;
  --warm-border: #e2d9d0;
  --white: #ffffff;
  --muted: #6e6560;
  /* direct aliases — no chaining */
  --slate: #2a2420;
  --gold: #8b1a1a;
  --gold-light: #c94040;
  --cream: #faf7f4;
  --cream-dark: #e2d9d0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(247,243,236,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--slate); letter-spacing: -0.02em; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--slate); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .has-drop { position: relative; }
.nav-links .has-drop:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--cream-dark);
  min-width: 220px; padding: .5rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 200;
}
.dropdown a { display: block; padding: .6rem 1.2rem; font-size: 0.82rem; text-transform: none; letter-spacing: 0; color: var(--slate); }
.dropdown a:hover { background: var(--cream); color: var(--gold); }
.nav-cta { background: var(--slate) !important; color: var(--cream) !important; padding: .55rem 1.3rem; border-radius: 2px; }
.nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--slate);
  padding: 8rem 7% 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(201,148,26,.04) 30px, rgba(201,148,26,.04) 31px);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.breadcrumb { font-size: 0.78rem; color: rgba(247,243,236,.5); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 1.05rem; font-weight: 300; color: rgba(247,243,236,.72); max-width: 560px; line-height: 1.8; margin-bottom: 2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-tag { font-size: 0.75rem; font-weight: 500; background: rgba(201,148,26,.15); border: 1px solid rgba(201,148,26,.3); color: var(--gold-light); padding: .3rem .9rem; border-radius: 2px; letter-spacing: 0.05em; }

/* ── SECTIONS ── */
section.content { padding: 5rem 7%; }
section.content.alt { background: var(--white); }
.section-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson); margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.section-label::after { content: ''; display: block; height: 1px; width: 32px; background: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--slate); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.section-lead { font-size: 1rem; font-weight: 300; color: var(--muted); max-width: 620px; line-height: 1.8; margin-bottom: 3rem; }

/* ── CONTENT GRID ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; cursor: pointer; gap: 1rem; }
.faq-q h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--slate); line-height: 1.3; }
.faq-toggle { width: 28px; height: 28px; background: var(--cream-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: all .25s; color: var(--slate); }
.faq-a { display: none; padding-bottom: 1.3rem; font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.8; }
.faq-item.open .faq-toggle { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.faq-item.open .faq-a { display: block; }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--cream-dark); padding: 2rem; border-radius: 2px; transition: all .3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform .3s; }
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.card:hover::before { transform: scaleX(1); }
.card .icon { font-size: 1.6rem; margin-bottom: 1rem; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--slate); margin-bottom: .6rem; }
.card p { font-size: 0.87rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.card.dark { background: var(--slate); border-color: var(--slate); }
.card.dark h3 { color: var(--cream); }
.card.dark p { color: rgba(247,243,236,.6); }
.card.dark::before { background: var(--gold-light); }

/* ── INFOBOX ── */
.infobox { background: var(--cream); border-left: 4px solid var(--gold); padding: 1.5rem 2rem; margin: 2rem 0; }
.infobox p { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.infobox strong { color: var(--slate); font-weight: 500; }
.infobox.warning { border-color: #c0392b; }
.infobox.warning strong { color: #c0392b; }

/* ── STEPS ── */
.steps-list { display: flex; flex-direction: column; gap: 0; counter-reset: steps; }
.step { display: flex; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--cream-dark); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-num { width: 48px; height: 48px; background: var(--crimson); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--warm-white); flex-shrink: 0; }
.step-body h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; }
.step-body p { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.75; }

/* ── CTA BAND ── */
.cta-band { background: var(--crimson); padding: 4rem 7%; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--warm-white); margin-bottom: .8rem; }
.cta-band p { font-size: 1rem; font-weight: 300; color: rgba(250,247,244,.75); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.btn-dark { display: inline-block; background: var(--slate); color: var(--cream); padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; border-radius: 2px; transition: all .25s; }
.btn-dark:hover { background: var(--ink); }
.btn-outline { display: inline-block; background: transparent; color: var(--warm-white); border: 2px solid rgba(250,247,244,.6); padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; border-radius: 2px; transition: all .25s; margin-left: 1rem; }
.btn-outline:hover { background: rgba(250,247,244,.12); }

/* ── RELATED LINKS ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card { display: block; background: var(--cream); border: 1px solid var(--cream-dark); padding: 1.5rem; text-decoration: none; border-radius: 2px; transition: all .25s; }
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-card .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 500; margin-bottom: .4rem; }
.related-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--slate); line-height: 1.3; }

/* ── FOOTER ── */
footer { background: #111; color: rgba(247,243,236,.4); padding: 3rem 7%; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: rgba(247,243,236,.8); margin-bottom: .6rem; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.7; color: rgba(247,243,236,.4); max-width: 300px; }
footer h5 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: rgba(247,243,236,.5); margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
footer ul a { font-size: 0.85rem; font-weight: 300; color: rgba(247,243,236,.4); text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(247,243,236,.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: 0.78rem; font-weight: 300; }
.footer-bottom a { color: rgba(247,243,236,.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 5%; }
  .nav-links { display: none; }
  section.content { padding: 3.5rem 5%; }
  .two-col, .three-col, .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: 7rem 5% 4rem; }
  .btn-outline { margin-left: 0; margin-top: .8rem; }
}

/* ── IMAGES ── */
.img-full {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.img-full.tall { height: 520px; }
.img-full.short { height: 280px; }
.img-caption {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  padding: .5rem 0;
  letter-spacing: 0.03em;
}
.img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.img-duo img { width: 100%; height: 300px; object-fit: cover; }
@media (max-width: 900px) {
  .img-full { height: 260px; }
  .img-full.tall { height: 300px; }
  .img-duo { grid-template-columns: 1fr; }
}
