@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600&display=swap');

:root{
  --bone:#F4F1E2;
  --rawhide:#513229;
  --denim:#4A6B82;
  --linen:#e8ddd0;
  --stripe:#b8ccd8;
}

*{box-sizing:border-box; margin:0; padding:0;}

html{scroll-behavior:smooth;}

body{
  font-family:'Inter', sans-serif;
  background:var(--bone);
  color:var(--rawhide);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

h1, h2, h3{
  font-family:'Playfair Display', serif;
  font-weight:800;
  line-height:1.15;
  color:var(--rawhide);
}

h1{font-size:clamp(2.2rem, 5vw, 3.6rem);}
h2{font-size:clamp(1.7rem, 3.4vw, 2.4rem);}
h3{font-size:1.3rem;}

p{max-width:65ch;}

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

.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 1.75rem;
}

/* ---------- Nav ---------- */
header.site-header{
  border-bottom:1px solid var(--linen);
  background:var(--bone);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:1rem 1.75rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
}
.brand{
  display:flex;
  align-items:center;
  gap:0.65rem;
  flex-shrink:0;
}
.brand svg{width:34px; height:34px; flex-shrink:0;}
.brand-text{display:flex; flex-direction:column; line-height:1;}
.brand-text .w{font-family:'Playfair Display', serif; font-weight:800; font-size:1.15rem; color:var(--rawhide);}
.brand-text .s{font-family:'Inter', sans-serif; font-size:0.62rem; letter-spacing:0.18em; color:var(--denim); font-weight:600;}

nav.main-nav{display:flex; align-items:center; gap:1.75rem; flex-wrap:wrap;}
nav.main-nav a{
  font-size:0.95rem;
  color:var(--rawhide);
  font-weight:500;
}
nav.main-nav a.active{color:var(--denim);}
nav.main-nav a:hover{color:var(--denim); text-decoration:none;}

.btn{
  display:inline-block;
  background:var(--denim);
  color:var(--bone);
  padding:0.75rem 1.5rem;
  border-radius:6px;
  font-weight:600;
  font-size:0.95rem;
  white-space:nowrap;
}
.btn:hover{background:var(--rawhide); color:var(--bone); text-decoration:none;}

.btn-outline{
  display:inline-block;
  border:1.5px solid var(--rawhide);
  color:var(--rawhide);
  padding:0.7rem 1.4rem;
  border-radius:6px;
  font-weight:600;
  font-size:0.95rem;
}
.btn-outline:hover{background:var(--rawhide); color:var(--bone); text-decoration:none;}

/* ---------- Layout building blocks ---------- */
section{padding:4.5rem 0;}
section.tight{padding:3rem 0;}

.stripe-rule{
  width:5px;
  height:56px;
  background:var(--stripe);
  border-radius:3px;
  margin-bottom:1.5rem;
}

.section-alt{background:var(--linen);}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.75rem;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:2.5rem;
  align-items:center;
}

@media(max-width:800px){
  .grid-3{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  nav.main-nav{display:none;}
}

.card{
  background:var(--bone);
  border:1px solid var(--linen);
  border-radius:10px;
  padding:2rem;
}

.stat{
  text-align:center;
}
.stat .num{
  font-family:'Playfair Display', serif;
  font-weight:800;
  font-size:2.4rem;
  color:var(--denim);
}
.stat .label{
  font-size:0.9rem;
  color:var(--rawhide);
  margin-top:0.35rem;
}

.hero{
  padding:5.5rem 0 4.5rem;
  position:relative;
  overflow:hidden;
}
.hero-stripes{
  position:absolute;
  top:0; right:0; bottom:0;
  width:120px;
  display:flex;
  gap:14px;
  padding-right:20px;
  opacity:0.55;
}
.hero-stripes span{width:6px; background:var(--stripe); border-radius:3px;}
.hero-stripes span:nth-child(1){height:60%; align-self:flex-end;}
.hero-stripes span:nth-child(2){height:100%;}
.hero-stripes span:nth-child(3){height:40%; align-self:flex-start;}

.tag-callout{
  background:var(--rawhide);
  color:var(--bone);
  border-radius:10px;
  padding:2.25rem;
}
.tag-callout h3{color:var(--bone);}
.tag-callout a{color:var(--stripe);}

.tier{
  border:1px solid var(--linen);
  border-radius:10px;
  padding:2rem;
  background:var(--bone);
  display:flex;
  flex-direction:column;
  gap:1rem;
}
.tier .baseline-tag{
  display:inline-block;
  font-size:0.72rem;
  letter-spacing:0.08em;
  color:var(--denim);
  font-weight:600;
  text-transform:uppercase;
}
.tier ul{padding-left:1.1rem;}
.tier li{margin-bottom:0.4rem; font-size:0.95rem;}

.baseline-banner{
  background:var(--linen);
  border-left:4px solid var(--denim);
  border-radius:0 8px 8px 0;
  padding:1.25rem 1.5rem;
  font-size:0.95rem;
}

footer.site-footer{
  background:var(--rawhide);
  color:var(--linen);
  padding:3rem 0 2rem;
  margin-top:3rem;
}
footer.site-footer a{color:var(--stripe);}
footer.site-footer .foot-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:2rem;
  margin-bottom:2rem;
}
footer.site-footer nav a{display:block; margin-bottom:0.5rem; color:var(--linen); font-size:0.9rem;}
footer.site-footer .fine{font-size:0.8rem; color:var(--stripe); border-top:1px solid rgba(232,221,208,0.2); padding-top:1.25rem;}

.img-placeholder{
  background:var(--linen);
  border:1.5px dashed var(--denim);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--denim);
  font-size:0.85rem;
  text-align:center;
  padding:1rem;
  min-height:220px;
}

form.contact-form{display:flex; flex-direction:column; gap:1.1rem; max-width:560px;}
form.contact-form label{font-size:0.9rem; font-weight:600; margin-bottom:0.35rem; display:block;}
form.contact-form input, form.contact-form select, form.contact-form textarea{
  width:100%;
  padding:0.75rem 0.9rem;
  border:1px solid var(--linen);
  border-radius:6px;
  font-family:'Inter', sans-serif;
  font-size:0.95rem;
  background:#fff;
  color:var(--rawhide);
}
form.contact-form textarea{min-height:130px; resize:vertical;}
form.contact-form input:focus, form.contact-form select:focus, form.contact-form textarea:focus{
  outline:2px solid var(--denim);
  outline-offset:1px;
}

.card svg.icon{width:30px; height:30px; stroke:var(--denim); fill:none; stroke-width:1.6; margin-bottom:0.75rem;}

.western-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1rem;
  padding:0.5rem 0;
}
.western-divider .line{flex:1; max-width:180px; height:1px; background:var(--linen);}
.western-divider svg{width:26px; height:26px; stroke:var(--denim); fill:none; stroke-width:1.6; flex-shrink:0;}

.testimonial-bubble{
  background:#fff;
  border:1px solid var(--linen);
  border-radius:16px;
  border-bottom-left-radius:4px;
  padding:1.1rem 1.4rem;
  max-width:340px;
  font-size:0.95rem;
  position:relative;
}
.testimonial-row{display:flex; flex-wrap:wrap; gap:1.5rem; justify-content:center; margin-top:2rem;}

details.faq-item{
  border-bottom:1px solid var(--linen);
  padding:1.1rem 0;
}
details.faq-item summary{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:1.05rem;
  cursor:pointer;
  color:var(--rawhide);
  list-style:none;
}
details.faq-item summary::-webkit-details-marker{display:none;}
details.faq-item summary::before{content:"+ "; color:var(--denim); font-weight:700;}
details.faq-item[open] summary::before{content:"\2212 ";}
details.faq-item p{margin-top:0.65rem; font-size:0.95rem;}

