/* Yellow Kopas — dom u mediteranskom stilu
   Self-hosted stylesheet, no external fonts/CDN. */

:root{
  --bg: oklch(0.98 0.008 75);
  --bg-panel: oklch(0.955 0.01 75);
  --border: oklch(0.9 0.012 75);
  --text: oklch(0.27 0.03 250);
  --text-muted: oklch(0.45 0.02 250);
  --text-faint: oklch(0.6 0.02 250);
  --blue: oklch(0.52 0.1 230);
  --blue-dark: oklch(0.30 0.07 235);
  --gold: oklch(0.64 0.09 55);
  --gold-light: oklch(0.78 0.06 75);
  --white: oklch(1 0 0);

  --font-serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius: 4px;
  --container: 1200px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: var(--blue); }
a:hover{ color: var(--blue-dark); }
input, textarea, select, button{ font-family: var(--font-sans); }
h1,h2,h3{ font-family: var(--font-serif); font-weight: 500; margin: 0; }
p{ margin: 0; }
button{ cursor: pointer; }

@keyframes yk-fade{ from{ opacity:0; transform: translateY(6px); } to{ opacity:1; transform: translateY(0); } }
.fade-in{ animation: yk-fade .4s ease; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ---------- Top bar ---------- */
.topbar{
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: .03em;
}

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: oklch(0.98 0.008 75 / 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .container{
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo{
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: inherit;
}
.logo-word{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--blue-dark);
}
.logo-tag{
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.main-nav{
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a{
  font-size: 15px;
  color: var(--text);
}
.main-nav a:hover, .main-nav a.active{ color: var(--blue); }

.cart-btn{
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 14px;
}
.cart-icon{
  width: 16px; height: 12px;
  border: 2px solid var(--white);
  border-top: none;
  border-radius: 0 0 3px 3px;
  display: inline-block;
}
.cart-badge{
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; padding: 0 4px;
}
.cart-badge[hidden]{ display: none; }

/* ---------- Buttons ---------- */
.btn{
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
}
.btn-primary{ background: var(--blue); color: var(--white); }
.btn-primary:hover{ background: var(--blue-dark); color: var(--white); }
.btn-outline{ background: none; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover{ color: var(--blue); border-color: var(--blue); }
.btn-sm{ padding: 9px 16px; font-size: 13.5px; border-radius: 20px; }
.btn-link{ background: none; border: none; color: var(--blue); font-size: 14px; padding: 0; }
.btn-add-cart{
  background: oklch(0.52 0.1 230 / 0.1);
  color: var(--blue-dark);
  border: none;
  padding: 7px 12px;
  font-size: 12px;
  border-radius: 2px;
}
.btn-add-cart:hover{ background: oklch(0.52 0.1 230 / 0.2); }

/* ---------- Sections / hero ---------- */
section{ }
.section-pad{ padding: 64px 24px; }
.hero{
  padding: 56px 24px 64px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-copy{ flex: 1 1 420px; min-width: 280px; }
.eyebrow{
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-copy h1{
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  margin: 14px 0 20px;
  color: var(--text);
}
.hero-copy p{
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 28px;
}
.btn-row{ display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media, .media-box{
  flex: 1 1 420px;
  min-width: 280px;
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
}
.hero-media img, .media-box img{
  width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Trust bar ---------- */
.trust-bar{
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar .container{
  padding: 32px 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-item{
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-dot{
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: oklch(0.52 0.1 230 / 0.12);
}
.trust-dot.gold{ background: oklch(0.64 0.09 55 / 0.15); }
.trust-title{ font-size: 14px; font-weight: 600; }
.trust-desc{ font-size: 13px; color: var(--text-muted); }

/* ---------- Section heading row ---------- */
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-title{
  font-size: clamp(26px, 3vw, 34px);
  margin: 0;
}
.section-title-center{
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 36px;
  text-align: center;
}

/* ---------- Category grid ---------- */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.cat-tile{
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
}
.cat-tile img{ width: 100%; height: 100%; object-fit: cover; }
.cat-tile-label{
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, transparent 55%, oklch(0.27 0.03 250 / 0.6));
}
.cat-tile-label span{ color: var(--white); font-size: 15px; font-weight: 500; }

.chip-row{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.chip{
  border: 1px solid var(--border);
  background: var(--white);
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 13.5px;
  color: var(--text);
}
.chip.active{ background: var(--blue); border-color: var(--blue); color: var(--white); }
.chip:hover{ border-color: var(--blue); color: var(--blue); }
.chip.active:hover{ color: var(--white); }

/* ---------- Product grid / card ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.product-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-card:hover{ box-shadow: 0 6px 20px oklch(0.27 0.03 250 / 0.08); }
.product-card-link{ display: block; color: inherit; }
.product-media{ position: relative; aspect-ratio: 4/5; background: var(--bg-panel); }
.product-media img{ width: 100%; height: 100%; object-fit: cover; }
.product-body{ padding: 14px; padding-bottom: 42px; }
.product-cat{
  font-size: 11px; letter-spacing: .05em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 4px;
}
.product-name{ font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.product-row{ display: flex; justify-content: space-between; align-items: center; }
.product-price{ font-size: 15px; color: var(--blue-dark); font-weight: 600; }
.product-card > .btn-add-cart{ position: absolute; right: 14px; bottom: 14px; }

/* ---------- Story section ---------- */
.story{
  padding: 64px 24px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap-reverse;
}
.story-media{ flex: 1 1 380px; min-width: 280px; position: relative; aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; }
.story-media img{ width: 100%; height: 100%; object-fit: cover; }
.story-copy{ flex: 1 1 380px; min-width: 280px; }
.story-copy h2{ font-size: clamp(26px, 3vw, 34px); margin: 14px 0 16px; }
.story-copy p{ font-size: 15.5px; line-height: 1.7; color: var(--text-muted); margin: 0 0 20px; }

/* ---------- Blog / articles ---------- */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.blog-grid.wide{ grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.article-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: inherit;
}
.article-card:hover{ color: inherit; box-shadow: 0 6px 20px oklch(0.27 0.03 250 / 0.08); }
.article-media{ position: relative; aspect-ratio: 16/10; background: var(--bg-panel); }
.article-media img{ width: 100%; height: 100%; object-fit: cover; }
.article-body{ padding: 16px; }
.article-tag{ font-size: 11px; letter-spacing: .05em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.article-title{ font-family: var(--font-serif); font-size: 19px; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.article-excerpt{ font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.article-date{ font-size: 12px; color: var(--text-faint); margin-top: 10px; }

/* ---------- Testimonials ---------- */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card{ background: var(--bg-panel); padding: 24px; border-radius: var(--radius); }
.testimonial-quote{ font-size: 14.5px; line-height: 1.6; color: oklch(0.35 0.02 250); margin: 0 0 14px; font-style: italic; }
.testimonial-author{ font-size: 13px; font-weight: 600; }

/* ---------- Newsletter ---------- */
.newsletter{ background: var(--blue-dark); padding: 56px 24px; }
.newsletter-inner{ max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter h2{ color: var(--white); font-size: clamp(24px, 3vw, 30px); margin: 0 0 12px; }
.newsletter p{ color: oklch(1 0 0 / 0.8); font-size: 14.5px; margin: 0 0 24px; }
.newsletter-form{ display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input{ flex: 1; min-width: 200px; padding: 12px 14px; border: none; border-radius: 2px; font-size: 14px; }
.newsletter-form button{ background: var(--gold-light); color: var(--text); border: none; padding: 12px 22px; border-radius: 2px; font-size: 14px; font-weight: 600; }

/* ---------- Breadcrumb / page shell ---------- */
.breadcrumb{ font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumb a{ color: var(--text-muted); }
.breadcrumb a:hover{ color: var(--blue); }
.page{ max-width: var(--container); margin: 0 auto; padding: 40px 24px 72px; }
.page-narrow{ max-width: 760px; margin: 0 auto; padding: 40px 24px 72px; }
.page h1{ font-size: clamp(28px, 4vw, 40px); margin: 0 0 28px; }
.page-lead{ font-size: 15.5px; color: var(--text-muted); max-width: 640px; margin: 0 0 36px; line-height: 1.6; }

/* ---------- Product detail ---------- */
.product-detail{ display: flex; gap: 48px; flex-wrap: wrap; }
.product-gallery{ flex: 1 1 400px; min-width: 280px; position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; }
.product-gallery img{ width: 100%; height: 100%; object-fit: cover; }
.product-info{ flex: 1 1 380px; min-width: 280px; }
.product-info .product-cat{ font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.product-info h1{ font-size: clamp(28px, 4vw, 38px); margin: 0 0 14px; }
.price-lg{ font-size: 24px; font-weight: 600; color: var(--blue-dark); margin-bottom: 18px; }
.product-info .desc{ font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0 0 24px; }
.shipping-note{ border-top: 1px solid var(--border); padding-top: 20px; }
.shipping-note .t{ font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.shipping-note .d{ font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.related-title{ font-size: 24px; margin: 0 0 24px; }
.related-block{ margin-top: 64px; }

/* ---------- Article detail ---------- */
.article-detail h1{ font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; line-height: 1.15; }
.article-meta{ font-size: 13px; color: var(--text-faint); margin-bottom: 28px; }
.article-cover{ position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.article-cover img{ width: 100%; height: 100%; object-fit: cover; }
.article-body-text{ font-size: 16.5px; line-height: 1.8; color: var(--text); }
.article-body-text p{ margin: 0 0 20px; }
.related-articles{ margin-top: 56px; border-top: 1px solid var(--border); padding-top: 32px; }
.related-articles h2{ font-size: 22px; margin: 0 0 20px; }
.related-articles-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.related-articles-grid a{ color: inherit; display: block; }
.related-articles-grid .article-tag{ margin-bottom: 6px; }
.related-articles-grid .t{ font-family: var(--font-serif); font-size: 16px; font-weight: 500; line-height: 1.35; }

/* ---------- About ---------- */
.values-section{ background: var(--bg-panel); padding: 56px 24px; }
.values-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.value-dot{ width: 32px; height: 32px; border-radius: 50%; background: oklch(0.52 0.1 230 / 0.15); margin-bottom: 12px; }
.value-dot.gold{ background: oklch(0.64 0.09 55 / 0.18); }
.value-title{ font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.value-desc{ font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.cta-section{ padding: 56px 24px; text-align: center; }
.cta-section h2{ font-size: 26px; margin: 0 0 16px; }

/* ---------- Contact ---------- */
.contact-grid{ display: flex; gap: 48px; flex-wrap: wrap; }
.contact-info{ flex: 1 1 280px; min-width: 240px; }
.contact-item{ margin-bottom: 22px; }
.contact-item .label{ font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item .value{ font-size: 15px; }
.social-row{ display: flex; gap: 12px; margin-top: 8px; }
.social-dot{
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-muted);
}
.contact-form{ flex: 1 1 380px; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.contact-map{ margin-top: 48px; position: relative; aspect-ratio: 16/6; border-radius: var(--radius); overflow: hidden; }
.contact-map img{ width: 100%; height: 100%; object-fit: cover; }
.contact-map-caption{
  position: absolute; left: 16px; bottom: 16px;
  background: oklch(1 0 0 / 0.85); color: var(--text);
  font-size: 13px; padding: 8px 14px; border-radius: 2px;
}

/* ---------- Forms ---------- */
.field{
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  width: 100%;
}
textarea.field{ resize: vertical; }
.field-row{ display: flex; gap: 14px; flex-wrap: wrap; }
.field-row .field{ flex: 1; min-width: 140px; }
.radio-row{ display: flex; gap: 8px; align-items: center; font-size: 14px; }
.form-label-sm{ font-size: 13px; font-weight: 600; margin-top: 8px; }
.success-banner{
  background: oklch(0.52 0.1 230 / 0.1);
  border: 1px solid var(--blue);
  color: var(--blue-dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}
.error-banner{
  background: oklch(0.64 0.09 55 / 0.12);
  border: 1px solid var(--gold);
  color: oklch(0.4 0.1 40);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ---------- Legal pages ---------- */
.legal{ font-size: 15.5px; line-height: 1.8; color: oklch(0.35 0.02 250); }
.legal h2{ font-size: 19px; font-weight: 600; margin: 28px 0 10px; }
.legal p{ margin: 0 0 4px; }
.legal p + p{ margin-top: 10px; }
.legal-table{ width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.legal-table td{ padding: 10px 0; border-bottom: 1px solid var(--border); }
.legal-table td:last-child{ text-align: right; }
.legal-table.left td:last-child{ text-align: left; }

/* ---------- Checkout ---------- */
.checkout-grid{ display: flex; gap: 48px; flex-wrap: wrap; }
.checkout-form{ flex: 1 1 380px; min-width: 280px; display: flex; flex-direction: column; gap: 14px; }
.order-summary{ flex: 1 1 300px; min-width: 260px; background: var(--bg-panel); padding: 24px; border-radius: var(--radius); align-self: flex-start; }
.order-summary .heading{ font-weight: 600; font-size: 15px; margin-bottom: 16px; }
.order-line{ display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 10px; }
.order-total{ border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; display: flex; justify-content: space-between; font-weight: 600; font-size: 15px; }
.order-empty{ font-size: 13.5px; color: var(--text-muted); }

/* ---------- Thank you ---------- */
.thankyou{ max-width: 600px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.thankyou-dot{ width: 56px; height: 56px; border-radius: 50%; background: oklch(0.52 0.1 230 / 0.12); margin: 0 auto 24px; }
.thankyou h1{ font-size: 32px; margin: 0 0 14px; }
.thankyou p{ font-size: 15.5px; color: var(--text-muted); line-height: 1.7; margin: 0 0 28px; }

/* ---------- Cart drawer ---------- */
.cart-overlay{
  position: fixed; inset: 0; z-index: 50;
  background: oklch(0.27 0.03 250 / 0.4);
  display: none;
}
.cart-drawer{
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 51;
  width: min(400px, 100%);
  background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 24px oklch(0.27 0.03 250 / 0.15);
  transform: translateX(100%);
  transition: transform .25s ease;
}
body.cart-open .cart-overlay{ display: block; }
body.cart-open .cart-drawer{ 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 .title{ font-family: var(--font-serif); font-size: 20px; font-weight: 600; }
.cart-close{ background: none; border: none; font-size: 20px; color: var(--text-muted); }
.cart-items{ flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item{ display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item img{ width: 56px; height: 56px; flex-shrink: 0; object-fit: cover; border-radius: 2px; }
.cart-item .info{ flex: 1; }
.cart-item .name{ font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.cart-item .price{ font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.qty-row{ display: flex; align-items: center; gap: 8px; }
.qty-btn{ width: 22px; height: 22px; border: 1px solid var(--border); background: none; border-radius: 2px; line-height: 1; font-size: 13px; }
.qty-val{ font-size: 13px; min-width: 16px; text-align: center; }
.cart-item .remove{ margin-left: 8px; background: none; border: none; color: var(--gold); font-size: 12px; }
.cart-item .subtotal{ font-size: 14px; font-weight: 600; }
.cart-foot{ padding: 20px 24px; border-top: 1px solid var(--border); }
.free-ship-note{ font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
.cart-total-row{ display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.cart-checkout-btn{ width: 100%; background: var(--blue); color: var(--white); border: none; padding: 14px; font-size: 15px; border-radius: 2px; }
.cart-empty{ font-size: 14px; color: var(--text-muted); padding: 24px 0; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--blue-dark); color: oklch(1 0 0 / 0.85); margin-top: auto; }
.footer-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; padding: 56px 24px 32px; }
.footer-logo{ font-family: var(--font-serif); font-style: italic; font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.footer-about{ font-size: 13.5px; line-height: 1.6; color: oklch(1 0 0 / 0.65); }
.footer-col-title{ font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; color: var(--white); }
.footer-links{ display: flex; flex-direction: column; gap: 10px; }
.footer-links a{ color: oklch(1 0 0 / 0.7); font-size: 13.5px; }
.footer-links a:hover{ color: var(--white); }
.footer-bottom{
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding: 20px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: oklch(1 0 0 / 0.55);
}

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px oklch(0.27 0.03 250 / 0.08);
}
.cookie-banner[hidden]{ display: none; }
.cookie-banner .container{
  padding: 18px 24px;
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: space-between;
}
.cookie-text{ font-size: 13.5px; color: oklch(0.35 0.02 250); max-width: 600px; }
.cookie-actions{ display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-decline{ background: none; border: 1px solid var(--border); padding: 10px 18px; font-size: 13px; border-radius: 2px; }
.btn-cookie-accept{ background: var(--blue); color: var(--white); border: none; padding: 10px 18px; font-size: 13px; border-radius: 2px; }

/* ---------- 404 ---------- */
.error-page{ max-width: 560px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.error-page .code{ font-family: var(--font-serif); font-size: 72px; color: var(--blue); margin-bottom: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 640px){
  .site-header .container{ gap: 12px; }
  .main-nav{ gap: 16px; order: 3; width: 100%; justify-content: center; }
  .hero, .story{ text-align: left; }
}
