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

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

:root {
  --terracotta:   #c8603a;
  --terracotta-dk:#a84828;
  --apricot:      #f0a06a;
  --apricot-lt:   #fcd5b0;
  --cream:        #fdf6ee;
  --cream-dk:     #f5ead8;
  --choco:        #3a1f10;
  --choco-mid:    #6b3a22;
  --sand:         #e8d5be;
  --white:        #ffffff;
  --text-body:    #3a1f10;
  --text-muted:   #7a5540;
  --text-light:   #fdf6ee;
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    28px;
  --radius-xl:    48px;
  --shadow-sm:    0 2px 8px rgba(58,31,16,.10);
  --shadow-md:    0 6px 24px rgba(58,31,16,.13);
  --shadow-lg:    0 16px 48px rgba(58,31,16,.16);
  --gap-xs:       clamp(0.5rem, 1vw, 0.75rem);
  --gap-sm:       clamp(0.75rem, 1.5vw, 1.25rem);
  --gap-md:       clamp(1.25rem, 3vw, 2rem);
  --gap-lg:       clamp(2rem, 5vw, 3.5rem);
  --gap-xl:       clamp(3rem, 7vw, 6rem);
  --font-body:    'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color .22s ease;
}
a:hover { color: var(--terracotta-dk); }

ul, ol { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--choco);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.2rem); font-family: var(--font-body); font-weight: 700; }

p { font-size: clamp(0.97rem, 1.5vw, 1.08rem); color: var(--text-body); max-width: 68ch; }
p + p { margin-top: .9em; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--choco-mid);
  font-weight: 600;
  max-width: 56ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--apricot-lt);
  padding: .28em .9em;
  border-radius: var(--radius-xl);
  margin-bottom: var(--gap-sm);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(.9rem, 1.4vw, 1rem);
  padding: .75em 1.9em;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .22s, color .22s, transform .18s, box-shadow .22s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  box-shadow: 0 4px 18px rgba(200,96,58,.32);
}
.btn-primary:hover {
  background: var(--terracotta-dk);
  border-color: var(--terracotta-dk);
  color: var(--white);
  box-shadow: 0 6px 26px rgba(200,96,58,.42);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-ghost {
  background: rgba(253,246,238,.18);
  color: var(--white);
  border-color: rgba(253,246,238,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-topbar {
  background: var(--choco);
  color: var(--apricot-lt);
  font-size: .82rem;
  font-weight: 600;
  padding-block: .45em;
}
.header-topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
.topbar-contact a {
  color: var(--apricot-lt);
  display: flex;
  align-items: center;
  gap: .35em;
}
.topbar-contact a:hover { color: var(--apricot); }
.topbar-tagline {
  color: var(--sand);
  font-style: italic;
  font-size: .78rem;
  white-space: nowrap;
}

.header-main .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  padding-block: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg { width: 38px; height: 38px; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--choco);
  letter-spacing: -.01em;
}
.logo-sub {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.6rem);
}
.main-nav a {
  font-weight: 700;
  font-size: .95rem;
  color: var(--choco);
  padding: .3em .1em;
  position: relative;
  text-decoration: none;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 2px;
  background: var(--terracotta);
  transition: right .25s ease;
}
.main-nav a:hover { color: var(--terracotta); }
.main-nav a:hover::after,
.main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--terracotta); }

.nav-cta { margin-left: var(--gap-xs); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--choco);
  border-radius: 2px;
  transition: transform .22s;
}

/* ── MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 820px) {
  .burger { display: flex; }
  .nav-cta { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1.5rem 1.8rem;
    box-shadow: var(--shadow-md);
    gap: 0;
    border-top: 2px solid var(--cream-dk);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: .65em 0;
    border-bottom: 1px solid var(--cream-dk);
    font-size: 1.05rem;
  }
  .main-nav a:last-child { border-bottom: none; }
  .header-topbar .topbar-tagline { display: none; }
}
@media (max-width: 480px) {
  .topbar-contact { gap: var(--gap-sm); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--choco) 0%, var(--choco-mid) 55%, #8b4a2a 100%);
  padding-block: clamp(3.5rem, 9vw, 7rem);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='.04'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: center;
}
.hero-text { max-width: 100%; }
.hero-text .eyebrow {
  background: rgba(240,160,106,.2);
  color: var(--apricot);
  border: 1px solid rgba(240,160,106,.3);
}
.hero-title {
  color: var(--cream);
  margin-block: var(--gap-sm) var(--gap-sm);
}
.hero-title em {
  color: var(--apricot);
  font-style: normal;
}
.hero-subtitle {
  color: var(--apricot-lt);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 50ch;
  margin-bottom: var(--gap-md);
}
.hero-buttons {
  display: flex;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}
.hero-image-slot {
  position: relative;
}
.hero-image-slot img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--choco-mid) 0%, var(--terracotta) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,246,238,.4);
  font-size: 5rem;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--apricot);
  color: var(--choco);
  border-radius: var(--radius-md);
  padding: .7em 1.1em;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.hero-badge strong { display: block; font-size: 1.5rem; }

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-slot { display: none; }
}

/* ── SECTION SPACING ─────────────────────────────────────── */
.section {
  padding-block: var(--gap-xl);
}
.section-alt {
  background: var(--cream-dk);
}
.section-dark {
  background: var(--choco);
  color: var(--text-light);
}
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: var(--apricot-lt); }

.section-header {
  margin-bottom: var(--gap-lg);
}
.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin-inline: auto;
}
.section-header h2 { margin-top: var(--gap-xs); }

/* ── CARDS ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--gap-md);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--sand);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--apricot);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--apricot-lt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.card h3 { font-size: 1.18rem; color: var(--choco); }
.card p { font-size: .96rem; color: var(--text-muted); max-width: none; }

/* ── STATS ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: var(--gap-md);
  text-align: center;
}
.stat-item {
  padding: clamp(1.2rem, 3vw, 2rem) 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--apricot);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: .35em;
  display: block;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--terracotta) 0%, #b8522e 100%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band h2 { color: var(--white); margin-bottom: .5em; }
.cta-band p { color: rgba(253,246,238,.88); max-width: 52ch; margin-inline: auto; margin-bottom: var(--gap-md); }
.cta-buttons {
  display: flex;
  gap: var(--gap-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-sm);
  max-width: 780px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--sand);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--choco);
  padding: 1.2em 1.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  transition: background .2s;
}
.faq-question:hover { background: var(--cream-dk); }
.faq-question .faq-arrow {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--apricot-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
  font-size: .7rem;
  color: var(--terracotta);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--apricot); }
.faq-answer {
  display: none;
  padding: 0 1.5em 1.3em;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTENT SECTION ─────────────────────────────────────── */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-lg);
  align-items: start;
}
.content-block.full { grid-template-columns: 1fr; max-width: 780px; }
.content-body { display: flex; flex-direction: column; gap: var(--gap-sm); }

@media (max-width: 680px) {
  .content-block { grid-template-columns: 1fr; }
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4em;
  margin-bottom: var(--gap-sm);
}
.form-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--choco);
}
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--choco);
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: .7em 1em;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200,96,58,.15);
}
.form-textarea { resize: vertical; min-height: 110px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--sand);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--choco);
  color: var(--apricot-lt);
}
.footer-main {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--gap-lg);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo .logo-name { color: var(--cream); font-size: 1.25rem; }
.footer-logo .logo-sub { color: var(--apricot); }
.footer-brand p {
  font-size: .92rem;
  color: var(--sand);
  max-width: 28ch;
  line-height: 1.65;
}
.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--apricot-lt);
  font-size: .9rem;
  transition: background .2s, color .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.social-link:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--apricot);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  color: var(--sand);
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover {
  color: var(--apricot-lt);
  padding-left: .3em;
}

.footer-contact-list { display: flex; flex-direction: column; gap: .7rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: var(--sand);
  line-height: 1.5;
}
.footer-contact-item a { color: var(--sand); }
.footer-contact-item a:hover { color: var(--apricot-lt); }
.contact-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.2rem;
}
.footer-bottom .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-sm);
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: var(--gap-md);
}
.footer-legal a {
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-legal a:hover { color: var(--sand); }

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

/* ── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--gap-sm); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-sm { margin-bottom: var(--gap-sm); }
.mb-md { margin-bottom: var(--gap-md); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dk); }
::-webkit-scrollbar-thumb { background: var(--apricot); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); } *{box-sizing:border-box} img,svg,video{max-width:100%;height:auto} 