/* Aboe Boead — grooming salon site. Self-hosted fonts, no external CDN. */
@import url('fonts.css');

:root {
  --bg: #F7F3EC;
  --ink: #23312B;
  --green: #4F7A62;
  --green-dark: #355945;
  --green-darker: #3F6650;
  --green-soft: #E4EEE6;
  --green-soft-border: #D6E3DA;
  --chip-hover: #CFE3D6;
  --beige: #EDE6DA;
  --beige-2: #F4EEE4;
  --border: #E9E1D4;
  --border-2: #E2DACD;
  --border-3: #D9CFBF;
  --border-4: #F0E9DD;
  --border-5: #DDD3C2;
  --blue-soft: #E3EEF3;
  --blue-text: #3F6376;
  --blue-photo-a: #E7EDF0;
  --blue-photo-b: #EFF4F6;
  --muted: #7A8A80;
  --muted-2: #8A9A90;
  --muted-3: #5A6A61;
  --muted-4: #4A5A51;
  --muted-5: #56655C;
  --text-2: #3A4B42;
  --text-3: #3E4E45;
  --text-4: #35443B;
  --sub: #A8B5AC;
  --dark: #23312B;
  --dark-hover: #3A4B42;
  --dark-text: #EDF2EE;
  --dark-card: rgba(255,255,255,0.06);
  --dark-card-border: rgba(255,255,255,0.1);
  --dark-star: #A8C7B4;
  --dark-author: #9BAFA2;
  --font-heading: 'Nunito', system-ui, sans-serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1220px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
::selection { background: #CFE3D6; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 800; margin: 0; }
button { font-family: inherit; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes slideIn { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }

.page-shell { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
main { flex: 1; }
.page-enter { animation: fadeUp 0.35s ease both; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--green); color: #EAF3ED; font-size: 13px; letter-spacing: 0.02em;
  padding: 9px 20px; display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; text-align: center;
}
.topbar .sep { opacity: 0.5; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(247,243,236,0.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-2);
}
.site-header .container { padding: 14px 28px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--green-soft); border: 1.5px solid var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.brand-mark span { width: 13px; height: 13px; border-radius: 50%; background: var(--green); display: block; }
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.brand-domain { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); letter-spacing: 0.08em; }

.nav-toggle {
  display: none; flex-direction: column; margin-left: auto; width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid var(--border-2);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle::before { margin-bottom: 4px; }
.nav-toggle::after { margin-top: 4px; }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; align-items: center; }
.nav-link {
  padding: 8px 13px; border-radius: 999px; font-size: 14.5px; font-weight: 600; cursor: pointer;
  color: var(--text-2); transition: background 0.15s, color 0.15s; border: none; background: none; display: inline-block;
}
.nav-link:hover, .nav-link:focus-visible { background: var(--green-soft); color: var(--text-2); }
.nav-link.is-active { background: var(--green); color: #fff; }

.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: var(--dark); color: var(--bg); font-weight: 700; font-size: 14px; cursor: pointer; flex-shrink: 0; border: none;
}
.cart-btn:hover { background: var(--dark-hover); }
.cart-count {
  background: var(--dark-star); color: var(--ink); border-radius: 999px; min-width: 21px; height: 21px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding: 0 6px;
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 16px; cursor: pointer; border: none; text-align: center; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-darker); color: #fff; }
.btn-ghost { background: #fff; border: 1.5px solid var(--border-3); color: var(--ink); }
.btn-ghost:hover { border-color: var(--green); color: var(--ink); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-hover); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 999px; }
.btn.is-disabled { opacity: 0.5; pointer-events: none; }
.chip {
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer; border: 1.5px solid var(--border-2);
  background: #fff; color: var(--text-2);
}
.chip:hover { background: var(--chip-hover); }
.chip.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted-2); margin-bottom: 12px; }
.eyebrow-lg { font-size: 13px; }

/* ---------- Hero ---------- */
.hero { max-width: var(--container); margin: 0 auto; padding: 64px 28px 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-soft); color: var(--blue-text); padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px; }
.hero h1 { font-size: 58px; line-height: 1.04; letter-spacing: -0.025em; margin: 0 0 20px; }
.hero h1 .accent { color: var(--green); }
.hero p.lead { font-size: 18.5px; line-height: 1.62; color: var(--muted-4); margin: 0 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-heading); font-size: 30px; font-weight: 800; color: var(--green); }
.hero-stats .label { font-size: 13.5px; color: var(--muted); }
.hero-media { position: relative; }
.photo-box { aspect-ratio: 4/5; border-radius: 28px; border: 1px solid var(--border-2); overflow: hidden; }
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -26px; left: -34px; background: #fff; border: 1px solid var(--border-2); border-radius: 18px;
  padding: 16px 20px; box-shadow: 0 12px 30px rgba(35,49,43,0.08); max-width: 250px;
}
.hero-float-card .k { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.hero-float-card .v { font-family: var(--font-heading); font-weight: 800; font-size: 18px; }

/* ---------- Pillars ---------- */
.pillars { max-width: var(--container); margin: 0 auto; padding: 44px 28px; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.pillar-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--green-soft); margin-bottom: 14px; }
.pillar-card h3 { font-size: 17px; margin-bottom: 7px; }
.pillar-card p { font-size: 14.5px; line-height: 1.55; color: var(--muted-3); margin: 0; }

/* ---------- Section headers ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.section-head h2 { font-size: 38px; letter-spacing: -0.02em; }
.section-head .link { font-weight: 700; color: var(--green); cursor: pointer; font-size: 15.5px; }

/* ---------- Services (home strip, green bg) ---------- */
.section-services { background: var(--green-soft); margin-top: 30px; }
.section-services .container { padding: 66px 28px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card-sm { background: var(--bg); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--green-soft-border); }
.service-card-sm .row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.service-card-sm h3 { font-size: 19px; }
.service-card-sm .price { font-family: var(--font-mono); font-size: 13px; color: var(--green); white-space: nowrap; }
.service-card-sm p { font-size: 14.5px; line-height: 1.58; color: var(--muted-5); margin: 0; }

/* ---------- Steps ---------- */
.steps-section { max-width: var(--container); margin: 0 auto; padding: 70px 28px; }
.steps-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.steps-photo { aspect-ratio: 1/1; border-radius: 24px; border: 1px solid var(--border-2); overflow: hidden; }
.steps-photo img { width: 100%; height: 100%; object-fit: cover; }
.steps-title { font-size: 36px; margin: 0 0 24px; letter-spacing: -0.02em; }
.step { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.step .num { font-family: var(--font-mono); font-size: 13px; color: var(--sub); padding-top: 3px; }
.step h3 { font-size: 17.5px; margin-bottom: 5px; }
.step p { font-size: 14.5px; line-height: 1.58; color: var(--muted-3); margin: 0; }

/* ---------- Product grid ---------- */
.products-section { max-width: var(--container); margin: 0 auto; padding: 20px 28px 70px; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; }
.product-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--beige); }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--sub); }
.product-name { font-family: var(--font-heading); font-weight: 700; font-size: 15.5px; line-height: 1.3; }
.product-vol { font-size: 13px; color: var(--muted); flex: 1; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-heading); font-weight: 800; font-size: 17px; }
.add-btn { padding: 8px 14px; border-radius: 999px; background: var(--green-soft); color: var(--green-dark); font-weight: 700; font-size: 13.5px; cursor: pointer; border: none; }
.add-btn:hover { background: var(--chip-hover); }

/* ---------- Reviews (dark) ---------- */
.section-reviews { background: var(--dark); color: var(--dark-text); }
.section-reviews .container { padding: 62px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--dark-card); border: 1px solid var(--dark-card-border); border-radius: var(--radius-md); padding: 26px; }
.review-stars { color: var(--dark-star); font-size: 15px; letter-spacing: 0.15em; margin-bottom: 12px; }
.review-text { font-size: 15.5px; line-height: 1.62; margin-bottom: 16px; }
.review-author { font-size: 13.5px; color: var(--dark-author); }

/* ---------- Blog grid ---------- */
.blog-section { max-width: var(--container); margin: 0 auto; padding: 70px 28px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: block; }
.blog-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--blue-photo-a); }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 9px; }
.blog-title { font-family: var(--font-heading); font-weight: 800; font-size: 18px; line-height: 1.28; margin-bottom: 8px; }
.blog-excerpt { font-size: 14.5px; line-height: 1.55; color: var(--muted-3); margin: 0; }
.blog-read { font-weight: 700; color: var(--green); font-size: 14.5px; margin-top: 8px; }

/* ---------- Generic page heading blocks ---------- */
.page-head { max-width: var(--container); margin: 0 auto; padding: 56px 28px 20px; }
.page-head h1 { font-size: 46px; margin: 0 0 18px; letter-spacing: -0.025em; }
.page-head p.lead { font-size: 18px; line-height: 1.62; color: var(--muted-4); max-width: 720px; margin: 0; }
.page-head.narrow p.lead { max-width: 700px; }

/* ---------- Services page ---------- */
.services-list { max-width: var(--container); margin: 0 auto; padding: 30px 28px 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card-lg { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; display: flex; gap: 22px; }
.service-icon { width: 92px; height: 92px; border-radius: 16px; background: var(--green-soft); flex-shrink: 0; }
.service-card-lg .row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.service-card-lg h3 { font-size: 21px; }
.service-card-lg .price { font-family: var(--font-mono); font-size: 13px; color: var(--green); }
.service-card-lg p { font-size: 15px; line-height: 1.6; color: var(--muted-5); margin: 0; }

/* ---------- Calculator ---------- */
.calc-section { max-width: var(--container); margin: 0 auto; padding: 40px 28px 70px; }
.calc-box { background: var(--blue-soft); border-radius: var(--radius-lg); padding: 40px; }
.calc-box h2 { font-size: 30px; margin: 0 0 10px; }
.calc-box > p { font-size: 15.5px; color: var(--muted-4); margin: 0 0 26px; }
.calc-label { font-size: 13px; color: var(--muted-3); margin-bottom: 10px; font-weight: 700; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.calc-result { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; background: #fff; border-radius: 18px; padding: 22px 26px; }
.calc-result .k { font-size: 13.5px; color: var(--muted); }
.calc-result .v { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--green); }
.calc-result .go { margin-left: auto; }

/* ---------- Pricing page ---------- */
.pricing-list { max-width: 1000px; margin: 0 auto; padding: 30px 28px 60px; display: flex; flex-direction: column; gap: 26px; }
.price-group { background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; }
.price-group-head { background: var(--green-soft); padding: 16px 26px; font-family: var(--font-heading); font-weight: 800; font-size: 17px; }
.price-row { display: flex; justify-content: space-between; gap: 20px; padding: 15px 26px; border-bottom: 1px solid var(--border-4); font-size: 15.5px; }
.price-row:last-child { border-bottom: none; }
.price-row .n { color: var(--text-2); }
.price-row .p { font-family: var(--font-mono); font-size: 14px; color: var(--green); white-space: nowrap; }
.pricing-note { background: var(--beige); border-radius: 20px; padding: 26px 30px; font-size: 15px; line-height: 1.65; color: var(--muted-4); }

/* ---------- Shop ---------- */
.shop-head { max-width: var(--container); margin: 0 auto; padding: 56px 28px 10px; }
.shop-head h1 { font-size: 46px; margin: 0 0 18px; letter-spacing: -0.025em; }
.shop-head p.lead { font-size: 17.5px; line-height: 1.62; color: var(--muted-4); max-width: 700px; margin: 0 0 26px; }
.cat-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Cart / checkout ---------- */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(35,49,43,0.42); z-index: 60; border: none; padding: 0; width: 100%; height: 100%; cursor: pointer; }
.cart-drawer {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--bg); z-index: 61;
  flex-direction: column; box-shadow: -20px 0 50px rgba(35,49,43,0.16); animation: slideIn 0.25s ease both;
}
.cart-drawer-head { padding: 22px 24px; border-bottom: 1px solid var(--border-2); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-head h2 { font-size: 20px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted); line-height: 1; padding: 4px 8px; background: none; border: none; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { text-align: center; padding: 60px 10px; color: var(--muted); }
.cart-empty p { font-size: 15.5px; line-height: 1.6; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-line-thumb { width: 66px; height: 66px; border-radius: 12px; background: var(--beige); flex-shrink: 0; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 700; font-size: 14.5px; line-height: 1.35; margin-bottom: 4px; }
.cart-line-price { font-size: 12.5px; color: var(--muted); margin-bottom: 9px; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--border-3); display: flex; align-items: center; justify-content: center; cursor: pointer; background: #fff; }
.qty-val { font-family: var(--font-mono); font-size: 13px; min-width: 16px; text-align: center; }
.cart-remove { margin-left: auto; font-size: 12.5px; color: #A08C74; cursor: pointer; background: none; border: none; }
.cart-line-total { font-family: var(--font-heading); font-weight: 800; font-size: 15px; }
.cart-drawer-foot { padding: 20px 24px 26px; border-top: 1px solid var(--border-2); background: var(--beige); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted-3); margin-bottom: 6px; }
.cart-summary-total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-weight: 800; font-size: 21px; margin: 12px 0 16px; }
.cart-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 10px; }

.checkout-section { max-width: 980px; margin: 0 auto; padding: 56px 28px 70px; }
.checkout-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 26px; }
.checkout-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; }
.checkout-card h2 { font-size: 18px; margin-bottom: 16px; }
.radio-row { display: flex; gap: 12px; align-items: center; border: 1.5px solid var(--border-2); border-radius: 12px; padding: 14px 16px; font-size: 15px; cursor: pointer; }
.radio-row + .radio-row { margin-top: 10px; }
.radio-row .price { font-family: var(--font-mono); font-size: 13px; color: var(--green); }
.order-summary { background: var(--beige); border-radius: 22px; padding: 28px; height: fit-content; }
.order-summary h2 { font-size: 18px; margin-bottom: 14px; }
.order-confirm { background: var(--green-soft); border-radius: var(--radius-lg); padding: 56px; text-align: center; margin-bottom: 30px; }
.order-confirm h1 { font-size: 34px; margin-bottom: 12px; }
.order-confirm p { font-size: 16.5px; line-height: 1.6; color: var(--muted-4); max-width: 520px; margin: 0 auto 26px; }

.cart-page-section { max-width: var(--container); margin: 0 auto; padding: 56px 28px 70px; }
.cart-page-grid { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 30px; align-items: start; }
.cart-page-line { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-page-thumb { width: 84px; height: 84px; border-radius: 14px; background: var(--beige); flex-shrink: 0; overflow: hidden; }
.cart-page-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Forms ---------- */
.form-field { padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-2); font-family: var(--font-body); font-size: 15px; background: #FBF9F5; width: 100%; }
.form-field:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(79,122,98,0.15); }
textarea.form-field { min-height: 110px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #6A7A70; line-height: 1.5; }
.form-check input { margin-top: 3px; }
.form-success { background: var(--green-soft); border-radius: var(--radius-sm); padding: 14px; font-size: 14.5px; color: var(--green-dark); }
.form-error { background: #F6E3DD; border-radius: var(--radius-sm); padding: 14px; font-size: 14.5px; color: #8A3B23; margin-bottom: 16px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
label.block { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 700; color: var(--muted-3); }

/* ---------- Booking ---------- */
.booking-section { max-width: 900px; margin: 0 auto; padding: 56px 28px 70px; }
.booking-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.booking-estimate { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; background: var(--green-soft); border-radius: 16px; padding: 18px 22px; margin-bottom: 18px; }
.booking-estimate .k { font-size: 13px; color: #5A7C68; }
.booking-estimate .v { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--green-dark); }
.booking-estimate .note { font-size: 13.5px; color: var(--muted-4); max-width: 320px; margin-left: auto; }

/* ---------- FAQ ---------- */
.faq-section { max-width: 840px; margin: 0 auto; padding: 56px 28px 70px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px 26px; }
.faq-q { display: flex; justify-content: space-between; gap: 16px; cursor: pointer; font-family: var(--font-heading); font-weight: 800; font-size: 17.5px; background: none; border: none; width: 100%; text-align: left; color: inherit; }
.faq-q .plus { color: var(--sub); flex-shrink: 0; transition: transform 0.15s; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { font-size: 15.5px; line-height: 1.65; color: var(--muted-4); margin-top: 12px; display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ---------- About ---------- */
.about-hero { max-width: var(--container); margin: 0 auto; padding: 56px 28px 20px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.about-hero h1 { font-size: 46px; margin: 0 0 20px; letter-spacing: -0.025em; }
.about-hero p { font-size: 17px; line-height: 1.68; color: var(--muted-4); margin: 0 0 16px; }
.about-photo { aspect-ratio: 3/4; border-radius: var(--radius-lg); border: 1px solid var(--border-2); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-section { max-width: var(--container); margin: 0 auto; padding: 50px 28px; }
.team-section h2 { font-size: 32px; margin: 0 0 26px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--green-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px; }
.team-body h3 { font-size: 17px; }
.team-role { font-size: 13px; color: var(--green); margin: 5px 0 9px; font-weight: 600; }
.team-body p { font-size: 14px; line-height: 1.55; color: var(--muted-3); margin: 0; }
.stats-dark { background: var(--dark); color: var(--dark-text); border-radius: var(--radius-lg); padding: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stats-dark .num { font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--dark-star); }
.stats-dark .label { font-size: 14px; color: var(--dark-author); margin-top: 6px; }
.about-stats-wrap { max-width: var(--container); margin: 0 auto; padding: 20px 28px 70px; }

/* ---------- Contact ---------- */
.contact-grid { max-width: var(--container); margin: 0 auto; padding: 56px 28px 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-grid h1 { font-size: 44px; margin: 0 0 24px; letter-spacing: -0.025em; }
.contact-info { display: flex; flex-direction: column; gap: 18px; font-size: 16px; line-height: 1.6; color: var(--text-3); }
.contact-info .k { font-size: 12.5px; color: var(--muted-2); font-family: var(--font-mono); letter-spacing: 0.08em; margin-bottom: 5px; }
.contact-photo { aspect-ratio: 4/3; border-radius: 22px; border: 1px solid var(--border-2); overflow: hidden; margin-bottom: 22px; position: relative; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-photo .map-link { position: absolute; right: 14px; bottom: 14px; background: rgba(255,255,255,0.92); padding: 9px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; color: var(--ink); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 28px; }
.contact-form-card h2 { font-size: 20px; margin-bottom: 16px; }
.stack-gap { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Legal ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 28px 70px; font-size: 16px; line-height: 1.72; color: var(--text-3); }
.legal h1 { font-size: 42px; margin: 0 0 10px; letter-spacing: -0.025em; }
.legal .updated { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-bottom: 28px; }
.legal h2 { font-family: var(--font-heading); font-size: 22px; margin: 28px 0 10px; font-weight: 800; }
.legal p { margin: 0 0 16px; }
.cookie-cat { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 24px; }
.cookie-cat h3 { font-family: var(--font-heading); font-weight: 800; font-size: 17px; margin-bottom: 6px; }
.cookie-cat p { font-size: 15px; color: var(--muted-3); margin: 0; }
.cookie-cats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.legal-table { background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-bottom: 26px; }
.legal-table-head { padding: 15px 24px; font-family: var(--font-heading); font-weight: 800; }
.legal-table-row { display: flex; justify-content: space-between; padding: 15px 24px; border-bottom: 1px solid var(--border-4); }
.legal-table-row:last-child { border-bottom: none; }
.legal-table-row .p { font-family: var(--font-mono); font-size: 14px; color: var(--green); }

/* ---------- Article ---------- */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 50px 28px 20px; }
.back-link { font-size: 14.5px; color: var(--green); font-weight: 700; cursor: pointer; margin-bottom: 22px; display: inline-block; }
.article-meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.09em; color: var(--muted-2); margin-bottom: 14px; }
.article-wrap h1 { font-size: 42px; line-height: 1.12; margin: 0 0 22px; letter-spacing: -0.025em; }
.article-photo { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 30px; }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-excerpt { font-size: 19px; line-height: 1.6; color: var(--text-4); font-weight: 500; margin-bottom: 26px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--text-3); margin: 0 0 22px; }
.article-cta { background: var(--green-soft); border-radius: var(--radius-md); padding: 28px 30px; margin: 34px 0; }
.article-cta h3 { font-size: 19px; margin-bottom: 8px; }
.article-cta p { font-size: 15px; line-height: 1.6; color: var(--muted-4); margin-bottom: 18px; }
.related-section { max-width: var(--container); margin: 0 auto; padding: 30px 28px 70px; }
.related-section h2 { font-size: 26px; margin: 0 0 22px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px; display: block; }
.related-card .meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-bottom: 9px; }
.related-card h3 { font-family: var(--font-heading); font-weight: 800; font-size: 17px; line-height: 1.3; }

/* ---------- Footer ---------- */
.site-footer { background: var(--beige); border-top: 1px solid var(--border-2); margin-top: 20px; }
.footer-grid { padding: 54px 28px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-about h2 { font-size: 20px; margin-bottom: 12px; }
.footer-about p { font-size: 14.5px; line-height: 1.62; color: var(--muted-3); max-width: 300px; margin: 0; }
.footer-contact { margin-top: 18px; font-size: 14px; line-height: 1.7; color: var(--muted-3); }
.footer-col-head { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; color: #8A7F6E; margin-bottom: 14px; }
.footer-link { font-size: 14.5px; color: var(--text-2); padding: 5px 0; cursor: pointer; display: block; }
.footer-link:hover { color: var(--green); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 20px 28px 40px; border-top: 1px solid var(--border-5); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }

/* ---------- Cookie banner ---------- */
.cookie-banner-wrap { position: fixed; left: 20px; bottom: 20px; right: 20px; z-index: 70; display: flex; justify-content: center; }
.cookie-banner { max-width: 880px; width: 100%; background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius-md); box-shadow: 0 18px 44px rgba(35,49,43,0.16); padding: 22px 24px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.cookie-banner p { flex: 1; min-width: 260px; font-size: 14.5px; line-height: 1.6; color: var(--muted-4); margin: 0; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Thank-you page ---------- */
.thanks-panel { display: none; }
.thanks-panel.is-shown { display: block; }

/* ---------- 404 ---------- */
.error-page { max-width: 640px; margin: 0 auto; padding: 100px 28px; text-align: center; }
.error-page .code { font-family: var(--font-mono); font-size: 15px; color: var(--muted-2); margin-bottom: 14px; }
.error-page h1 { font-size: 42px; margin: 0 0 16px; }
.error-page p { font-size: 17px; color: var(--muted-4); margin: 0 0 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .hero h1 { font-size: 44px; }
  .hero-media { order: -1; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .section-reviews .container { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero .about-photo { order: -1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-dark { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; width: 100%; margin-left: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-top: 1px solid var(--border-2); padding-top: 10px; order: 3;
  }
  .main-nav.is-open { display: flex; }
  .nav-link { padding: 12px 14px; }
  .cart-btn { order: 2; }
  .hero-stats { gap: 22px; }
  .hero h1 { font-size: 36px; }
  .pillars-grid, .products-grid, .blog-grid, .related-grid, .team-grid, .stats-dark { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 28px 20px; }
  .hero-float-card { position: static; margin-top: 16px; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .page-head h1, .shop-head h1, .contact-grid h1 { font-size: 32px; }
  .article-wrap h1 { font-size: 30px; }
  .legal h1 { font-size: 30px; }
}
