@import url("fonts.css");

:root {
  --bg: #faf6ef;
  --ink: #2a2620;
  --green: #2f5d3a;
  --green-dark: #244a2e;
  --green-deep: #23331f;
  --terracotta: #b4593a;
  --terracotta-dark: #98452b;
  --sand: #d9a58d;
  --border: #e2d9c8;
  --border-strong: #d9cfba;
  --card: #fdfaf4;
  --panel: #f4efe4;
  --panel-alt: #f1ece0;
  --muted-1: #5d5850;
  --muted-2: #6a6459;
  --muted-3: #504b42;
  --muted-4: #45413a;
  --muted-5: #7c7568;
  --muted-6: #8a8375;
  --heading: #23331f;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: Karla, Helvetica, Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: var(--sans); color: var(--ink); min-height: 100vh; -webkit-font-smoothing: antialiased; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--terracotta); }
::selection { background: #dfe6d4; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- top bar ---------- */
.topbar { background: var(--green); color: #e8e3d5; font-size: 13px; letter-spacing: .04em; padding: 9px 0; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; }
.topbar .contacts { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(250,246,239,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-header .wrap { padding: 16px 28px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.brand { cursor: pointer; display: flex; align-items: baseline; gap: 10px; }
.brand .name { font-family: var(--serif); font-size: 30px; letter-spacing: .02em; color: var(--green); }
.brand .tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--terracotta); }
.main-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.main-nav a { font-size: 15px; font-weight: 500; color: #3d3a33; padding-bottom: 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--green); border-bottom-color: var(--terracotta); }
.cart-link { display: flex; align-items: center; gap: 8px; background: var(--green); color: #f7f3ea; padding: 10px 16px; border-radius: 2px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.cart-link:hover { background: var(--green-dark); color: #f7f3ea; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--border-strong); border-radius: 2px; padding: 8px 10px; font-size: 20px; line-height: 1; color: var(--green-deep); }

/* ---------- buttons ---------- */
.btn { display: inline-block; cursor: pointer; border-radius: 2px; font-weight: 600; text-align: center; border: none; }
.btn-primary { background: var(--terracotta); color: #fdf9f2; padding: 15px 28px; font-size: 15px; letter-spacing: .02em; }
.btn-primary:hover { background: var(--terracotta-dark); color: #fdf9f2; }
.btn-outline { border: 1px solid #c3b8a3; color: var(--green); padding: 15px 28px; font-size: 15px; font-weight: 600; background: transparent; }
.btn-outline:hover { border-color: var(--green); background: #f1ece0; color: var(--green); }
.btn-green { background: var(--green); color: #f7f3ea; padding: 14px 26px; font-size: 15px; font-weight: 600; }
.btn-green:hover { background: var(--green-dark); color: #f7f3ea; }
.link-strong { font-size: 14px; font-weight: 600; color: var(--terracotta); }

/* ---------- hero ---------- */
.hero { padding: 56px 28px 20px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 20px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: 62px; line-height: 1.06; margin: 0 0 22px; color: var(--heading); text-wrap: pretty; }
.hero p.lead { font-size: 18px; line-height: 1.65; color: #4a463d; margin: 0 0 30px; max-width: 52ch; text-wrap: pretty; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero .stats .n { font-family: var(--serif); font-size: 34px; color: var(--green); line-height: 1; }
.hero .stats .l { font-size: 13px; color: var(--muted-2); margin-top: 6px; }
.hero-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px; gap: 14px; }
.hero-media .wide { grid-column: span 2; }
.photo { position: relative; border-radius: 2px; overflow: hidden; background: #dcd1bd; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 14px; font-family: var(--mono); font-size: 11px; color: #fff; background: linear-gradient(to top, rgba(20,26,15,.55), rgba(20,26,15,0)); }

/* ---------- trust bar ---------- */
.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-top: 48px; background: var(--panel); }
.trustbar .wrap { padding: 26px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trustbar .t { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 5px; }
.trustbar .d { font-size: 13.5px; line-height: 1.5; color: var(--muted-1); }

/* ---------- sections ---------- */
section.section { padding: 64px 28px 0; max-width: 1240px; margin: 0 auto; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
h2.h-serif { font-family: var(--serif); font-weight: 500; font-size: 40px; margin: 0; color: var(--heading); }
.section-sub { font-size: 15.5px; color: var(--muted-1); margin: 0 0 26px; }

/* ---------- category grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { border: 1px solid var(--border); background: var(--card); border-radius: 2px; overflow: hidden; }
.card:hover { border-color: var(--terracotta); }
.card .thumb { height: 132px; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 18px 20px 22px; }
.card .body .name { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
.card .body .desc { font-size: 14px; line-height: 1.55; color: var(--muted-1); }

/* ---------- product cards ---------- */
.pcard { border: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; border-radius: 2px; }
.pcard:hover { border-color: var(--terracotta); }
.pcard .thumb { height: 168px; }
.pcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pcard .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard .cat { font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); }
.pcard .name { font-size: 16px; font-weight: 700; line-height: 1.3; color: var(--heading); }
.pcard .name:hover { color: var(--terracotta); }
.pcard .short { font-size: 13px; color: var(--muted-2); line-height: 1.45; }
.pcard .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 10px; }
.pcard .price { font-family: var(--serif); font-size: 24px; color: var(--green); }
.pcard .add { background: var(--green); color: #f7f3ea; font-size: 12.5px; font-weight: 600; padding: 9px 13px; border-radius: 2px; border: none; }
.pcard .add:hover { background: var(--terracotta); }

/* ---------- calendar / dark section ---------- */
.dark-section { margin: 68px 0 0; background: var(--green); color: #eae5d8; }
.dark-section .wrap { padding: 60px 28px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.dark-section .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.dark-section h2 { font-family: var(--serif); font-weight: 500; font-size: 40px; margin: 0 0 18px; color: #fbf7ee; }
.dark-photo { height: 300px; border-radius: 2px; overflow: hidden; background: #33613e; }
.dark-photo img { width: 100%; height: 100%; object-fit: cover; }
.cal-row { display: grid; grid-template-columns: 92px 1fr; gap: 18px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 13px; }
.cal-row + .cal-row { margin-top: 14px; }
.cal-row .m { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sand); }
.cal-row .d { font-size: 14.5px; line-height: 1.55; color: #e2ddd0; }

/* ---------- article cards ---------- */
.acard { border: 1px solid var(--border); background: var(--card); border-radius: 2px; }
.acard:hover { border-color: var(--terracotta); }
.acard .thumb { height: 150px; }
.acard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.acard .body { padding: 18px 20px 22px; }
.acard .cat { font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 9px; }
.acard .title { font-family: var(--serif); font-size: 23px; line-height: 1.22; color: var(--heading); margin-bottom: 9px; }
.acard .title:hover { color: var(--terracotta); }
.acard .lead { font-size: 14px; line-height: 1.55; color: var(--muted-1); }
.acard .meta { font-size: 12px; color: var(--muted-6); margin-top: 12px; }

/* ---------- finder ---------- */
.finder-panel { background: var(--panel-alt); border: 1px solid var(--border); padding: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.finder-panel h2 { font-family: var(--serif); font-weight: 500; font-size: 34px; margin: 0 0 14px; color: var(--heading); }
.finder-panel > div > p { font-size: 15.5px; line-height: 1.6; color: var(--muted-3); margin: 0 0 20px; }
.finder-q { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { cursor: pointer; background: var(--card); color: #4a463d; padding: 9px 16px; font-size: 13.5px; font-weight: 600; border: 1px solid var(--border-strong); border-radius: 2px; }
.chip.active { background: var(--green); color: #f7f3ea; border-color: var(--green); }
.finder-result-box { background: var(--card); border: 1px solid var(--border); padding: 26px; }
.finder-result-box .eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.finder-item { border-bottom: 1px solid #eee6d8; padding-bottom: 12px; margin-bottom: 14px; }
.finder-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.finder-item .name { font-size: 15.5px; font-weight: 700; color: var(--heading); }
.finder-item .why { font-size: 13.5px; line-height: 1.5; color: var(--muted-1); margin-top: 4px; }

/* ---------- reviews ---------- */
.review-card { background: var(--card); border: 1px solid var(--border); padding: 26px; }
.review-card .stars { color: var(--terracotta); letter-spacing: .2em; font-size: 13px; margin-bottom: 12px; }
.review-card .text { font-family: var(--serif); font-size: 20px; line-height: 1.45; color: #33301f; margin-bottom: 14px; }
.review-card .who { font-size: 13px; color: var(--muted-5); }

/* ---------- newsletter ---------- */
.newsletter { margin-top: 76px; background: var(--panel); border-top: 1px solid var(--border); }
.newsletter .wrap { padding: 50px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.newsletter h3 { font-family: var(--serif); font-size: 34px; color: var(--heading); margin: 0 0 10px; }
.newsletter p { font-size: 15.5px; line-height: 1.6; color: var(--muted-3); margin: 0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type=email] { flex: 1; min-width: 220px; }

/* ---------- footer ---------- */
.site-footer { background: var(--green-deep); color: #cfd6c6; }
.site-footer .cols { max-width: 1240px; margin: 0 auto; padding: 56px 28px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 38px; }
.site-footer .brand-name { font-family: var(--serif); font-size: 30px; color: #f4efe4; margin-bottom: 12px; }
.site-footer .about { font-size: 14px; line-height: 1.75; }
.site-footer .legalinfo { font-size: 13px; line-height: 1.75; margin-top: 14px; color: #a8b39c; }
.site-footer h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); margin: 0 0 14px; }
.site-footer .links { display: grid; gap: 9px; }
.site-footer .links a { font-size: 14px; color: #cfd6c6; }
.site-footer .links a:hover { color: #f4efe4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .wrap { padding: 18px 28px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 12.5px; color: #9aa78e; }
.footer-bottom .links2 { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom button.linklike { background: none; border: none; padding: 0; color: #9aa78e; font-size: 12.5px; cursor: pointer; font-family: var(--sans); }
.footer-bottom button.linklike:hover { color: #f4efe4; }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; max-width: 1180px; margin: 0 auto; background: var(--card); border: 1px solid #c9bda6; box-shadow: 0 18px 44px rgba(35,51,31,.22); padding: 24px 26px; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 26px; align-items: center; }
.cookie-banner .title { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
.cookie-banner .text { font-size: 14px; line-height: 1.6; color: var(--muted-3); }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button { font-size: 14px; font-weight: 600; padding: 12px 20px; border-radius: 2px; }
.cookie-banner .reject { border: 1px solid #c3b8a3; color: #33301f; background: transparent; }
.cookie-banner .accept { background: var(--green); color: #f7f3ea; border: none; font-weight: 700; }
@media (max-width: 700px) { .cookie-banner { grid-template-columns: 1fr; } }

/* ---------- forms ---------- */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted-2); margin-bottom: 14px; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; padding: 12px 13px; border: 1px solid var(--border-strong); background: #fffdf8; color: #33301f; width: 100%;
}
.field textarea { resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.5; color: var(--muted-2); margin-bottom: 16px; }
.checkbox-field input { margin-top: 3px; }
.form-panel { background: var(--card); border: 1px solid var(--border); padding: 30px; }
.form-panel h3 { font-family: var(--serif); font-size: 28px; color: var(--heading); margin: 0 0 18px; }

/* ---------- generic page layouts ---------- */
main { max-width: 1240px; margin: 0 auto; padding: 46px 28px 0; }
main.narrow-top { padding-top: 40px; }
h1.page-title { font-family: var(--serif); font-weight: 500; font-size: 48px; margin: 0 0 10px; color: var(--heading); }
p.page-lead { font-size: 16px; line-height: 1.6; color: var(--muted-3); max-width: 70ch; margin: 0 0 26px; }
.crumb { font-size: 13px; color: var(--muted-6); margin-bottom: 22px; }
.crumb a { color: var(--green); }

/* shop / advice filters */
.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }

/* product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.product-photo { height: 460px; border-radius: 2px; overflow: hidden; background: #d3dbc8; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1.1; margin: 0 0 8px; color: var(--heading); }
.product-latin { font-style: italic; color: var(--muted-5); font-size: 15px; margin-bottom: 20px; }
.product-price { font-family: var(--serif); font-size: 38px; color: var(--green); margin-bottom: 6px; }
.product-stock { font-size: 13px; color: var(--muted-2); margin-bottom: 24px; }
.product-detail .desc { font-size: 16px; line-height: 1.65; color: #4a463d; margin: 0 0 24px; }
.product-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; }
.specs { border: 1px solid var(--border); background: var(--panel); }
.spec-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 12px 20px; border-bottom: 1px solid #e7dfd0; font-size: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-row .k { color: var(--muted-5); }
.spec-row .v { color: #33301f; font-weight: 500; }
.care-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.care-item { border-top: 2px solid var(--green); padding-top: 14px; }
.care-item .t { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
.care-item .d { font-size: 14px; line-height: 1.6; color: var(--muted-1); }

/* article page */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 54px; align-items: start; }
.article-layout h1 { font-family: var(--serif); font-weight: 500; font-size: 50px; line-height: 1.08; margin: 0 0 14px; color: var(--heading); text-wrap: pretty; }
.article-meta { font-size: 13px; color: var(--muted-6); margin-bottom: 26px; }
.article-photo { height: 320px; border-radius: 2px; overflow: hidden; background: #dcd1bd; margin-bottom: 30px; }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-lead { font-family: var(--serif); font-size: 24px; line-height: 1.5; color: #33301f; margin: 0 0 30px; }
.article-block { margin-bottom: 30px; }
.article-block h2 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin: 0 0 12px; color: var(--heading); }
.article-block p { font-size: 16.5px; line-height: 1.72; color: var(--muted-4); margin: 0; text-wrap: pretty; }
.tips-box { background: var(--panel-alt); border-left: 3px solid var(--terracotta); padding: 24px 28px; margin-bottom: 34px; }
.tips-box .eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; }
.tips-box .tip { font-size: 15.5px; line-height: 1.55; color: #3d3a33; margin-top: 9px; }
.article-aside { position: sticky; top: 104px; display: grid; gap: 20px; }
.aside-box { border: 1px solid var(--border); background: var(--card); padding: 22px; }
.aside-box .title { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.aside-product { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.aside-product:last-child { margin-bottom: 0; }
.aside-product .thumb { width: 52px; height: 52px; flex: none; border-radius: 2px; overflow: hidden; background: #d3dbc8; }
.aside-product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.aside-product .name { font-size: 14px; font-weight: 600; color: var(--heading); line-height: 1.3; }
.aside-product .price { font-size: 13px; color: var(--green); }
.aside-cta { background: var(--green); color: #e8e3d5; padding: 22px; }
.aside-cta .h { font-family: var(--serif); font-size: 22px; margin-bottom: 10px; }
.aside-cta p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.aside-cta a { display: inline-block; background: var(--sand); color: #33301f; font-size: 13.5px; font-weight: 700; padding: 11px 16px; }

/* about page */
.about-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.about-layout .intro p { font-size: 17.5px; line-height: 1.7; color: var(--muted-4); margin: 0 0 18px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-item { border-top: 2px solid var(--terracotta); padding-top: 14px; }
.value-item .t { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 7px; }
.value-item .d { font-size: 14px; line-height: 1.6; color: var(--muted-1); }
.about-media { display: grid; gap: 14px; }
.about-photo { border-radius: 2px; overflow: hidden; background: #dcd1bd; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-card { background: var(--panel); border: 1px solid var(--border); padding: 22px; }
.about-card .title { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
.about-card .lines { font-size: 14px; line-height: 1.8; color: var(--muted-3); }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-item { background: var(--card); border: 1px solid var(--border); padding: 22px; }
.timeline-item .y { font-family: var(--serif); font-size: 30px; color: var(--terracotta); margin-bottom: 8px; }
.timeline-item .d { font-size: 14px; line-height: 1.6; color: var(--muted-3); }

/* contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact-layout p.intro { font-size: 16.5px; line-height: 1.7; color: var(--muted-4); margin: 0 0 26px; }
.contact-row { display: grid; grid-template-columns: 150px 1fr; gap: 16px; border-bottom: 1px solid var(--border); padding-bottom: 12px; margin-bottom: 14px; }
.contact-row .k { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-5); }
.contact-row .v { font-size: 15px; line-height: 1.6; color: #33301f; }
.contact-photo { height: 240px; margin-top: 26px; border-radius: 2px; overflow: hidden; background: #dcd1bd; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

/* cart page */
.cart-empty { background: var(--panel-alt); border: 1px solid var(--border); padding: 44px; text-align: center; }
.cart-empty .h { font-family: var(--serif); font-size: 28px; color: var(--heading); margin-bottom: 10px; }
.cart-empty .d { font-size: 15.5px; color: var(--muted-1); margin-bottom: 22px; }
.cart-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 40px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 92px minmax(0,1fr) auto; gap: 18px; align-items: center; border-bottom: 1px solid var(--border); padding: 16px 0; }
.cart-line .thumb { height: 92px; border-radius: 2px; overflow: hidden; background: #d3dbc8; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .name { font-size: 17px; font-weight: 700; color: var(--heading); }
.cart-line .meta { font-size: 13.5px; color: var(--muted-5); margin: 4px 0 8px; }
.qty-row { display: flex; gap: 8px; align-items: center; }
.qty-btn { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--border-strong); background: #fffdf8; font-size: 16px; border-radius: 2px; }
.qty-val { min-width: 26px; text-align: center; font-size: 15px; font-weight: 600; }
.remove-link { font-size: 13px; color: var(--terracotta); margin-left: 10px; background: none; border: none; cursor: pointer; }
.line-sum { font-family: var(--serif); font-size: 26px; color: var(--green); }
.delivery-box { margin-top: 34px; background: var(--card); border: 1px solid var(--border); padding: 28px; }
.delivery-box h3 { font-family: var(--serif); font-size: 26px; color: var(--heading); margin: 0 0 18px; }
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-method { cursor: pointer; display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; border: 1px solid var(--border-strong); background: #fffdf8; margin-bottom: 10px; }
.pay-method.active { border-color: var(--green); background: #eef2e7; }
.pay-method .label { font-size: 15px; font-weight: 600; }
.pay-method .note { font-size: 13px; color: var(--muted-2); }
.summary-box { background: var(--panel-alt); border: 1px solid var(--border); padding: 26px; position: sticky; top: 104px; }
.summary-box .label { font-size: 15px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted-5); margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted-4); margin-bottom: 11px; }
.summary-row.small { color: var(--muted-5); font-size: 13.5px; }
.summary-total { border-top: 1px solid var(--border-strong); margin: 18px 0; padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .label2 { font-size: 16px; font-weight: 700; }
.summary-total .val { font-family: var(--serif); font-size: 34px; color: var(--green); }
.summary-hint { font-size: 13px; line-height: 1.55; color: var(--muted-2); margin-bottom: 16px; }
.summary-fine { font-size: 12.5px; line-height: 1.55; color: var(--muted-5); margin-top: 14px; }
.summary-fine a { text-decoration: underline; }

/* legal pages */
.legal-layout { display: grid; grid-template-columns: 250px minmax(0,1fr); gap: 48px; align-items: start; }
.legal-nav { position: sticky; top: 104px; display: grid; gap: 4px; }
.legal-nav .eyebrow { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.legal-nav a { font-size: 14.5px; padding: 9px 12px; border-left: 2px solid var(--border); color: var(--muted-1); }
.legal-nav a.active { border-left-color: var(--terracotta); color: var(--heading); font-weight: 700; background: var(--panel-alt); }
.legal-article { max-width: 78ch; }
.legal-article h1 { font-family: var(--serif); font-weight: 500; font-size: 44px; line-height: 1.1; margin: 0 0 12px; color: var(--heading); }
.legal-updated { font-size: 13px; color: var(--muted-6); margin-bottom: 24px; }
.legal-article .intro { font-size: 17px; line-height: 1.7; color: var(--muted-4); margin: 0 0 28px; }
.legal-section { margin-bottom: 26px; }
.legal-section h2 { font-family: var(--serif); font-weight: 500; font-size: 27px; margin: 0 0 10px; color: var(--heading); }
.legal-section p { font-size: 16px; line-height: 1.72; color: var(--muted-4); margin: 0; text-wrap: pretty; }
.legal-footnote { background: var(--panel-alt); border: 1px solid var(--border); padding: 22px 26px; font-size: 14.5px; line-height: 1.65; color: var(--muted-3); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero h1 { font-size: 44px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trustbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .dark-section .wrap { grid-template-columns: 1fr; }
  .finder-panel { grid-template-columns: 1fr; padding: 28px; }
  .product-detail { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 6px; }
  .newsletter .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .site-header.nav-open .main-nav { display: flex; flex-basis: 100%; order: 3; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 12px; }
  .hero h1 { font-size: 34px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .trustbar .wrap { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  h1.page-title { font-size: 34px; }
  .hero-media { grid-template-columns: 1fr; grid-template-rows: 180px 140px 140px; }
  .hero-media .wide { grid-column: span 1; }
}
