/* Kopusto Mar — svícky & vůně, Praha. Self-contained stylesheet (no external CDN). */

:root {
  --bg: #FBF7F1;
  --ink: #2E2823;
  --ink-soft: #3E362D;
  --muted-1: #4A4136;
  --muted-2: #5C5145;
  --muted-3: #7A6D5C;
  --muted-4: #8A7A64;
  --gold: #A8791F;
  --gold-dark: #7E5A14;
  --gold-light: #C8A45E;
  --gold-star: #C8862F;
  --border-1: #E8DCC9;
  --border-2: #EDE2D0;
  --border-3: #D9C7A8;
  --border-4: #D2BC97;
  --border-5: #C8B695;
  --surface-1: #F4EBDD;
  --surface-2: #F7F0E4;
  --surface-3: #FFFCF6;
  --dark: #2E2823;
  --dark-text: #F4EBDD;
  --dark-muted: #D6C9B4;
  --dark-border: #6E6154;
  --dark-border-2: #3E362D;
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 300; margin: 0; }
p { margin: 0; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-dark); text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: #E9D4A8; }
button { font-family: inherit; cursor: pointer; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.container-doc { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-guide { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Top announcement bar */
.topbar {
  background: var(--dark);
  color: var(--dark-text);
  font-size: 12.5px;
  letter-spacing: .06em;
  text-align: center;
  padding: 9px 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,247,241,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-1);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-title { font-family: var(--serif); font-size: 26px; letter-spacing: .14em; color: var(--ink); }
.logo-sub { font-size: 9.5px; letter-spacing: .34em; color: var(--gold); margin-top: 5px; }
.main-nav { display: flex; gap: 22px; margin-left: auto; font-size: 13.5px; letter-spacing: .05em; flex-wrap: wrap; }
.main-nav a { color: var(--ink); }
.main-nav a:hover, .main-nav a.active { color: var(--gold); text-decoration: none; }
.cart-link {
  display: flex; align-items: center; gap: 9px;
  border: 1px solid var(--border-3); border-radius: 999px;
  padding: 8px 16px; font-size: 13px; letter-spacing: .05em;
  background: var(--surface-2); color: var(--ink);
}
.cart-link:hover { background: #F0E5D2; text-decoration: none; }
.cart-count {
  min-width: 21px; height: 21px; border-radius: 999px;
  background: var(--gold); color: #FFF9EE;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11.5px;
}
.nav-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-block;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .14em;
  padding: 15px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-dark { background: var(--dark); color: var(--surface-2); }
.btn-dark:hover { background: var(--gold); color: var(--surface-2); }
.btn-outline { border-color: var(--border-5); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { border: 1px solid var(--dark-border); color: var(--dark-text); background: transparent; }
.btn-outline-light:hover { border-color: var(--gold-light); color: #E9CE93; }
.btn-small { padding: 9px 14px; font-size: 11.5px; letter-spacing: .12em; border: 1px solid var(--border-5); border-radius: 2px; background: transparent; color: var(--ink); }
.btn-small:hover { background: var(--dark); color: var(--surface-2); border-color: var(--dark); text-decoration: none; }
.btn-block { display: block; width: 100%; }

/* Hero */
.hero {
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-content { animation: fadeUp .7s ease both; }
.kicker { font-size: 11px; letter-spacing: .32em; color: var(--gold); margin-bottom: 22px; }
.hero-title { font-size: 66px; line-height: 1.06; margin: 0 0 24px; letter-spacing: -.01em; }
.hero-title br { display: inline; }
.hero-text { font-size: 16.5px; line-height: 1.75; color: var(--muted-2); max-width: 480px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border-1); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--serif); font-size: 30px; color: var(--gold); }
.hero-stat-label { font-size: 12px; color: var(--muted-3); letter-spacing: .05em; }
.hero-media { position: relative; }
.hero-img { aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-detail {
  position: absolute; bottom: -26px; left: -26px; width: 44%; aspect-ratio: 1;
  border: 8px solid var(--bg); border-radius: 3px; overflow: hidden;
}
.hero-img-detail img { width: 100%; height: 100%; object-fit: cover; }

/* Feature strip */
.strip { background: var(--surface-1); margin-top: 56px; }
.strip .container { padding: 34px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.strip-item-kicker { font-size: 11px; letter-spacing: .24em; color: var(--gold); margin-bottom: 8px; }
.strip-item-text { font-size: 14px; line-height: 1.6; color: var(--muted-1); }

/* Sections */
.section { padding: 84px 24px 0; }
.section:first-child { padding-top: 56px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: 44px; }
.section-link { font-size: 13px; letter-spacing: .12em; color: var(--gold); border-bottom: 1px solid var(--border-3); padding-bottom: 4px; white-space: nowrap; }
.section-center { text-align: center; margin-bottom: 40px; }
.section-center h2 { font-size: 44px; }
.spacer { height: 90px; }

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

/* Product / article card */
.card {
  display: flex; flex-direction: column; background: var(--surface-3);
  border: 1px solid var(--border-2); border-radius: 3px; overflow: hidden;
}
.card:hover { border-color: var(--border-4); }
.card-img { display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-1); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-wide { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-1); }
.card-img-wide img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-size: 10.5px; letter-spacing: .2em; color: var(--gold); }
.card-name { font-family: var(--serif); font-size: 23px; line-height: 1.2; color: var(--ink); }
a.card-name:hover { text-decoration: none; color: var(--gold); }
.card-notes { font-size: 13px; color: var(--muted-3); line-height: 1.55; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.price { font-size: 16px; }
.blog-body { padding: 20px; }
.blog-body-lg { padding: 22px; }
.blog-meta { font-size: 10.5px; letter-spacing: .2em; color: var(--gold); margin-bottom: 10px; }
.blog-title { font-family: var(--serif); font-size: 24px; line-height: 1.25; margin-bottom: 10px; color: var(--ink); }
.blog-title-lg { font-size: 25px; }
a.blog-title:hover { text-decoration: none; color: var(--gold); }
.blog-excerpt { font-size: 13.5px; line-height: 1.65; color: var(--muted-3); }

/* Category tiles */
.tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tile {
  position: relative; aspect-ratio: 3/2; border-radius: 3px; overflow: hidden;
  display: flex; align-items: flex-end; color: #fff;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tile::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(46,40,35,0) 40%, rgba(46,40,35,.72) 100%);
}
.tile-caption { position: relative; z-index: 2; padding: 26px; }
.tile-caption-title { font-family: var(--serif); font-size: 29px; }
.tile-caption-sub { font-size: 12.5px; }

/* Dark workshop section */
.dark-section { background: var(--dark); color: var(--dark-text); margin-top: 84px; }
.dark-section .container { padding: 78px 24px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.dark-img { aspect-ratio: 1; border-radius: 3px; overflow: hidden; }
.dark-img img { width: 100%; height: 100%; object-fit: cover; }
.dark-kicker { font-size: 11px; letter-spacing: .3em; color: var(--gold-light); margin-bottom: 18px; }
.dark-title { font-size: 42px; line-height: 1.15; margin: 0 0 22px; }
.dark-text { font-size: 15.5px; line-height: 1.8; color: var(--dark-muted); margin: 0 0 18px; }

/* Reviews */
.review-card { background: var(--surface-2); border-radius: 3px; padding: 30px; }
.stars { color: var(--gold-star); letter-spacing: .3em; font-size: 13px; margin-bottom: 14px; }
.review-text { font-family: var(--serif); font-size: 19px; line-height: 1.55; font-style: italic; color: var(--ink-soft); margin-bottom: 16px; }
.review-author { font-size: 12px; letter-spacing: .08em; color: var(--muted-4); }

/* Newsletter */
.newsletter-box { background: var(--surface-1); border-radius: 3px; padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter-title { font-size: 38px; margin-bottom: 14px; }
.newsletter-text { font-size: 15px; line-height: 1.7; color: var(--muted-2); }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }

/* Forms */
input[type=text], input[type=email], input[type=tel], input[type=search], textarea, select {
  padding: 14px 16px; border: 1px solid var(--border-3); background: var(--surface-3);
  font-family: var(--sans); font-size: 14px; outline: none; border-radius: 2px; width: 100%;
}
input[type=email].newsletter-input { flex: 1; min-width: 220px; padding: 15px 18px; border-radius: 2px; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .span-2 { grid-column: span 2; }
.checkbox-row { display: flex; gap: 10px; font-size: 12.5px; line-height: 1.6; color: var(--muted-2); align-items: flex-start; }
.checkbox-row input { width: auto; margin-top: 3px; }
.form-note { font-size: 11.5px; line-height: 1.7; color: var(--muted-3); margin-top: 14px; }
.form-msg { border-radius: 3px; padding: 16px 20px; font-size: 14px; margin-bottom: 24px; }
.form-msg-ok { background: #E9F1E4; color: #3C5A34; border: 1px solid #C6DBBB; }
.form-msg-err { background: #F6E6E1; color: #7A2E20; border: 1px solid #E7C3B7; }
.visually-hidden { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Shop */
.shop-head-text { font-size: 15.5px; line-height: 1.75; color: var(--muted-2); max-width: 640px; margin: 0 0 34px; }
.cat-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.cat-pill {
  cursor: pointer; padding: 11px 22px; font-size: 12.5px; letter-spacing: .1em; border-radius: 2px;
  border: 1px solid var(--border-3); background: transparent; color: var(--muted-1);
}
.cat-pill:hover { text-decoration: none; border-color: var(--gold); }
.cat-pill.active { border-color: var(--dark); background: var(--dark); color: var(--surface-2); }

/* Product page */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.back-link { font-size: 12.5px; letter-spacing: .1em; color: var(--muted-4); margin-bottom: 28px; display: inline-block; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-gallery .main { grid-column: span 2; aspect-ratio: 1; border-radius: 3px; overflow: hidden; }
.product-gallery .sub { aspect-ratio: 1; border-radius: 3px; overflow: hidden; }
.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-cat { font-size: 10.5px; letter-spacing: .24em; color: var(--gold); margin-bottom: 14px; }
.product-title { font-size: 46px; margin: 0 0 10px; }
.product-notes { font-size: 15px; color: var(--muted-3); margin-bottom: 22px; }
.product-price { font-size: 28px; font-family: var(--serif); margin-bottom: 26px; }
.product-desc { font-size: 15.5px; line-height: 1.8; color: var(--muted-1); margin: 0 0 26px; }
.product-meta { border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); padding: 20px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.product-meta-label { font-size: 11px; letter-spacing: .16em; color: var(--gold); margin-bottom: 5px; }
.product-meta-value { font-size: 14px; }
.product-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.product-foot-note { margin-top: 26px; font-size: 13px; line-height: 1.8; color: var(--muted-3); }

/* Cart */
.cart-title { font-size: 48px; margin: 0 0 32px; }
.cart-empty { background: var(--surface-2); padding: 56px; text-align: center; border-radius: 3px; }
.cart-empty-title { font-family: var(--serif); font-size: 26px; margin-bottom: 12px; }
.cart-empty-text { font-size: 14.5px; color: var(--muted-3); margin-bottom: 24px; }
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.cart-line { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border-1); align-items: center; flex-wrap: wrap; }
.cart-line-img { width: 88px; height: 110px; flex: none; border-radius: 2px; overflow: hidden; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; min-width: 160px; }
.cart-line-name { font-family: var(--serif); font-size: 23px; }
.cart-line-notes { font-size: 12.5px; color: var(--muted-4); margin-top: 4px; }
.cart-line-remove { cursor: pointer; font-size: 12px; color: var(--gold); margin-top: 10px; background: none; border: none; padding: 0; }
.cart-qty { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border-3); padding: 6px 12px; border-radius: 2px; }
.cart-qty button { font-size: 16px; color: var(--muted-3); background: none; border: none; }
.cart-line-total { width: 110px; text-align: right; font-size: 16px; }
.cart-summary { background: var(--surface-1); padding: 28px; border-radius: 3px; position: sticky; top: 110px; }
.cart-summary-title { font-family: var(--serif); font-size: 26px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; color: var(--muted-1); }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; padding: 16px 0 0; margin-top: 12px; border-top: 1px solid var(--border-3); }
.summary-vat { font-size: 11.5px; color: var(--muted-4); margin: 6px 0 20px; }

/* Thanks */
.thanks-box { max-width: 760px; margin: 0 auto; padding: 90px 24px; text-align: center; }
.order-no { display: inline-block; margin-top: 26px; background: var(--surface-1); padding: 18px 34px; font-family: var(--mono); font-size: 13px; letter-spacing: .1em; }

/* Guide table */
.guide-table { border: 1px solid var(--border-1); border-radius: 3px; overflow: hidden; }
.guide-table-head { display: grid; grid-template-columns: 1fr 1.1fr 1.4fr; background: var(--surface-1); padding: 16px 22px; font-size: 11px; letter-spacing: .18em; color: var(--muted-3); }
.guide-table-row { display: grid; grid-template-columns: 1fr 1.1fr 1.4fr; padding: 20px 22px; border-top: 1px solid var(--border-2); background: var(--surface-3); font-size: 14.5px; line-height: 1.6; }
.guide-room { font-family: var(--serif); font-size: 21px; }
.guide-family { color: var(--gold); }
.guide-why { color: var(--muted-2); }
h2.subhead { font-size: 38px; margin: 64px 0 24px; }
.rule-card { background: var(--surface-2); padding: 28px; border-radius: 3px; }
.rule-no { font-size: 11px; letter-spacing: .24em; color: var(--gold); margin-bottom: 10px; }
.rule-title { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.rule-text { font-size: 14.5px; line-height: 1.75; color: var(--muted-2); }
.care-step { border-left: 2px solid var(--border-4); padding: 4px 0 4px 18px; }
.care-title { font-family: var(--serif); font-size: 22px; margin-bottom: 8px; }
.care-text { font-size: 14px; line-height: 1.7; color: var(--muted-2); }

/* Blog post */
.post-meta { font-size: 11px; letter-spacing: .24em; color: var(--gold); margin-bottom: 16px; }
.post-title { font-size: 46px; line-height: 1.15; margin: 0 0 20px; }
.post-excerpt { font-size: 18px; line-height: 1.75; color: var(--muted-2); font-style: italic; margin: 0 0 32px; }
.post-hero { aspect-ratio: 16/9; border-radius: 3px; overflow: hidden; margin-bottom: 40px; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-block { margin-bottom: 32px; }
.post-block h2 { font-weight: 400; font-size: 30px; margin: 0 0 14px; }
.post-block p { font-size: 16.5px; line-height: 1.85; color: var(--ink-soft); }
.post-cta { background: var(--surface-1); padding: 32px; border-radius: 3px; margin-top: 16px; }
.post-cta-title { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; }
.post-cta-text { font-size: 15px; line-height: 1.7; color: var(--muted-2); margin-bottom: 20px; }

/* About */
.about-lead { font-size: 17px; line-height: 1.85; color: var(--muted-1); margin: 0 0 20px; }
.about-photos { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 44px 0; }
.about-photo { aspect-ratio: 3/4; border-radius: 3px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-card { background: var(--surface-2); padding: 28px; border-radius: 3px; }
.value-title { font-family: var(--serif); font-size: 24px; margin-bottom: 10px; }
.value-text { font-size: 14.5px; line-height: 1.75; color: var(--muted-2); }
.timeline-row { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid var(--border-1); }
.timeline-year { font-family: var(--serif); font-size: 24px; color: var(--gold); }
.timeline-text { font-size: 15px; line-height: 1.75; color: var(--muted-1); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-block { font-size: 15.5px; line-height: 2; color: var(--muted-1); }
.contact-sub { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--border-1); font-size: 14.5px; line-height: 1.85; color: var(--muted-2); }
.contact-sub-title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.map-box {
  margin-top: 26px; aspect-ratio: 16/9; border-radius: 3px; overflow: hidden;
  background: repeating-linear-gradient(45deg,#EFE3CD 0 10px,#E2D2B4 10px 20px);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--muted-4); font-family: var(--mono); font-size: 11px; padding: 12px;
}
.contact-form-box { background: var(--surface-1); padding: 32px; border-radius: 3px; }
.contact-form-title { font-family: var(--serif); font-size: 28px; margin-bottom: 18px; }
.contact-form-box form { display: flex; flex-direction: column; gap: 12px; }

/* FAQ */
.faq-item { border-top: 1px solid var(--border-1); padding: 20px 0; }
.faq-q { cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; background: none; border: none; width: 100%; text-align: left; padding: 0; }
.faq-q-text { font-family: var(--serif); font-size: 24px; color: var(--ink); }
.faq-sign { color: var(--gold); font-size: 20px; flex: none; }
.faq-a { font-size: 15.5px; line-height: 1.8; color: var(--muted-2); margin: 14px 0 0; max-width: 660px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Doc pages */
.doc-updated { font-size: 13px; color: var(--muted-4); margin-bottom: 38px; }
.doc-block { margin-bottom: 30px; }
.doc-block h2 { font-weight: 400; font-size: 27px; margin: 0 0 12px; }
.doc-block p { font-size: 15.5px; line-height: 1.85; color: var(--ink-soft); }
.doc-footer-box { background: var(--surface-2); padding: 26px; border-radius: 3px; font-size: 14px; line-height: 1.8; color: var(--muted-2); margin-top: 10px; }

/* Footer */
.site-footer { background: var(--dark); color: var(--dark-muted); margin-top: auto; }
.footer-grid { padding: 64px 24px 34px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-title { font-family: var(--serif); font-size: 24px; letter-spacing: .14em; color: var(--dark-text); }
.footer-brand-sub { font-size: 9.5px; letter-spacing: .34em; color: var(--gold-light); margin: 6px 0 18px; }
.footer-brand-text { font-size: 13.5px; line-height: 1.8; margin: 0 0 18px; max-width: 300px; }
.footer-addr { font-size: 13px; line-height: 1.9; }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; }
.footer-col-title { font-size: 10.5px; letter-spacing: .22em; color: var(--gold-light); margin-bottom: 6px; }
.footer-col a { color: var(--dark-muted); }
.footer-col a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom-border { border-top: 1px solid var(--dark-border-2); }
.footer-bottom { padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #9C8E7B; }
.footer-bottom-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-bottom-right button { background: none; border: none; color: #9C8E7B; font-size: 12px; padding: 0; }
.footer-bottom-right button:hover { color: var(--gold-light); text-decoration: underline; }

/* Cookie consent */
.consent-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--surface-3); border-top: 1px solid var(--border-3);
  box-shadow: 0 -10px 40px rgba(46,40,35,.12);
  display: none;
}
.consent-bar.show { display: block; }
.consent-bar .container { padding: 22px 24px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.consent-text { font-size: 13.5px; line-height: 1.7; color: var(--muted-1); max-width: 760px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent-actions button { white-space: nowrap; border: none; }
.btn-reject { cursor: pointer; border: 1px solid var(--border-5) !important; background: transparent; padding: 13px 22px; font-size: 12px; letter-spacing: .1em; }
.btn-accept { cursor: pointer; background: var(--dark); color: var(--surface-2); padding: 13px 26px; font-size: 12px; letter-spacing: .1em; }
.btn-accept:hover { background: var(--gold); }

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-media { order: -1; }
  .hero-title { font-size: 46px; }
  .strip .container { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .tiles { grid-template-columns: 1fr; }
  .dark-section .container { grid-template-columns: 1fr; }
  .dark-img { max-width: 420px; }
  .newsletter-box { grid-template-columns: 1fr; padding: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-photos { grid-template-columns: 1fr 1fr; }
  .guide-table-head, .guide-table-row { grid-template-columns: 1fr; gap: 6px; }
  .guide-table-head div:not(:first-child) { display: none; }
}
@media (max-width: 640px) {
  .main-nav { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding-top: 12px; border-top: 1px solid var(--border-1); margin-top: 12px; }
  .main-nav.open { display: flex; }
  .site-header .container { position: relative; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; background: none; border: 1px solid var(--border-3);
    border-radius: 2px; padding: 8px 12px; font-size: 12px; letter-spacing: .08em; color: var(--ink);
  }
  .cart-link { order: 2; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: span 1; }
  .about-photos { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 24px 0; }
  .product-title { font-size: 34px; }
  .product-meta { grid-template-columns: 1fr; }
}
