:root{
  --burgundy:#8a1b2e;
  --burgundy-dark:#6d1524;
  --gold:#b8862d;
  --gold-light:#e8d7b0;
  --cream:#faf6f2;
  --cream-border:#f0e9e4;
  --ink:#1a1a1a;
  --text:#2a2a2a;
  --text-2:#4b4540;
  --text-3:#8b7a70;
  --text-4:#b8a79b;
  --bg:#fff;
  --surface:#fff;
  --border:#f0e9e4;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Helvetica Neue','Helvetica','Arial',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

.serif{font-family:'Playfair Display','Georgia',serif}

.wrap{max-width:1080px;margin:0 auto;padding:0 24px;width:100%}
.wrap-narrow{max-width:720px;margin:0 auto;padding:0 24px;width:100%}
@media(max-width:700px){.wrap,.wrap-narrow{padding:0 16px}}

/* ─── HEADER ─── */
header.site{
  background:#fff;
  padding:24px 0 20px;
  text-align:center;
  border-bottom:1px solid var(--cream-border);
}
.brand{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:inherit;
}
.brand-mark{
  width:48px;
  height:48px;
  background:var(--burgundy);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:22px;
  font-family:'Playfair Display','Georgia',serif;
}
.brand-name{
  font-size:22px;
  font-weight:600;
  color:var(--ink);
  letter-spacing:0.01em;
  line-height:1;
  font-family:'Playfair Display','Georgia',serif;
}
.brand-sub{
  font-size:10px;
  color:var(--text-3);
  margin-top:8px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:500;
}

/* ─── HERO ─── */
.hero{
  background:var(--burgundy);
  color:#fff;
  padding:60px 0 54px;
  text-align:center;
}
.hero h1{
  font-size:clamp(28px,4vw,40px);
  font-weight:400;
  margin:0 0 32px 0;
  letter-spacing:0.01em;
  font-family:'Playfair Display','Georgia',serif;
  line-height:1.15;
}
.search-box{
  display:flex;
  max-width:580px;
  margin:0 auto;
  background:#fff;
  border-radius:2px;
  overflow:hidden;
}
.search-box input{
  flex:1;
  padding:14px 20px;
  border:none;
  font-size:15px;
  color:var(--ink);
  font-family:inherit;
  min-width:0;
  outline:none;
}
.search-box button{
  background:var(--ink);
  color:#fff;
  border:none;
  padding:14px 32px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.01em;
  cursor:pointer;
  font-family:inherit;
  transition:background .15s;
  flex-shrink:0;
}
.search-box button:hover{background:#000}

/* ─── INTRO TEXT BELOW HERO ─── */
.intro-block{
  padding:44px 24px 28px;
  text-align:center;
  max-width:720px;
  margin:0 auto;
}
.intro-block p{
  font-size:15px;
  color:var(--ink);
  line-height:1.75;
  margin-bottom:8px;
}
.intro-block .contact-line{
  font-size:14px;
  line-height:1.95;
  margin-top:14px;
}
.intro-block a{
  color:var(--gold);
  border-bottom:1px solid var(--gold);
  font-weight:500;
}
.intro-block a:hover{border-color:var(--burgundy);color:var(--burgundy)}

/* ─── CATEGORIES GRID (homepage) ─── */
.cat-section{padding:32px 0 60px}
.cat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px 32px;
  text-align:center;
}
@media(max-width:700px){.cat-grid{grid-template-columns:repeat(2,1fr);gap:36px 20px}}
@media(max-width:450px){.cat-grid{grid-template-columns:1fr}}

.cat-item{
  color:inherit;
  display:block;
  transition:transform .2s;
}
.cat-item:hover{transform:translateY(-3px)}
.cat-icon{
  width:88px;
  height:88px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
  color:var(--gold);
  font-size:32px;
  font-family:'Playfair Display','Georgia',serif;
  font-weight:400;
  transition:background .2s,color .2s;
}
.cat-item:hover .cat-icon{
  background:var(--gold);
  color:#fff;
}
.cat-name{
  font-size:16px;
  font-weight:600;
  color:var(--ink);
}
.cat-count{
  font-size:12px;
  color:var(--text-3);
  margin-top:4px;
}

/* ─── RECENT ANSWERS SECTION ─── */
.recent-section{
  background:var(--cream);
  padding:50px 0;
  border-top:1px solid var(--cream-border);
}
.section-label{
  font-size:11px;
  color:var(--text-3);
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:22px;
  text-align:center;
}
.answer-card{
  background:#fff;
  padding:26px 30px;
  border:1px solid var(--cream-border);
  margin-bottom:12px;
  border-radius:2px;
  display:block;
  color:inherit;
  transition:border-color .2s,transform .15s,box-shadow .15s;
}
.answer-card:hover{
  border-color:var(--burgundy);
  transform:translateY(-2px);
  box-shadow:0 4px 14px rgba(138,27,46,0.06);
}
@media(max-width:600px){.answer-card{padding:20px}}

.answer-meta{
  font-size:11px;
  color:var(--burgundy);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:10px;
}
.answer-title{
  font-size:clamp(18px,2.4vw,22px);
  font-weight:500;
  margin:0 0 10px 0;
  color:var(--ink);
  line-height:1.3;
  font-family:'Playfair Display','Georgia',serif;
  letter-spacing:0.005em;
}
.answer-excerpt{
  font-size:14px;
  color:var(--text-2);
  line-height:1.65;
  margin:0;
}

/* ─── ANSWER PAGE ─── */
.answer-page{
  background:#fff;
  padding:48px 0;
  max-width:780px;
  margin:0 auto;
}
.answer-page-head{
  padding:0 24px 32px;
  border-bottom:1px solid var(--cream-border);
  margin-bottom:32px;
}
.answer-page-meta{
  font-size:11px;
  color:var(--burgundy);
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:14px;
}
.answer-page-title{
  font-size:clamp(24px,4vw,34px);
  font-weight:500;
  color:var(--ink);
  line-height:1.2;
  font-family:'Playfair Display','Georgia',serif;
  margin-bottom:16px;
  letter-spacing:0.005em;
}
.answer-page-byline{
  font-size:13px;
  color:var(--text-3);
  font-style:italic;
}

.answer-body{
  padding:0 24px;
  font-size:17px;
  line-height:1.78;
  color:var(--text);
}
.answer-body h2{
  font-size:24px;
  font-weight:500;
  color:var(--ink);
  font-family:'Playfair Display','Georgia',serif;
  margin:36px 0 14px;
  letter-spacing:0.005em;
  line-height:1.25;
}
.answer-body h3{
  font-size:18px;
  font-weight:600;
  color:var(--ink);
  margin:24px 0 10px;
}
.answer-body p{margin-bottom:18px}
.answer-body strong{color:var(--ink);font-weight:600}
.answer-body ul,.answer-body ol{margin:14px 0 20px 22px}
.answer-body li{margin-bottom:8px}
.answer-body blockquote{
  border-left:3px solid var(--gold);
  padding:10px 0 10px 20px;
  margin:18px 0;
  color:var(--text-2);
  font-style:italic;
  font-family:'Playfair Display','Georgia',serif;
}
.answer-body a{color:var(--burgundy);border-bottom:1px solid var(--burgundy)}

/* ─── HERO IMAGE ─── */
.answer-hero-img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  margin:0 0 24px 0;
  max-height:380px;
}

/* ─── RELATED / FOOTER CTA ─── */
.answer-related{
  margin-top:44px;
  padding:28px 24px;
  background:var(--cream);
  border-top:1px solid var(--cream-border);
  border-bottom:1px solid var(--cream-border);
}
.answer-related-label{
  font-size:11px;
  color:var(--text-3);
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:14px;
  text-align:center;
}
.answer-related-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}
.related-card{
  background:#fff;
  padding:16px 20px;
  border:1px solid var(--cream-border);
  border-radius:2px;
  color:inherit;
  display:block;
  transition:border-color .15s;
}
.related-card:hover{border-color:var(--burgundy)}
.related-card .r-cat{
  font-size:10px;
  color:var(--burgundy);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:6px;
}
.related-card .r-title{
  font-size:15px;
  font-weight:500;
  color:var(--ink);
  font-family:'Playfair Display','Georgia',serif;
  line-height:1.4;
  letter-spacing:0.005em;
}

/* ─── CATEGORY PAGE ─── */
.cat-page-head{
  padding:48px 0 32px;
  text-align:center;
  border-bottom:1px solid var(--cream-border);
  margin-bottom:36px;
}
.cat-page-crumb{
  font-size:11px;
  color:var(--gold);
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:8px;
}
.cat-page-head h1{
  font-size:clamp(28px,4vw,40px);
  font-weight:500;
  color:var(--ink);
  font-family:'Playfair Display','Georgia',serif;
  letter-spacing:0.01em;
  margin-bottom:10px;
}
.cat-page-head p{
  font-size:15px;
  color:var(--text-2);
  max-width:620px;
  margin:0 auto;
  line-height:1.7;
}

/* ─── GENERIC PAGE HEAD ─── */
.page-head{
  padding:44px 0 28px;
  text-align:center;
}
.page-head .crumb{
  font-size:11px;
  color:var(--gold);
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:8px;
}
.page-head h1{
  font-size:clamp(26px,3.6vw,36px);
  font-weight:500;
  color:var(--ink);
  font-family:'Playfair Display','Georgia',serif;
  letter-spacing:0.01em;
  line-height:1.2;
}
.page-head p{
  font-size:15px;
  color:var(--text-2);
  max-width:620px;
  margin:14px auto 0;
  line-height:1.7;
}

/* ─── PROSE (legal / info pages) ─── */
.prose{
  max-width:680px;
  margin:0 auto 60px;
  padding:0 24px;
  font-size:16px;
  line-height:1.8;
  color:var(--text);
}
.prose h2{
  font-size:22px;
  font-weight:500;
  margin:32px 0 14px;
  color:var(--ink);
  font-family:'Playfair Display','Georgia',serif;
  letter-spacing:0.005em;
}
.prose p{margin-bottom:16px}
.prose ul,.prose ol{margin:12px 0 16px 22px}
.prose li{margin-bottom:7px}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--burgundy);border-bottom:1px solid var(--burgundy)}

/* ─── FORMS ─── */
.form-wrap{
  max-width:540px;
  margin:0 auto 60px;
  background:var(--cream);
  padding:32px;
  border:1px solid var(--cream-border);
  border-radius:2px;
}
.field{margin-bottom:18px}
.field label{
  display:block;
  font-size:12px;
  font-weight:600;
  color:var(--ink);
  margin-bottom:6px;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.field input,.field textarea,.field select{
  width:100%;
  padding:11px 14px;
  border:1px solid var(--cream-border);
  border-radius:2px;
  font-family:inherit;
  font-size:15px;
  background:#fff;
  color:var(--text);
  outline:none;
  transition:border-color .15s;
}
.field input:focus,.field textarea:focus{
  border-color:var(--burgundy);
}
.field textarea{
  resize:vertical;
  min-height:140px;
  line-height:1.55;
}
.btn{
  background:var(--ink);
  color:#fff;
  border:none;
  padding:12px 28px;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.04em;
  cursor:pointer;
  border-radius:2px;
  font-family:inherit;
  transition:background .15s;
  text-transform:uppercase;
}
.btn:hover{background:var(--burgundy)}

/* ─── EMPTY STATE ─── */
.empty-state{
  padding:4rem 1rem;
  text-align:center;
  color:var(--text-3);
  font-size:15px;
  font-family:'Playfair Display','Georgia',serif;
  font-style:italic;
}

/* ─── MAIN ─── */
main{flex:1;background:#fff}

/* ─── FOOTER ─── */
footer.site{
  background:var(--ink);
  color:var(--text-3);
  padding:36px 0 20px;
  margin-top:auto;
}
.foot-nav{
  display:flex;
  justify-content:center;
  gap:32px;
  font-size:13px;
  color:#d1c9c2;
  font-weight:500;
  margin-bottom:24px;
  flex-wrap:wrap;
  letter-spacing:0.02em;
}
.foot-nav a{transition:color .15s}
.foot-nav a:hover{color:var(--gold)}
.foot-bottom{
  border-top:1px solid #2a2a2a;
  padding-top:16px;
  display:flex;
  justify-content:space-between;
  font-size:11px;
  color:#6b5f56;
  flex-wrap:wrap;
  gap:8px;
}
.foot-bottom a{color:#6b5f56}
.foot-bottom a:hover{color:var(--gold)}
@media(max-width:600px){
  .foot-nav{gap:20px;font-size:12px}
  .foot-bottom{justify-content:center;text-align:center}
}
