@import url("fonts.css");

:root {
  --bg: #FBF7F2;
  --ink: #2E2A27;
  --ink-soft: #6E655E;
  --ink-soft2: #7A716A;
  --ink-mute: #8A8078;
  --ink-mute2: #A2988E;
  --gold: #B9975B;
  --gold-dark: #8A6B32;
  --cream: #F6EEE4;
  --border: #EDE2D6;
  --border-warm: #E3D3C0;
  --border-warm2: #D8C9B6;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: #E8D5D0; }

@keyframes lnFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes lnMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.page-shell { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-doc { max-width: 900px; margin: 0 auto; padding: 0 28px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--ink); color: var(--cream);
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 20px; text-align: center; font-weight: 400;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,247,242,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__mark {
  font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink);
}
.logo__mark em { font-style: normal; color: var(--gold); }
.logo__tag {
  font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.34em; color: #9A9088;
  text-transform: uppercase; margin-top: 5px;
}
.site-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.site-nav a {
  font-size: 14px; letter-spacing: 0.06em; padding-bottom: 3px;
  border-bottom: 1px solid transparent; color: var(--ink); white-space: nowrap;
}
.site-nav a:hover { color: var(--gold); }
.site-nav a.is-active { color: var(--gold); }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--border-warm);
  border-radius: 10px; width: 42px; height: 38px; align-items: center; justify-content: center;
  font-size: 18px;
}
.cart-btn {
  display: flex; align-items: center; gap: 9px; background: var(--ink); color: var(--cream);
  border: none; border-radius: 999px; padding: 11px 20px; font-size: 13.5px; letter-spacing: 0.06em;
  white-space: nowrap;
}
.cart-btn:hover { background: var(--gold); color: #fff; }
.cart-btn__count {
  background: var(--gold); color: #fff; border-radius: 999px; min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 500;
}

/* ---------- Buttons (shared) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 16px 32px; font-size: 14.5px; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; cursor: pointer;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--gold); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border-warm2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--ink); color: var(--cream); }
.btn-small {
  background: var(--cream); border: 1px solid var(--border-warm); color: var(--ink);
  border-radius: 999px; padding: 9px 16px; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-small:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 20px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero__copy { animation: lnFade 0.7s ease both; }
.eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400; font-size: 68px; line-height: 1.04; margin: 0 0 24px; letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__lead { font-size: 17.5px; line-height: 1.72; color: var(--ink-soft); margin: 0 0 34px; max-width: 46ch; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 46px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero__stats .stat-num { font-family: var(--serif); font-size: 32px; color: var(--gold); }
.hero__stats .stat-label { font-size: 12.5px; color: var(--ink-mute); letter-spacing: 0.05em; }
.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 260px 260px 18px 18px; }
.hero__badge-card {
  position: absolute; bottom: -22px; left: -26px; background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 22px; box-shadow: 0 18px 40px -24px rgba(46,42,39,0.32); max-width: 220px;
}
.hero__badge-card .eyebrow2 {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase;
}
.hero__badge-card .name { font-family: var(--serif); font-size: 21px; margin-top: 5px; }
.hero__badge-card .price { font-size: 13.5px; color: var(--ink-mute); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 64px; background: var(--cream);
}
.marquee__track { display: flex; width: max-content; animation: lnMarquee 34s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-size: 22px; color: #A79683; padding: 15px 30px; white-space: nowrap;
}

/* ---------- Section heads ---------- */
.section-pad { padding: 82px 0 0; }
.section-pad-tight { padding: 78px 0 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap;
}
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: 42px; margin: 0; }
.section-head .eyebrow { margin-bottom: 0; }
.section-head-col > .eyebrow { margin-bottom: 12px; }
.section-head-col h2 { margin-top: 0; }
.link-more { font-size: 14px; letter-spacing: 0.06em; border-bottom: 1px solid var(--border-warm2); padding-bottom: 3px; }

/* ---------- Grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* ---------- USP cards ---------- */
.usp-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 24px; }
.usp-card .no { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); }
.usp-card .t { font-family: var(--serif); font-size: 22px; margin: 12px 0 8px; }
.usp-card .d { font-size: 14px; line-height: 1.6; color: var(--ink-soft2); }

/* ---------- Category cards ---------- */
.cat-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .15s; }
.cat-card:hover { border-color: var(--gold); }
.cat-card__media { aspect-ratio: 16/10; overflow: hidden; }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__body { padding: 22px 24px 26px; }
.cat-card__body .name { font-family: var(--serif); font-size: 25px; }
.cat-card__body .desc { font-size: 14px; line-height: 1.6; color: var(--ink-soft2); margin-top: 7px; }
.cat-card__body .count { font-family: var(--mono); font-size: 10px; color: var(--gold); margin-top: 14px; letter-spacing: 0.14em; }

/* ---------- Product cards ---------- */
.product-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s; }
.product-card:hover { border-color: #D9B8B2; }
.product-card__media { cursor: pointer; position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--cream);
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  font-family: var(--mono);
}
.product-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-mute2); text-transform: uppercase; }
.product-card__name { cursor: pointer; font-family: var(--serif); font-size: 21px; line-height: 1.25; margin: 8px 0 10px; }
.product-card__short { font-size: 13.5px; color: var(--ink-soft2); line-height: 1.55; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; }
.product-card__price { font-size: 17px; letter-spacing: 0.02em; }

/* ---------- Ritual ---------- */
.ritual-section { margin-top: 90px; background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ritual { padding: 76px 0; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.ritual__media { aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; }
.ritual__media img { width: 100%; height: 100%; object-fit: cover; }
.ritual__lead { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 30px; max-width: 58ch; }
.ritual__steps { display: flex; flex-direction: column; gap: 2px; }
.ritual__step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid #E4D6C6; }
.ritual__step .no { font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1; }
.ritual__step .t { font-size: 16px; font-weight: 500; letter-spacing: 0.02em; }
.ritual__step .d { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft2); margin-top: 5px; }

/* ---------- Blog / article cards ---------- */
.post-card { cursor: pointer; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: border-color .15s; }
.post-card:hover { border-color: var(--gold); }
.post-card__media { aspect-ratio: 16/9; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; }
.post-card__title { font-family: var(--serif); font-size: 24px; line-height: 1.25; margin: 10px 0 9px; }
.post-card__lead { font-size: 14px; line-height: 1.6; color: var(--ink-soft2); }
.post-card__meta { margin-top: auto; padding-top: 18px; font-size: 12.5px; color: var(--ink-mute2); }

/* ---------- Reviews ---------- */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 26px; }
.review-card .stars { color: var(--gold); letter-spacing: 0.24em; font-size: 13px; }
.review-card .text { font-family: var(--serif); font-size: 20px; line-height: 1.5; font-style: italic; color: #443E39; margin: 14px 0 18px; }
.review-card .who { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.04em; }

/* ---------- Newsletter CTA ---------- */
.newsletter-section { padding: 82px 0 96px; }
.newsletter { background: var(--ink); border-radius: 20px; padding: 60px 56px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.newsletter h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; color: var(--cream); margin: 12px 0 12px; }
.newsletter p { color: #C7BCB1; font-size: 15.5px; line-height: 1.7; margin: 0; max-width: 50ch; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input[type=email] {
  background: transparent; border: 1px solid #5A524B; border-radius: 999px; padding: 15px 22px; color: var(--cream); outline: none;
}
.newsletter-form label { display: flex; gap: 10px; align-items: flex-start; color: #A79E95; font-size: 12.5px; line-height: 1.55; }
.newsletter-form label a { color: var(--gold); text-decoration: underline; }
.newsletter-form input[type=checkbox] { margin-top: 3px; accent-color: var(--gold); }
.success-box { background: rgba(185,151,91,0.16); border: 1px solid var(--gold); border-radius: 12px; padding: 22px; color: var(--cream); font-size: 15px; line-height: 1.6; }
.success-box--light { background: var(--cream); border: 1px solid var(--gold); color: #4F4842; }

/* ---------- Shop ---------- */
.page-head { padding: 52px 0 0; }
.crumb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #B0A69C; }
.page-title { font-family: var(--serif); font-weight: 400; font-size: 52px; margin: 14px 0 12px; }
.page-lead { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); max-width: 68ch; margin: 0 0 34px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--border); margin-bottom: 30px; align-items: center; }
.filter-btn {
  border-radius: 999px; padding: 10px 20px; font-size: 13.5px; letter-spacing: 0.06em; border: 1px solid var(--border-warm);
  background: transparent; color: var(--ink);
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.is-active { background: var(--ink); color: var(--cream); }
.filters .count { margin-left: auto; font-size: 13px; color: var(--ink-mute); }
.shop-section { padding: 0 0 96px; }

/* ---------- Product detail ---------- */
.product-detail-section { padding: 52px 0 96px; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 26px; }
.pd-media { aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; }
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.pd-thumbs img { aspect-ratio: 1/1; border-radius: 12px; object-fit: cover; width: 100%; }
.pd-meta { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.pd-title { font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1.1; margin: 14px 0 14px; }
.pd-rating { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.pd-rating .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 13px; }
.pd-rating .count { font-size: 13.5px; color: var(--ink-mute); }
.pd-desc { font-size: 16.5px; line-height: 1.75; color: #5E564F; margin: 0 0 26px; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pd-price { font-family: var(--serif); font-size: 38px; }
.pd-price-note { font-size: 13.5px; color: var(--ink-mute); }
.pd-ctas { display: flex; gap: 14px; margin: 26px 0 30px; flex-wrap: wrap; }
.pd-ctas .btn { flex: 1; min-width: 200px; }
.pd-facts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pd-facts div { font-size: 14.5px; color: var(--ink-soft); }
.pd-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.pd-card .h { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.pd-card .txt { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); }
.related-section { margin-top: 76px; }
.related-section h2 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 0 0 24px; }
.rel-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.rel-card__media { cursor: pointer; aspect-ratio: 1/1; overflow: hidden; }
.rel-card__media img { width: 100%; height: 100%; object-fit: cover; }
.rel-card__body { padding: 18px 20px 22px; }
.rel-card__name { cursor: pointer; font-family: var(--serif); font-size: 20px; line-height: 1.25; }
.rel-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

/* ---------- Cart ---------- */
.cart-section { padding: 52px 0 96px; }
.cart-title { font-family: var(--serif); font-weight: 400; font-size: 48px; margin: 0 0 8px; }
.cart-panel { background: #fff; border: 1px solid var(--gold); border-radius: 18px; padding: 46px; text-align: center; margin-top: 26px; }
.cart-panel--empty { border-color: var(--border); }
.cart-panel .h { font-family: var(--serif); font-size: 34px; }
.cart-panel p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 56ch; margin: 14px auto 26px; }
.cart-layout { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 34px; margin-top: 30px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px; display: grid; grid-template-columns: 88px 1fr auto; gap: 20px; align-items: center; }
.cart-line__media { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-family: var(--serif); font-size: 21px; }
.cart-line__meta { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-top: 12px; }
.qty-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border-warm); background: var(--bg); font-size: 15px; line-height: 1; }
.qty-val { font-size: 15px; min-width: 18px; text-align: center; }
.remove-link { background: none; border: none; color: var(--ink-mute2); font-size: 13px; text-decoration: underline; margin-left: 8px; }
.cart-line__sum { font-size: 18px; white-space: nowrap; }
.cart-summary { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.cart-summary .h { font-family: var(--serif); font-size: 24px; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-soft); padding: 8px 0; }
.summary-row.border-b { border-bottom: 1px solid var(--border); }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; padding: 16px 0 4px; }
.summary-vat { font-size: 12.5px; color: var(--ink-mute2); margin-bottom: 20px; }
.checkout-fields { display: flex; flex-direction: column; gap: 10px; }
.checkout-fields input, .checkout-fields select {
  border: 1px solid var(--border-warm); border-radius: 10px; padding: 12px 14px; background: var(--bg); outline: none; width: 100%;
}
.checkout-note { font-size: 12px; line-height: 1.6; color: var(--ink-mute2); margin-top: 14px; }
.field-error { color: #A8422F; font-size: 12.5px; margin-top: -4px; display: none; }
.field-error.is-visible { display: block; }

/* ---------- Blog / Article ---------- */
.blog-section { padding: 52px 0 96px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; margin-top: 22px; }
.article-title { font-family: var(--serif); font-weight: 400; font-size: 50px; line-height: 1.1; margin: 0 0 18px; max-width: 26ch; }
.article-meta { display: flex; gap: 18px; font-size: 13px; color: var(--ink-mute); padding-bottom: 26px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.article-hero { aspect-ratio: 16/9; border-radius: 16px; margin: 26px 0 32px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-lead { font-family: var(--serif); font-size: 25px; line-height: 1.5; color: #443E39; margin: 0 0 28px; }
.article-body { display: flex; flex-direction: column; gap: 22px; }
.article-body p { font-size: 17px; line-height: 1.82; color: #4F4842; margin: 0; max-width: 68ch; }
.tip-box { margin-top: 36px; background: var(--cream); border-left: 2px solid var(--gold); border-radius: 4px; padding: 26px 28px; }
.tip-box .label { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tip-box .txt { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: #443E39; }
.article-cta { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-cta span { font-size: 14px; color: var(--ink-mute); }
.article-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; align-self: start; }
.aside-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.aside-card .h { font-family: var(--serif); font-size: 21px; margin-bottom: 14px; }
.aside-product { display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center; margin-bottom: 14px; }
.aside-product:last-child { margin-bottom: 0; }
.aside-product img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; }
.aside-product .name { font-family: var(--serif); font-size: 15.5px; line-height: 1.25; }
.aside-product .price { font-size: 13px; color: var(--ink-mute); margin-top: 3px; }
.aside-links { display: flex; flex-direction: column; gap: 10px; }
.aside-links a { font-size: 14px; }

/* ---------- About ---------- */
.about-section { padding: 52px 0 96px; }
.about-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; margin-top: 16px; align-items: start; }
.about-copy h1 { font-family: var(--serif); font-weight: 400; font-size: 52px; line-height: 1.08; margin: 0 0 22px; }
.about-copy p { font-size: 17px; line-height: 1.8; color: #4F4842; margin: 0 0 20px; }
.about-side { display: flex; flex-direction: column; gap: 18px; }
.about-photo { aspect-ratio: 3/4; border-radius: 16px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.merchant-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.merchant-card .h { font-family: var(--serif); font-size: 22px; margin-bottom: 14px; }
.merchant-card .lines { display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.team-grid { margin-top: 60px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.team-card__media { aspect-ratio: 4/3; overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 22px 24px 26px; }
.team-card__name { font-family: var(--serif); font-size: 23px; }
.team-card__role { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--gold); text-transform: uppercase; margin-top: 6px; }
.team-card__bio { font-size: 14px; line-height: 1.65; color: var(--ink-soft2); margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-section { padding: 52px 0 96px; }
.contact-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.info-card .h { font-family: var(--serif); font-size: 22px; margin-bottom: 14px; }
.info-card .lines { display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.6; color: #5E564F; }
.map-embed { aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.contact-form-card .h { font-family: var(--serif); font-size: 26px; margin-bottom: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form select, .contact-form textarea {
  border: 1px solid var(--border-warm); border-radius: 10px; padding: 13px 15px; background: var(--bg); outline: none; width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form label { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft2); }
.contact-form input[type=checkbox] { margin-top: 3px; accent-color: var(--gold); }

/* ---------- FAQ ---------- */
.faq-section { padding: 52px 0 96px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; background: none; border: none; width: 100%; text-align: left; }
.faq-q span.q-text { font-size: 16.5px; letter-spacing: 0.01em; color: var(--ink); }
.faq-q span.sign { color: var(--gold); font-size: 20px; line-height: 1; }
.faq-a { padding: 0 24px 24px; font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); max-width: 74ch; display: none; }
.faq-item.is-open .faq-a { display: block; }

/* ---------- Legal docs ---------- */
.doc-section { padding: 52px 0 96px; }
.doc-title { font-family: var(--serif); font-weight: 400; font-size: 50px; line-height: 1.1; margin: 14px 0 14px; }
.doc-lead { font-size: 17px; line-height: 1.75; color: #5E564F; margin: 0 0 10px; }
.doc-updated { font-family: var(--mono); font-size: 10.5px; color: var(--ink-mute2); letter-spacing: 0.12em; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.doc-body { display: flex; flex-direction: column; gap: 34px; margin-top: 34px; }
.doc-body h2 { font-family: var(--serif); font-weight: 400; font-size: 29px; margin: 0 0 14px; }
.doc-body .p-group { display: flex; flex-direction: column; gap: 14px; }
.doc-body p { font-size: 16px; line-height: 1.8; color: #4F4842; margin: 0; max-width: 74ch; }
.doc-contact { margin-top: 46px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.doc-contact .h { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.doc-contact .txt { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- 404 ---------- */
.notfound-section { padding: 110px 0 130px; text-align: center; }
.notfound-section .code { font-family: var(--serif); font-size: 120px; color: var(--gold); line-height: 1; }
.notfound-section h1 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 10px 0 14px; }
.notfound-section p { font-size: 16px; color: var(--ink-soft); max-width: 50ch; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C7BCB1; margin-top: auto; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 62px 28px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--serif); font-size: 27px; color: var(--cream); }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-grid p { font-size: 14px; line-height: 1.75; margin: 14px 0 18px; max-width: 40ch; }
.footer-legal-lines { font-size: 13.5px; line-height: 1.8; }
.footer-col-title { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #C7BCB1; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 22px 28px 40px; border-top: 1px solid #4A423B;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 12.5px; color: #9A9088;
}

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; display: flex; justify-content: center; }
.cookie-banner__inner {
  max-width: 940px; width: 100%; background: #fff; border: 1px solid var(--border-warm); border-radius: 16px;
  padding: 24px 26px; box-shadow: 0 26px 60px -28px rgba(46,42,39,0.4); display: grid;
  grid-template-columns: 1fr auto; gap: 26px; align-items: center;
}
.cookie-banner .h { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.cookie-banner .txt { font-size: 14px; line-height: 1.65; color: var(--ink-soft); max-width: 78ch; }
.cookie-actions { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }
.cookie-actions button {
  border-radius: 999px; padding: 12px 22px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-cookie-accept { background: var(--ink); color: var(--cream); border: none; }
.btn-cookie-accept:hover { background: var(--gold); }
.btn-cookie-reject { background: transparent; border: 1px solid var(--border-warm); }
.btn-cookie-reject:hover { border-color: var(--gold); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 48px; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero__badge-card { left: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ritual { grid-template-columns: 1fr; }
  .ritual__media { max-width: 320px; margin: 0 auto; }
  .newsletter { grid-template-columns: 1fr; padding: 44px 32px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; align-items: flex-start; gap: 0; border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px -20px rgba(46,42,39,0.3);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 14px 28px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .site-header__inner { position: relative; padding: 14px 20px; gap: 16px; }
  .hero { padding: 36px 0 10px; }
  .hero h1 { font-size: 38px; }
  .hero__lead { font-size: 16px; }
  .hero__stats { gap: 22px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 32px; }
  .page-title { font-size: 38px; }
  .pd-title { font-size: 32px; }
  .pd-ctas .btn { min-width: 0; }
  .cart-line { grid-template-columns: 64px 1fr; }
  .cart-line__sum { grid-column: 1 / -1; text-align: right; }
  .newsletter { padding: 34px 22px; }
  .newsletter h2 { font-size: 30px; }
  .about-copy h1 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; padding: 46px 20px 24px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner__inner { grid-template-columns: 1fr; padding: 20px; }
  .cookie-actions { flex-direction: row; min-width: 0; }
  .cookie-actions button { flex: 1; }
  .container, .container-narrow, .container-doc { padding: 0 18px; }
  .doc-title, .cart-title, .article-title { font-size: 30px; }
  .article-lead { font-size: 21px; }
}
