/* Leporia Beauty — глобальні стилі. Без зовнішніх шрифтів/CDN, лише системні шрифти. */

:root {
  --ink: #2e2529;
  --ink-soft: #3b3034;
  --bg: #faf7f4;
  --cream: #f4efe9;
  --white: #ffffff;
  --border: #e7ded7;
  --border-soft: #ece3dc;
  --border-mid: #e0d5cd;
  --line: #ddd0c8;
  --plum: #6a3f52;
  --gold: #a8815a;
  --rose: #c9a4a8;
  --text: #2e2529;
  --text-muted: #584a4f;
  --text-soft: #544449;
  --text-faint: #7a686d;
  --text-faint2: #8a787d;
  --footer-bg: #2e2529;
  --footer-text: #c9bcb4;
  --footer-text-strong: #f2eae4;

  --font-display: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 1080px;
  --container-tight: 900px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--gold); }
::selection { background: #e8d8d3; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 28px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 18px; z-index: 100; border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: #e9dfd8; font-size: 12.5px; letter-spacing: .1em;
  text-transform: uppercase; padding: 9px 0;
}
.topbar .container { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: space-between; align-items: center; }
.topbar a { color: #e9dfd8; }
.topbar a:hover { color: var(--rose); }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(250,247,244,.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.site-header .container { padding-top: 16px; padding-bottom: 16px; display: flex; align-items: center; gap: 24px; }
.brand { line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 26px; letter-spacing: .3em; color: var(--ink); }
.brand-sub { font-size: 9px; letter-spacing: .42em; color: var(--gold); margin-top: 3px; }

.main-nav { display: flex; gap: 20px; flex-wrap: wrap; margin-left: auto; font-size: 13.5px; letter-spacing: .04em; }
.main-nav a { color: var(--text); padding-bottom: 3px; border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  cursor: pointer; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-size: 12px;
  letter-spacing: .06em; display: flex; gap: 7px; align-items: center; background: transparent; color: var(--text);
}
.cart-btn:hover { border-color: var(--plum); }
.cart-count {
  background: var(--plum); color: #fff; border-radius: 999px; min-width: 19px; height: 19px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 10.5px;
}
.btn-book {
  cursor: pointer; background: var(--plum); color: #fff; border-radius: 999px; padding: 10px 18px;
  font-size: 12px; letter-spacing: .08em; border: none; display: inline-block;
}
.btn-book:hover { background: var(--ink); color: #fff; }

.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); position: relative; transition: .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer; display: inline-block; border-radius: 999px; padding: 15px 28px; font-size: 13px;
  letter-spacing: .1em; text-align: center; border: 1px solid transparent;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--plum); color: #fff; }
.btn-plum { background: var(--plum); color: #fff; }
.btn-plum:hover { background: var(--ink); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--plum); color: var(--plum); }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--container); margin: 0 auto; padding: 56px 28px 40px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.eyebrow { font-size: 11px; letter-spacing: .32em; color: var(--gold); text-transform: uppercase; }
.hero h1 { font-size: 56px; line-height: 1.08; margin-top: 18px; letter-spacing: -.01em; font-weight: 300; }
.hero h1 em { color: var(--plum); font-style: italic; }
.hero-lead { font-size: 17px; line-height: 1.7; color: var(--text-soft); max-width: 46ch; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-display); font-size: 32px; color: var(--plum); }
.stat-label { font-size: 12px; letter-spacing: .08em; color: var(--text-faint); }

.hero-media { position: relative; }
.hero-media img { border-radius: 4px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-media-badge {
  position: absolute; bottom: -22px; left: -24px; width: 150px; aspect-ratio: 1; border-radius: 4px;
  border: 8px solid var(--bg); overflow: hidden;
}
.hero-media-badge img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust strip ---------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--cream); }
.trust-grid { padding: 24px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-title { font-size: 13px; letter-spacing: .05em; color: var(--ink); font-weight: 600; }
.trust-text { font-size: 13px; color: var(--text-faint); margin-top: 5px; line-height: 1.5; }

/* ---------- Sections ---------- */
.section { max-width: var(--container); margin: 0 auto; padding: 72px 28px 20px; }
.section-tight { max-width: var(--container-tight); margin: 0 auto; padding: 56px 28px 80px; }
.section-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 56px 28px 80px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 22px; flex-wrap: wrap; }
.section-head h2 { font-size: 40px; margin-top: 12px; font-weight: 300; }
.section-link { font-size: 13px; letter-spacing: .08em; border-bottom: 1px solid var(--gold); padding-bottom: 4px; color: var(--plum); white-space: nowrap; }
.section-link:hover { color: var(--gold); border-color: var(--rose); }
.page-head { padding: 52px 0 8px; }
.page-head h1 { font-size: 46px; margin: 12px 0 14px; font-weight: 300; }
.page-lead { font-size: 16px; line-height: 1.75; color: var(--text-soft); max-width: 70ch; }

/* ---------- Cards: services ---------- */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 34px; }
.service-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.service-card:hover { border-color: var(--rose); }
.service-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.service-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.service-card-body h3 { font-size: 23px; }
.service-card-desc { font-size: 14px; line-height: 1.6; color: #6a595e; flex: 1; }
.service-card-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0e8e2; padding-top: 11px; font-size: 13px; letter-spacing: .04em; }
.service-card-meta .from { color: var(--plum); }
.service-card-meta .time { color: var(--text-faint2); }

/* Philosophy */
.philo { max-width: var(--container); margin: 0 auto; padding: 72px 28px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.philo img { border-radius: 4px; width: 100%; aspect-ratio: 1; object-fit: cover; }
.philo h2 { font-size: 38px; margin: 12px 0 18px; line-height: 1.15; font-weight: 300; }
.philo p { font-size: 16px; line-height: 1.8; color: var(--text-soft); }
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 26px; }
.philo-item { border-left: 1px solid var(--line); padding-left: 14px; }
.philo-item strong { font-size: 14px; font-weight: 600; letter-spacing: .02em; display: block; }
.philo-item span { font-size: 13px; color: var(--text-faint); line-height: 1.6; }

/* Dark shop teaser */
.shop-teaser { background: var(--ink); color: #eee6df; }
.shop-teaser .section-tag { color: var(--rose); }
.shop-teaser .section-link { color: #e9dfd8; border-color: var(--rose); }
.shop-teaser .section-link:hover { color: var(--rose); }
.product-card-dark { background: #3a3034; border: 1px solid #4a3e42; border-radius: 4px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.product-card-dark img { aspect-ratio: 1; object-fit: cover; width: 100%; border-radius: 2px; }
.product-card-dark h3 { font-size: 18px; line-height: 1.2; font-weight: 400; font-family: var(--font-display); }
.product-card-dark .vol { font-size: 12px; color: #b3a29a; }
.product-card-dark .row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-card-dark .price { font-size: 15px; }
.chip-btn {
  cursor: pointer; border: 1px solid var(--rose); color: #e9dfd8; border-radius: 999px; padding: 7px 13px;
  font-size: 11px; letter-spacing: .08em; background: transparent;
}
.chip-btn:hover { background: var(--rose); color: var(--ink); }

/* Reviews */
.review-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px; padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.stars { color: var(--gold); letter-spacing: .25em; font-size: 13px; }
.review-quote { font-family: var(--font-display); font-size: 18px; line-height: 1.6; color: var(--ink-soft); font-style: italic; flex: 1; }
.review-author { font-size: 12px; letter-spacing: .06em; color: var(--text-faint2); }

/* Blog cards */
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.blog-card:hover { border-color: var(--rose); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.blog-card-body { padding: 18px 18px 22px; }
.blog-tag { font-size: 11px; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.blog-card h3 { font-size: 21px; margin-top: 9px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: #6a595e; line-height: 1.6; margin-top: 9px; }

.blog-post { background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px; padding: 0; overflow: hidden; margin-bottom: 20px; }
.blog-post img { width: 100%; aspect-ratio: 21/9; object-fit: cover; }
.blog-post-body { padding: 26px 30px 30px; }
.blog-post h2 { font-size: 27px; margin-top: 10px; line-height: 1.25; }
.blog-post p { font-size: 15.5px; line-height: 1.8; color: var(--text-soft); margin-top: 12px; }
.blog-post .author { font-size: 13px; color: var(--text-faint2); margin-top: 14px; }

/* Team */
.team-card img { border-radius: 4px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-card h3 { font-size: 22px; margin-top: 14px; }
.team-role { font-size: 12px; letter-spacing: .08em; color: var(--gold); margin-top: 4px; text-transform: uppercase; }
.team-bio { font-size: 14px; line-height: 1.65; color: #6a595e; margin-top: 10px; }

/* Services full (list) */
.service-row {
  background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px;
  display: grid; grid-template-columns: 260px 1fr; overflow: hidden; margin-bottom: 16px;
}
.service-row img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.service-row-body { padding: 26px 30px; }
.service-row-top { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; align-items: baseline; }
.service-row-top h2 { font-size: 27px; }
.service-row-price { font-size: 14px; color: var(--plum); letter-spacing: .02em; }
.service-row-meta { font-size: 12px; letter-spacing: .1em; color: var(--gold); margin-top: 6px; text-transform: uppercase; }
.service-row-body > p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 14px 0 0; }
.bullet-row { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }
.bullet-chip { background: var(--cream); border: 1px solid var(--border); border-radius: 999px; padding: 6px 13px; font-size: 12px; color: var(--text-muted); }

/* Prices */
.price-group { margin-bottom: 36px; }
.price-group h2 { font-size: 27px; border-bottom: 1px solid var(--line); padding-bottom: 9px; }
.price-row { display: flex; gap: 16px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.price-row .name { flex: 1; }
.price-row .name-title { font-size: 15.5px; }
.price-row .name-note { font-size: 12.5px; color: var(--text-faint2); margin-top: 3px; }
.price-row .time { font-size: 12.5px; color: var(--text-faint2); width: 78px; text-align: right; flex: none; }
.price-row .amount { font-size: 16px; color: var(--plum); width: 100px; text-align: right; flex: none; }
.price-note-box { margin-top: 40px; background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 26px; }
.price-note-box h3 { font-size: 21px; }
.price-note-box p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-top: 10px; }

/* Shop */
.shop-strip {
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 15px 0; margin-top: 18px;
  font-size: 13px; color: var(--text-muted);
}
.cat-tabs { display: flex; gap: 9px; margin-top: 22px; flex-wrap: wrap; }
.cat-tab {
  cursor: pointer; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 12px;
  letter-spacing: .06em; background: transparent; color: var(--text-muted);
}
.cat-tab[aria-pressed="true"] { background: var(--plum); color: #fff; border-color: var(--plum); }
.product-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.product-card:hover { border-color: var(--rose); }
.product-card img { aspect-ratio: 1; object-fit: cover; width: 100%; border-radius: 2px; }
.product-cat { font-size: 11px; letter-spacing: .08em; color: var(--gold); text-transform: uppercase; }
.product-card h3 { font-size: 19px; line-height: 1.25; }
.product-desc { font-size: 13px; color: #6a595e; line-height: 1.55; flex: 1; }
.product-stock { font-size: 12px; color: var(--text-faint2); }
.product-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0e8e2; padding-top: 11px; }
.product-price { font-size: 16px; color: var(--ink); }
.btn-cart {
  cursor: pointer; background: var(--plum); color: #fff; border-radius: 999px; padding: 9px 15px; font-size: 11px;
  letter-spacing: .06em; border: none;
}
.btn-cart:hover { background: var(--ink); }
.shop-info-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shop-info-card { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 22px; }
.shop-info-card h3 { font-size: 20px; }
.shop-info-card p { font-size: 13.5px; line-height: 1.65; color: var(--text-muted); margin-top: 9px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 36px; }
.gallery-item { position: relative; border-radius: 4px; overflow: hidden; background: var(--border-soft); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item .cap {
  position: absolute; left: 10px; bottom: 10px; background: rgba(250,247,244,.92); color: var(--text-faint);
  font-size: 11px; padding: 4px 8px; border-radius: 2px;
}
.g-span-2 { grid-column: span 2; }
.g-ratio-43 { aspect-ratio: 4/3; }
.g-ratio-34 { aspect-ratio: 3/4; }
.g-ratio-169 { aspect-ratio: 16/9; }

/* About */
.about-hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 4px; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 36px; }
.about-cols p { font-size: 16px; line-height: 1.85; color: var(--text-soft); margin-bottom: 14px; }
.milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.milestone { border-top: 2px solid var(--plum); padding-top: 12px; }
.milestone .year { font-family: var(--font-display); font-size: 27px; color: var(--plum); }
.milestone .text { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); margin-top: 5px; }

/* FAQ */
.faq { margin-top: 50px; }
.faq h2 { font-size: 32px; margin-bottom: 16px; font-weight: 300; }
.faq-item { border-bottom: 1px solid var(--border-mid); }
.faq-item summary {
  cursor: pointer; padding: 16px 0; font-size: 16px; color: var(--ink); display: flex;
  justify-content: space-between; align-items: center; gap: 18px; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 19px; flex: none; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-a { font-size: 15px; line-height: 1.75; color: var(--text-muted); padding: 0 0 18px; max-width: 80ch; }

/* Contact / booking */
.book-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; margin-top: 30px; }
.book-form-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: 4px; padding: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11.5px; letter-spacing: .08em; color: var(--text-faint); text-transform: uppercase; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); background: var(--bg); border-radius: 2px; padding: 12px 13px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--rose); outline-offset: 1px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.consent-row input { margin-top: 3px; }
.form-note { font-size: 12px; color: var(--text-faint2); margin-top: 12px; }
.form-error { font-size: 13px; color: #a12b2b; margin-top: 10px; display: none; }
.form-error.show { display: block; }
.thanks-box { padding: 36px 0; text-align: center; }
.thanks-box h2 { font-size: 30px; color: var(--plum); }
.thanks-box p { font-size: 15px; line-height: 1.75; color: var(--text-soft); max-width: 48ch; margin: 12px auto 0; }

.side-card { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 24px; margin-bottom: 20px; }
.side-card.white { background: var(--white); border-color: var(--border-soft); }
.side-card h3 { font-size: 22px; }
.side-card address, .side-card .body { font-style: normal; font-size: 14.5px; line-height: 1.85; color: var(--text-soft); margin-top: 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid #f2eae4; color: var(--text-soft); }
.map-card { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.map-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.map-card .map-info { padding: 16px; background: var(--white); font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }

/* Legal pages */
.legal-updated { font-size: 12.5px; color: var(--text-faint2); border-bottom: 1px solid var(--border-mid); padding-bottom: 16px; }
.legal-nav { display: flex; gap: 9px; flex-wrap: wrap; margin: 22px 0 30px; }
.legal-nav a { border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 12px; color: var(--text-muted); }
.legal-nav a[aria-current="page"] { background: var(--plum); color: #fff; border-color: var(--plum); }
.legal-section { margin-bottom: 26px; }
.legal-section h2 { font-size: 22px; margin-bottom: 9px; font-weight: 400; }
.legal-section p { font-size: 15px; line-height: 1.8; color: #4d4045; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: 60px; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 56px 28px 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand { font-family: var(--font-display); font-size: 22px; letter-spacing: .28em; color: var(--footer-text-strong); }
.footer-sub { font-size: 9px; letter-spacing: .42em; color: var(--rose); margin-top: 4px; }
.footer-addr { font-size: 13.5px; line-height: 1.85; margin-top: 16px; font-style: normal; }
.footer-col h4 { font-size: 11px; letter-spacing: .15em; color: var(--footer-text-strong); text-transform: uppercase; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; font-size: 13.5px; }
.footer-col a { color: var(--footer-text); }
.footer-col a:hover { color: var(--footer-text-strong); }
.footer-pay { font-size: 12.5px; line-height: 1.7; margin-top: 14px; color: #a8968f; }
.footer-bottom { border-top: 1px solid #453a3e; }
.footer-bottom-inner { max-width: var(--container); margin: 0 auto; padding: 16px 28px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 12px; color: #96857f; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; background: rgba(46,37,41,.45); z-index: 60; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--bg);
  z-index: 61; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s ease;
  box-shadow: -20px 0 60px rgba(46,37,41,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head h2 { font-size: 24px; }
.cart-close { cursor: pointer; font-size: 20px; color: var(--text-faint2); background: none; border: none; }
.cart-body { flex: 1; overflow: auto; padding: 18px 24px; }
.cart-empty { padding: 44px 0; text-align: center; color: var(--text-faint); }
.cart-empty strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--ink); font-weight: 400; }
.cart-line { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.cart-line img { width: 68px; height: 68px; object-fit: cover; border-radius: 2px; flex: none; }
.cart-line .info { flex: 1; }
.cart-line .name { font-family: var(--font-display); font-size: 17px; line-height: 1.2; }
.cart-line .vol { font-size: 12px; color: var(--text-faint2); margin-top: 3px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; width: fit-content; margin-top: 9px; }
.qty-control button { cursor: pointer; padding: 4px 10px; font-size: 13px; background: none; border: none; }
.qty-control span { padding: 4px 4px; font-size: 13px; min-width: 20px; text-align: center; }
.remove-line { cursor: pointer; font-size: 12px; color: var(--text-faint2); border-bottom: 1px solid var(--line); background: none; border-top: none; border-left: none; border-right: none; margin-left: 12px; }
.cart-line .line-total { font-size: 14.5px; align-self: flex-start; }
.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px; background: var(--cream); }
.cart-foot-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); }
.cart-foot-row.grand { font-size: 18px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border-mid); color: var(--ink); }
.cart-foot-row.grand span:last-child { color: var(--plum); }
.cart-vat { font-size: 11px; color: var(--text-faint2); margin-top: 5px; }
.cart-foot .btn { width: 100%; margin-top: 14px; }
.cart-legal { font-size: 11px; color: var(--text-faint2); margin-top: 9px; line-height: 1.6; }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--ink); color: #e4d9d2;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--container); margin: 0 auto; padding: 20px 28px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; font-size: 13.5px; line-height: 1.7; }
.cookie-text strong { color: #fff; font-weight: 500; }
.cookie-text a { color: var(--rose); border-bottom: 1px solid var(--plum); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button { cursor: pointer; border-radius: 999px; padding: 11px 20px; font-size: 12px; letter-spacing: .06em; border: 1px solid #6a5a5e; background: transparent; color: #e4d9d2; }
.cookie-actions .accept { background: var(--rose); color: var(--ink); border-color: var(--rose); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 10px); background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 999px; font-size: 13px; z-index: 80; opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero h1 { font-size: 44px; }
  .philo { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-span-2 { grid-column: span 2; }
  .service-row { grid-template-columns: 1fr; }
  .service-row img { min-height: 180px; }
  .shop-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; flex-direction: column; gap: 4px; width: 100%; order: 3; margin-top: 14px; }
  .main-nav.open { display: flex; }
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .section-head h2, .page-head h1 { font-size: 30px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .milestones { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-span-2 { grid-column: span 1; }
  .price-row { flex-wrap: wrap; }
  .price-row .time { text-align: left; width: auto; }
  .price-row .amount { text-align: left; width: auto; }
  .cart-drawer { width: 100%; }
}
