/* Zrnela — pražarna in kavarna. Glavna stilska datoteka. */

:root{
  --bg:#F6F1E8;
  --bg-alt:#EFE7D8;
  --card:#FBF8F1;
  --ink:#241A12;
  --ink-soft:#3B2A1E;
  --text:#5A483A;
  --text-mute:#8A7A6A;
  --border:#E0D6C6;
  --border-soft:#E9E0D0;
  --border-dotted:#DCD1BF;
  --border-cart:#EBE2D2;
  --accent:#B3541E;
  --accent-hover:#8E3F14;
  --accent-light:#C96A32;
  --accent-lighter:#D08A57;
  --input-border:#C9BCA8;
  --dark:#241A12;
  --dark-soft:#3B2A1E;
  --dark-card:#33251A;
  --dark-card2:#3B2A1E;
  --dark-border:#4A3626;
  --footer-text:#C9BCA8;
  --stock:#7A9A6A;
  --serif: Georgia, 'Times New Roman', 'Iowan Old Style', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius-pill: 999px;
  --shadow-pop: 0 18px 40px rgba(36,26,18,.28);
}

*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
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;
}
img{ max-width:100%; display:block; }
a{ color:var(--accent); text-decoration:none; }
a:hover{ color:var(--accent-hover); text-decoration:underline; }
::selection{ background:var(--accent); color:var(--bg); }
button{ font-family:inherit; }
h1,h2,h3{ font-family:var(--serif); font-weight:400; margin:0; }

@keyframes zrise{ from{opacity:0; transform:translateY(14px)} to{opacity:1; transform:none} }
@keyframes zslide{ from{transform:translateX(100%)} to{transform:none} }
@keyframes zfade{ from{opacity:0} to{opacity:1} }
.zrise{ animation:zrise .5s ease both; }

/* ===== layout helpers ===== */
.wrap{ max-width:1220px; margin:0 auto; padding:0 24px; }
.wrap-1100{ max-width:1100px; margin:0 auto; padding:0 24px; }
.wrap-1060{ max-width:1060px; margin:0 auto; padding:0 24px; }
.wrap-1000{ max-width:1000px; margin:0 auto; padding:0 24px; }
.wrap-980{ max-width:980px; margin:0 auto; padding:0 24px; }
.wrap-900{ max-width:900px; margin:0 auto; padding:0 24px; }
.wrap-820{ max-width:820px; margin:0 auto; padding:0 24px; }
.wrap-720{ max-width:720px; margin:0 auto; padding:0 24px; }

.eyebrow{
  font:11px var(--mono);
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:16px;
}
.eyebrow-light{ color:var(--accent-lighter); }

main{ flex:1; }

/* ===== top strip ===== */
.topbar{
  background:var(--dark);
  color:#EFE7D8;
  font-size:12.5px;
  letter-spacing:.06em;
  padding:9px 24px;
  display:flex;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  text-transform:uppercase;
  text-align:center;
}
.topbar span.dot{ opacity:.45; }
.topbar a{ color:inherit; }

/* ===== header ===== */
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(246,241,232,.94);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.site-header .wrap{
  padding:16px 24px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); }
.brand:hover{ text-decoration:none; color:var(--ink); }
.brand-mark{
  width:34px; height:34px; border-radius:50%;
  background:var(--accent); color:var(--bg);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--serif); font-size:20px; flex-shrink:0;
}
.brand-name{ font-family:var(--serif); font-size:27px; letter-spacing:.01em; }

.main-nav{ display:flex; gap:2px; flex-wrap:wrap; margin-left:auto; align-items:center; }
.main-nav a{
  padding:8px 11px; font-size:14.5px; color:var(--ink-soft);
  text-decoration:none; position:relative; white-space:nowrap;
}
.main-nav a:hover{ color:var(--accent); text-decoration:none; }
.main-nav a .underline{
  position:absolute; left:11px; right:11px; bottom:2px; height:1.5px;
  background:var(--accent); opacity:0;
}
.main-nav a.active .underline{ opacity:1; }
.main-nav a.active{ color:var(--accent); }

.cart-btn{
  border:1px solid var(--ink); background:var(--ink); color:var(--bg);
  padding:10px 16px; border-radius:var(--radius-pill);
  font-size:14px; cursor:pointer; display:flex; align-items:center; gap:8px;
  white-space:nowrap;
}
.cart-btn:hover{ background:var(--accent); border-color:var(--accent); }
.cart-count{
  background:var(--bg); color:var(--ink); border-radius:var(--radius-pill);
  min-width:21px; height:21px; display:inline-flex; align-items:center;
  justify-content:center; font-size:12px; font-weight:700;
}

.nav-toggle{
  display:none; margin-left:auto; border:1px solid var(--border); background:transparent;
  width:40px; height:40px; border-radius:8px; cursor:pointer; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:18px; height:2px; background:var(--ink); position:relative;
  transition:transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }

/* ===== buttons ===== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border-radius:var(--radius-pill); border:none; cursor:pointer;
  font-family:var(--sans); font-size:15.5px; padding:15px 28px;
  text-decoration:none; line-height:1.2;
}
.btn:hover{ text-decoration:none; }
.btn-primary{ background:var(--accent); color:var(--bg); }
.btn-primary:hover{ background:var(--accent-hover); color:var(--bg); }
.btn-dark{ background:var(--ink); color:var(--bg); }
.btn-dark:hover{ background:var(--accent); color:var(--bg); }
.btn-outline{ background:transparent; color:var(--ink); border:1px solid var(--input-border); }
.btn-outline:hover{ border-color:var(--ink); color:var(--ink); }
.btn-line{ background:transparent; color:var(--ink); border:1px solid var(--ink); }
.btn-line:hover{ background:var(--ink); color:var(--bg); }
.btn-sm{ padding:8px 14px; font-size:13.5px; border-radius:var(--radius-pill); border:1px solid var(--ink); background:transparent; color:var(--ink); }
.btn-sm:hover{ background:var(--ink); color:var(--bg); }
.btn-square{ border-radius:0; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

.chip{
  border:1px solid var(--input-border); background:transparent; padding:9px 18px;
  border-radius:var(--radius-pill); font-size:14px; cursor:pointer; color:var(--ink-soft);
}
.chip:hover{ border-color:var(--ink); }
.chip.active{ background:var(--ink); color:var(--bg); border-color:var(--ink); }

/* ===== hero ===== */
.hero{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
  padding:72px 24px 40px;
}
.hero h1{
  font-size:clamp(40px,6vw,76px); line-height:1.02; margin:0 0 22px; letter-spacing:-.01em;
}
.hero h1 em{ color:var(--accent); font-style:italic; }
.hero p.lead{ font-size:18px; line-height:1.65; color:var(--text); max-width:520px; margin:0 0 32px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:36px; margin-top:44px; flex-wrap:wrap; }
.hero-stats .num{ font-family:var(--serif); font-size:34px; }
.hero-stats .lbl{ font-size:13px; color:var(--text-mute); }

.hero-media{ display:grid; grid-template-rows:auto auto; gap:14px; }
.hero-media-main{ height:380px; }
.hero-media-sub{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.hero-media-sub .ph{ height:150px; }

.ph{
  background:var(--border); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  position:relative;
}
.ph img{ width:100%; height:100%; object-fit:cover; }

/* ===== generic sections ===== */
.section{ padding:72px 24px; }
.section-tight{ padding:56px 24px; }
.section-alt{ background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-dark{ background:var(--dark); color:#EFE7D8; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px;
  margin-bottom:34px; flex-wrap:wrap;
}
h2.title{ font-size:clamp(30px,4vw,44px); }
h1.page-title{ font-size:clamp(36px,6vw,62px); line-height:1.05; margin:0 0 18px; }

.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.grid-3-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.grid-4-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.grid-2-cards{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.grid-2-tight{ display:grid; grid-template-columns:1fr 1fr; gap:6px 40px; }

.feature-block .ft{ font-family:var(--serif); font-size:26px; margin-bottom:8px; }
.feature-block p{ margin:0; color:var(--text); line-height:1.6; font-size:15.5px; }

/* ===== product card ===== */
.product-card{
  border:1px solid var(--border); background:var(--card);
  display:flex; flex-direction:column;
}
.product-card .ph{ height:190px; }
.product-card .tag{
  position:absolute; top:10px; left:10px; background:var(--ink); color:#EFE7D8;
  font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; padding:4px 8px;
}
.product-body{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-body .pname{ font-family:var(--serif); font-size:22px; line-height:1.15; }
.product-body .pnote{ font-size:13.5px; color:var(--text-mute); line-height:1.5; flex:1; }
.product-body .pstock{ font:10.5px var(--mono); letter-spacing:.1em; text-transform:uppercase; color:var(--stock); }
.product-body .prow{ display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.product-body .pprice{ font-size:17px; font-weight:500; }
.shop .product-card .ph{ height:200px; }
.shop .product-body .pprice{ font-size:18px; }

/* ===== reviews ===== */
.review-card{ border:1px solid var(--border); background:var(--card); padding:26px; }
.review-card .stars{ color:var(--accent); letter-spacing:.2em; margin-bottom:12px; }
.review-card p{ margin:0 0 16px; line-height:1.65; color:var(--ink-soft); font-size:16px; }
.review-card .who{ font-size:13.5px; color:var(--text-mute); }

/* ===== newsletter ===== */
.newsletter{ text-align:center; }
.newsletter-form{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.newsletter-form input{ width:300px; max-width:100%; }
.newsletter .fine{ font-size:12.5px; color:var(--text-mute); margin-top:14px; }

/* ===== forms ===== */
input[type=text], input[type=email], input[type=tel], input[type=search], textarea, select{
  border:1px solid var(--input-border); background:var(--card);
  padding:14px 16px; font-size:15px; font-family:var(--sans); color:var(--ink);
  width:100%; border-radius:0;
}
textarea{ resize:vertical; }
input::placeholder, textarea::placeholder{ color:#9A8B78; }
input:focus, textarea:focus, select:focus{ outline:2px solid var(--accent); outline-offset:1px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.field-row .span-2{ grid-column:span 2; }
.form-stack{ display:flex; flex-direction:column; gap:12px; }
.checkbox-row{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; color:var(--text); line-height:1.5; }
.checkbox-row input{ width:auto; margin-top:3px; flex-shrink:0; }
.choice{
  border:1px solid var(--input-border); padding:14px 16px; display:flex; gap:12px;
  align-items:center; cursor:pointer; background:var(--card);
}
.choice input{ width:auto; }
.choice .grow{ flex:1; }
.hp-field{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; overflow:hidden; }

.form-msg{
  border:1px solid var(--border); background:var(--bg-alt); padding:14px 18px;
  margin-bottom:20px; font-size:14.5px; color:var(--ink-soft);
}
.form-msg.error{ border-color:#B3541E; background:#F7E6DA; }

/* ===== footer ===== */
.site-footer{ background:var(--dark); color:var(--footer-text); margin-top:auto; }
.footer-grid{
  max-width:1220px; margin:0 auto; padding:56px 24px 30px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
}
.footer-brand .brand-name{ color:#EFE7D8; }
.footer-brand p{ margin:14px 0; line-height:1.65; font-size:14.5px; max-width:320px; }
.footer-brand .legalinfo{ font-size:13.5px; line-height:1.7; }
.footer-col{ display:flex; flex-direction:column; gap:9px; font-size:14.5px; }
.footer-col .h{ color:#EFE7D8; font-size:12px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:4px; }
.footer-col a{ color:var(--footer-text); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ border-top:1px solid var(--dark-soft); }
.footer-bottom .wrap{
  padding:18px 24px; display:flex; justify-content:space-between; gap:20px;
  flex-wrap:wrap; font-size:13px;
}
.footer-bottom a{ color:var(--accent-lighter); }

/* ===== cart drawer ===== */
.cart-overlay{
  position:fixed; inset:0; z-index:60; display:none;
  justify-content:flex-end;
}
.cart-overlay.open{ display:flex; }
.cart-scrim{ position:absolute; inset:0; background:rgba(36,26,18,.45); border:none; padding:0; cursor:pointer; }
.cart-panel{
  position:relative; width:420px; max-width:92vw; background:var(--bg); height:100%;
  display:flex; flex-direction:column; border-left:1px solid var(--border);
  animation:zslide .28s ease both;
}
.cart-head{
  padding:22px 24px; border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
}
.cart-head .t{ font-family:var(--serif); font-size:28px; }
.cart-close{ border:none; background:transparent; font-size:22px; cursor:pointer; color:var(--text-mute); }
.cart-items{ flex:1; overflow:auto; padding:8px 24px; }
.cart-empty{ padding:60px 0; text-align:center; color:var(--text-mute); line-height:1.7; }
.cart-line{
  display:grid; grid-template-columns:64px 1fr auto; gap:14px; padding:16px 0;
  border-bottom:1px solid var(--border-soft); align-items:center;
}
.cart-line .thumb{ height:64px; width:64px; background:var(--border); border:1px solid var(--border); overflow:hidden; }
.cart-line .thumb img{ width:100%; height:100%; object-fit:cover; }
.cart-line .name{ font-size:15.5px; line-height:1.3; }
.cart-line .price{ font-size:13px; color:var(--text-mute); }
.qty-ctrl{ display:flex; align-items:center; gap:8px; margin-top:8px; }
.qty-ctrl button{
  width:26px; height:26px; border:1px solid var(--input-border); background:transparent; cursor:pointer;
  font-family:var(--sans);
}
.qty-ctrl .qty{ min-width:18px; text-align:center; font-size:14px; }
.qty-ctrl .remove{ border:none; background:transparent; color:var(--text-mute); font-size:12.5px; cursor:pointer; text-decoration:underline; }
.cart-line .linetotal{ font-size:15.5px; white-space:nowrap; }
.cart-summary{ border-top:1px solid var(--border); padding:20px 24px 24px; background:var(--bg-alt); }
.cart-summary .row{ display:flex; justify-content:space-between; font-size:14.5px; color:var(--text); margin-bottom:6px; }
.cart-summary .row.total{ font-size:20px; color:var(--ink); margin-bottom:14px; }
.cart-summary .note{ font-size:12.5px; color:var(--text-mute); margin-bottom:14px; }

/* ===== cookie banner ===== */
.cookie-banner{
  position:fixed; left:20px; bottom:20px; z-index:70; max-width:460px;
  background:var(--dark); color:#EFE7D8; padding:24px 26px; border:1px solid var(--dark-soft);
  box-shadow:var(--shadow-pop); display:none;
}
.cookie-banner.show{ display:block; animation:zfade .3s ease both; }
.cookie-banner .t{ font-family:var(--serif); font-size:24px; margin-bottom:8px; }
.cookie-banner p{ margin:0 0 16px; font-size:14.5px; line-height:1.6; color:#C9BCA8; }
.cookie-banner .actions{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-banner a{ color:var(--accent-lighter); }
.cookie-banner .btn-outline{ border-color:var(--dark-soft); color:#EFE7D8; background:transparent; }
.cookie-banner .btn-outline:hover{ border-color:#EFE7D8; }
.cookie-banner .btn-link{ background:transparent; color:#C9BCA8; text-decoration:underline; padding:11px 8px; border-radius:0; font-size:14px; border:none; cursor:pointer; }
.cookie-banner .btn-link:hover{ color:#fff; text-decoration:underline; }
@media (max-width:520px){
  .cookie-banner{ left:12px; right:12px; bottom:12px; max-width:none; }
}

/* ===== menu page ===== */
.menu-group{ margin-bottom:48px; }
.menu-group-head{ display:flex; align-items:baseline; gap:14px; margin-bottom:18px; flex-wrap:wrap; }
.menu-group-head h2{ font-size:34px; }
.menu-group-head .rule{ flex:1; height:1px; background:var(--border); min-width:20px; }
.menu-group-head .hint{ font:11px var(--mono); letter-spacing:.12em; text-transform:uppercase; color:var(--text-mute); }
.menu-item{
  display:flex; gap:12px; align-items:baseline; padding:11px 0; border-bottom:1px dotted var(--border-dotted);
}
.menu-item .mname{ font-size:16.5px; color:var(--ink); }
.menu-item .mdesc{ font-size:13px; color:var(--text-mute); line-height:1.45; }
.menu-item .grow{ flex:1; }
.menu-item .mprice{ font-size:16px; white-space:nowrap; }
.menu-note{ background:var(--bg-alt); border:1px solid var(--border); padding:26px 28px; }
.menu-note .t{ font-family:var(--serif); font-size:24px; margin-bottom:8px; }
.menu-note p{ margin:0; color:var(--text); line-height:1.65; font-size:15px; }

/* ===== places ===== */
.place-card{ border:1px solid var(--border); background:var(--card); display:grid; grid-template-columns:320px 1fr; }
.place-card .ph{ min-height:230px; }
.place-body{ padding:28px 30px; }
.place-body .pname{ font-family:var(--serif); font-size:32px; margin-bottom:6px; }
.place-body .paddr{ color:var(--accent); font-size:14.5px; margin-bottom:14px; }
.place-body p{ margin:0 0 16px; color:var(--text); line-height:1.65; }
.place-meta{ display:flex; gap:34px; flex-wrap:wrap; font-size:14.5px; color:var(--ink-soft); }
.place-meta .lbl{ font:10.5px var(--mono); letter-spacing:.12em; text-transform:uppercase; color:var(--text-mute); margin-bottom:4px; }

/* ===== courses ===== */
.course-card{ border:1px solid var(--border); background:var(--card); padding:28px; display:flex; flex-direction:column; gap:10px; }
.course-card .level{ font:10.5px var(--mono); letter-spacing:.14em; text-transform:uppercase; color:var(--accent); }
.course-card .ctitle{ font-family:var(--serif); font-size:30px; line-height:1.1; }
.course-card p{ margin:0; color:var(--text); line-height:1.65; flex:1; }
.course-card .cfoot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--border-cart); padding-top:14px; margin-top:6px; flex-wrap:wrap; gap:8px; }
.course-card .cwhen{ font-size:14px; color:var(--text-mute); }
.course-card .cprice{ font-size:19px; }
.b2b-band{ margin-top:44px; background:var(--dark); color:#EFE7D8; padding:40px 44px; display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; }
.b2b-band .t{ font-family:var(--serif); font-size:32px; margin-bottom:8px; }
.b2b-band p{ margin:0; color:#C9BCA8; line-height:1.65; max-width:640px; }

/* ===== blog ===== */
.blog-card{ border:1px solid var(--border); background:var(--card); overflow:hidden; }
.blog-card .ph{ height:180px; }
.blog-card .bbody{ padding:24px 26px 28px; }
.blog-card .meta{ font:10.5px var(--mono); letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute); margin-bottom:10px; }
.blog-card h2{ font-size:28px; margin:0 0 10px; line-height:1.15; }
.blog-card p{ margin:0 0 14px; color:var(--text); line-height:1.65; }
.post-hero{ height:300px; margin-bottom:30px; }
.post-body p{ font-size:17.5px; line-height:1.75; color:var(--ink-soft); margin:0 0 20px; }
.post-foot{ border-top:1px solid var(--border); margin-top:24px; padding-top:20px; font-size:14.5px; color:var(--text-mute); }

/* ===== contact ===== */
.company-card{ background:var(--bg-alt); border:1px solid var(--border); padding:30px 32px; }
.company-card .t{ font-family:var(--serif); font-size:28px; margin-bottom:18px; }
.company-rows{ display:flex; flex-direction:column; gap:14px; font-size:15px; line-height:1.6; color:var(--ink-soft); }
.company-rows .lbl{ font:10.5px var(--mono); letter-spacing:.12em; text-transform:uppercase; color:var(--text-mute); }
.faq-item{ border-bottom:1px solid var(--border-soft); padding:18px 0; }
.faq-item .q{ font-size:17px; margin-bottom:6px; font-weight:500; }
.faq-item .a{ color:var(--text); line-height:1.65; font-size:15px; }

/* ===== checkout ===== */
.checkout-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:start; }
.checkout-step{ font:11px var(--mono); letter-spacing:.16em; text-transform:uppercase; color:var(--text-mute); margin-bottom:12px; }
.order-summary{ border:1px solid var(--border); background:var(--card); padding:24px; position:sticky; top:110px; }
.order-summary .t{ font-family:var(--serif); font-size:26px; margin-bottom:16px; }
.order-line{ display:flex; justify-content:space-between; gap:12px; padding:9px 0; border-bottom:1px solid var(--border-cart); font-size:14.5px; }
.order-summary .row{ display:flex; justify-content:space-between; padding:10px 0; font-size:14.5px; color:var(--text); }
.order-summary .row.first{ padding-top:12px; }
.order-summary .row.grand{ padding-top:12px; border-top:1px solid var(--ink); margin-top:6px; font-size:20px; color:var(--ink); }
.order-done{ text-align:center; padding:60px 20px; }
.order-done .t{ font-family:var(--serif); font-size:clamp(36px,6vw,54px); margin-bottom:14px; }
.order-done p{ font-size:17px; color:var(--text); line-height:1.7; max-width:520px; margin:0 auto 26px; }

/* ===== legal ===== */
.legal-section{ margin-bottom:30px; }
.legal-section h2{ font-size:27px; margin:0 0 10px; }
.legal-section p{ margin:0 0 12px; line-height:1.7; color:var(--ink-soft); font-size:16px; }
.legal-note{ background:var(--bg-alt); border:1px solid var(--border); padding:24px 26px; font-size:15px; line-height:1.65; color:var(--ink-soft); }

/* ===== milestones ===== */
.milestone{ display:grid; grid-template-columns:110px 1fr; gap:24px; padding:16px 0; border-bottom:1px solid var(--border-soft); }
.milestone .year{ font-family:var(--serif); font-size:24px; color:var(--accent); }
.milestone .txt{ color:var(--ink-soft); line-height:1.6; }

/* ===== 404 ===== */
.notfound{ text-align:center; padding:120px 24px; }
.notfound .code{ font-family:var(--serif); font-size:clamp(60px,12vw,140px); color:var(--accent); line-height:1; }

/* ===== misc ===== */
.map-photo{ margin-top:40px; height:300px; }
.trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:48px; border-top:1px solid var(--border); padding-top:32px; }
.trust-grid .t{ font-size:15.5px; font-weight:500; margin-bottom:6px; }
.trust-grid .d{ font-size:13.5px; color:var(--text-mute); line-height:1.55; }
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--ink); color:#fff; padding:10px 16px; z-index:100;
}
.skip-link:focus{ left:12px; top:12px; }

/* ===== responsive ===== */
@media (max-width:980px){
  .hero{ grid-template-columns:1fr; padding-top:44px; }
  .hero-media{ order:-1; }
  .grid-3, .grid-3-cards, .grid-4-cards{ grid-template-columns:repeat(2,1fr); }
  .grid-2, .grid-2-cards{ grid-template-columns:1fr; }
  .checkout-grid{ grid-template-columns:1fr; }
  .order-summary{ position:static; }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .place-card{ grid-template-columns:1fr; }
  .place-card .ph{ min-height:200px; }
  .b2b-band{ grid-template-columns:1fr; text-align:left; }
}
@media (max-width:760px){
  .main-nav{
    display:none; position:absolute; top:100%; left:0; right:0; background:var(--bg);
    border-bottom:1px solid var(--border); flex-direction:column; gap:0; padding:8px 24px 16px;
    box-shadow:0 12px 24px rgba(36,26,18,.08);
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding:12px 4px; width:100%; }
  .main-nav a .underline{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header .wrap{ flex-wrap:wrap; position:relative; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .grid-3, .grid-3-cards, .grid-4-cards{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .field-row .span-2{ grid-column:span 1; }
  .trust-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; padding-top:40px; }
  .cart-panel{ width:100vw; }
  .hero-media-sub{ grid-template-columns:1fr 1fr; }
}
