/* ============================================
   Skhova Chronicles — design tokens
   Black & white theme, bold display type,
   Anton / JetBrains Mono / Inter.
   ============================================ */
:root{
  --bg: #0a0a0a;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --line: #333333;
  --paper: #f7f5f1;
  --accent: #ffffff;
  --accent-soft: #ffffff;
  --muted: #b8b8b8;
}

*{box-sizing:border-box;}
html,body{margin:0; padding:0; background:var(--bg); color:var(--paper); font-family:'Inter',sans-serif; font-size:17px;}
h1,h2,h3,h4{font-family:'Anton',sans-serif; font-weight:400; margin:0; letter-spacing:0.01em;}
a{color:inherit; text-decoration:none;}
p{line-height:1.65;}

/* watermark background pattern used across pages
   Uses the clean owl icon (assets/logo-icon.png), already a white
   silhouette on a transparent background, tiled and set to low
   opacity — no color inversion needed since it's already white.
   Uses position:fixed so it never breaks position:sticky elements
   (like .topnav) or causes page overflow/scrollbars. */
.watermark-bg{
  position:relative;
}
.watermark-bg::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:url("assets/logo-icon.png");
  background-repeat:repeat;
  background-size:420px auto;
  background-position:0 0;
  opacity:0.05;
  pointer-events:none;
  z-index:0;
  animation:watermarkDrift 70s linear infinite;
}
.watermark-bg > *{ position:relative; z-index:1; }
@keyframes watermarkDrift{
  from{ background-position:0 0; }
  to{ background-position:420px 819px; }
}
@media (prefers-reduced-motion: reduce){
  .watermark-bg::before{ animation:none; }
}

/* top nav */
.topnav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 48px; border-bottom:1px solid var(--line);
  position:sticky; top:0; z-index:50;
  background:linear-gradient(180deg, rgba(22,22,22,0.95), rgba(8,8,8,0.97));
  backdrop-filter:blur(6px);
  box-shadow:0 8px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05), inset 0 -1px 0 rgba(0,0,0,0.6);
}
.topnav .brand{display:flex; align-items:center; gap:12px; font-family:'Anton',sans-serif; font-size:1.4rem; letter-spacing:0.03em;}
.topnav .brand img{height:36px; width:auto; display:block; filter:drop-shadow(0 3px 0 rgba(0,0,0,0.5)) drop-shadow(0 5px 8px rgba(0,0,0,0.4));}
.nav-links{display:flex; gap:10px; font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.03em;}
.nav-links a{
  padding:10px 15px; border-radius:9px; border:1px solid var(--line);
  background:linear-gradient(180deg, #202020, #131313); color:var(--paper);
  box-shadow:0 3px 0 rgba(0,0,0,0.5), 0 5px 10px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition:transform .1s ease, box-shadow .1s ease, background .15s ease;
}
.nav-links a:hover{background:linear-gradient(180deg, #2a2a2a, #181818); transform:translateY(-1px); box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);}
.nav-links a:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.35);}
.nav-links a.active{
  background:linear-gradient(180deg, #fbfaf8, #d8d6d1); color:#111; border-color:transparent;
  box-shadow:0 2px 0 rgba(0,0,0,0.4), 0 4px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.7);
  transform:translateY(1px);
}
.nav-right{display:flex; align-items:center; gap:14px;}
.menu-toggle{
  display:none; background:linear-gradient(180deg, #202020, #131313); border:1px solid var(--line);
  color:var(--paper); cursor:pointer; padding:9px; border-radius:10px;
  box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition:transform .1s ease, box-shadow .1s ease;
}
.menu-toggle:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);}
.mobile-menu{
  display:none; flex-direction:column; gap:0; background:var(--panel);
  border-bottom:1px solid var(--line); position:sticky; top:76px; z-index:49;
}
.mobile-menu a{padding:16px 24px; border-bottom:1px solid var(--line); font-size:0.95rem; font-weight:600;}
.mobile-menu.open{display:flex;}
.cart-btn{
  border:1px solid var(--line); padding:11px 18px; font-size:0.82rem; font-weight:700; position:relative;
  cursor:pointer; background:linear-gradient(180deg, #202020, #131313); color:var(--paper);
  display:flex; align-items:center; justify-content:center; border-radius:10px;
  box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition:transform .1s ease, box-shadow .1s ease;
}
.cart-btn:hover{background:linear-gradient(180deg, #2a2a2a, #181818);}
.cart-btn:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);}
.cart-btn svg{display:block;}
.cart-btn .badge{
  position:absolute; top:-9px; right:-9px; background:linear-gradient(180deg, #fbfaf8, #d8d6d1); color:#111;
  font-size:0.68rem; font-weight:800; width:19px; height:19px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 0 rgba(0,0,0,0.4), 0 3px 6px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* 3D icon treatment — used site-wide (nav cart/menu icons through
   to the back office) for a raised, tactile look via layered
   drop-shadows rather than flat single-color strokes. */
.icon-3d{
  filter:drop-shadow(0 2px 0 rgba(0,0,0,0.5)) drop-shadow(0 3px 5px rgba(0,0,0,0.4));
}
.pill-3d{
  display:inline-block; padding:5px 12px; border-radius:999px; font-size:0.72rem; font-weight:700;
  background:linear-gradient(180deg, #fbfaf8, #cfcdc8); color:#111;
  box-shadow:0 2px 0 rgba(0,0,0,0.3), 0 3px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.7);
}

/* hero — two column, image bleeds full height right side */
.hero{
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch; min-height:640px;
}
.hero-copy{padding:100px 48px 60px; max-width:640px;}
.hero-logo{height:64px; width:auto; margin-bottom:26px;}
.hero h1{font-size:3.6rem; line-height:1.04; letter-spacing:0.005em;}
.hero-copy > p{color:var(--muted); margin-top:20px; max-width:520px; font-size:1.1rem; line-height:1.6;}
.hero-pill{
  display:flex; align-items:center; gap:0; margin-top:32px;
  border:1.5px solid var(--line); border-radius:999px; padding:6px 6px 6px 22px;
  max-width:420px; background:rgba(255,255,255,0.03);
}
.hero-pill span{flex:1; font-size:0.92rem; color:var(--muted); font-weight:600;}
.hero-pill .cta{
  background:linear-gradient(180deg, #fbfaf8, #d8d6d1); color:#111; border:none; padding:13px 26px;
  font-size:0.85rem; font-weight:800; text-transform:uppercase; letter-spacing:0.04em;
  border-radius:999px; cursor:pointer; white-space:nowrap;
  box-shadow:0 4px 0 rgba(0,0,0,0.45), 0 8px 14px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  transition:transform .1s ease, box-shadow .1s ease;
}
.hero-pill .cta:hover{transform:translateY(-1px);}
.hero-pill .cta:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.35);}
.hero-links{margin-top:18px; font-size:0.9rem; color:var(--muted);}
.hero-links a{font-weight:700; color:var(--paper); border-bottom:1.5px solid var(--paper);}

.hero-photo{
  position:relative; overflow:hidden; border-left:1px solid var(--line);
  box-shadow:inset 0 0 0 2px rgba(255,255,255,0.06), inset 0 30px 60px -25px rgba(0,0,0,0.75), inset 0 -30px 60px -25px rgba(0,0,0,0.75);
}
.hero-photo img{width:100%; height:100%; object-fit:cover; object-position:center 15%; display:block;}
.hero-photo-card{
  position:absolute; left:28px; bottom:28px; background:rgba(10,10,10,0.72);
  backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,0.25); border-radius:16px;
  padding:18px 22px; max-width:240px;
}
.hero-photo-card-label{font-family:'Anton',sans-serif; font-size:1.1rem;}
.hero-photo-card-sub{font-size:0.78rem; color:var(--muted); margin-top:4px;}

/* stats bar */
.stats-bar{border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--panel);}
.stats-inner{max-width:900px; margin:0 auto; display:flex; justify-content:space-around; padding:36px 24px; flex-wrap:wrap; gap:24px;}
.stat{text-align:center;}
.stat-num{font-family:'Anton',sans-serif; font-size:2.2rem;}
.stat-label{font-size:0.8rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.05em; margin-top:4px;}

/* feature rows — image and text side by side, image shown at its
   own natural crop within a fixed-ratio frame (never letterboxed,
   never squeezed into an unrelated full-bleed banner). */
.feature-row{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  padding:56px 0; border-bottom:1px solid var(--line);
}
.feature-row:last-child{border-bottom:none;}
.feature-row.reverse{direction:rtl;}
.feature-row.reverse > *{direction:ltr;}
.feature-row-photo{
  aspect-ratio:4/3; overflow:hidden; border-radius:14px;
  border:1px solid rgba(255,255,255,0.1); background:var(--panel);
  box-shadow:0 18px 36px rgba(0,0,0,0.55), 0 6px 14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.feature-row-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.feature-row-copy h2{font-size:2rem; margin:8px 0 14px;}
.feature-row-copy .btn{display:inline-block; margin-top:20px;}

.cta-band{text-align:center; border-top:1px solid var(--line);}

/* page banner — used on store/perfumes/athleza pages, full width
   fixed-ratio frame, filled completely via cover */
.page-banner{
  width:100%; aspect-ratio:16/6; overflow:hidden; border-bottom:1px solid var(--line);
  box-shadow:inset 0 0 0 2px rgba(255,255,255,0.05), inset 0 30px 50px -25px rgba(0,0,0,0.8), inset 0 -30px 50px -25px rgba(0,0,0,0.8);
}
.page-banner img{width:100%; height:100%; object-fit:cover; display:block;}

/* section feature photos — fixed aspect-ratio frames, fully filled
   with cover (no empty letterbox space). object-position is tuned
   per-image inline so the important part of each photo isn't cropped
   out. */
.feature-photo-wrap{
  width:100%; aspect-ratio:21/9; margin:28px 0 40px; border-radius:14px;
  background:var(--panel); border:1px solid rgba(255,255,255,0.1); overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,0.55), 0 6px 14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.feature-photo{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* section content */
.section{padding:80px 48px;}
.section-label{font-family:'JetBrains Mono',monospace; font-size:0.78rem; font-weight:600; color:var(--paper); text-transform:uppercase; letter-spacing:0.14em; margin-bottom:12px;}
.section h2{font-size:2.4rem; margin-bottom:6px;}
.panel-box{
  background:var(--panel); border:1px solid rgba(255,255,255,0.08); padding:28px 32px; border-radius:12px;
  box-shadow:0 16px 34px rgba(0,0,0,0.4), 0 4px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:24px; margin-top:34px;}
.delivery-grid{grid-template-columns:1fr 1fr;}
.card{
  border:1px solid rgba(255,255,255,0.08); background:var(--panel); padding:20px; cursor:pointer; border-radius:12px;
  box-shadow:0 14px 28px rgba(0,0,0,0.45), 0 4px 10px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
  transition:border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover{border-color:var(--paper); transform:translateY(-4px); box-shadow:0 20px 38px rgba(0,0,0,0.5), 0 6px 14px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);}
.card img{
  width:100%; aspect-ratio:1; object-fit:cover; background:#222; margin-bottom:16px; border-radius:9px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.08), inset 0 14px 24px -14px rgba(0,0,0,0.8), inset 0 -14px 24px -14px rgba(0,0,0,0.8);
}
.card h4{font-size:1.05rem; font-family:'Inter',sans-serif; font-weight:700;}
.card .price{color:var(--paper); font-family:'JetBrains Mono',monospace; margin-top:8px; font-size:1rem; font-weight:600;}
.card button{
  width:100%; margin-top:16px; background:linear-gradient(180deg, #202020, #131313); border:1px solid var(--line);
  color:var(--paper); padding:13px; text-transform:uppercase; font-size:0.82rem; font-weight:700; letter-spacing:0.03em;
  cursor:pointer; border-radius:9px;
  box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition:transform .1s ease, box-shadow .1s ease, background .15s ease;
}
.card button:hover{border-color:var(--paper); background:linear-gradient(180deg, #2a2a2a, #181818);}
.card button:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);}

/* perfume variant selector — swaps the card's image/price on click */
.variant-swatches{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;}
.variant-swatch{
  border:1.5px solid var(--line); background:transparent; color:var(--muted);
  padding:6px 12px; font-size:0.75rem; font-weight:700; cursor:pointer; text-transform:uppercase; letter-spacing:0.02em;
}
.variant-swatch.selected{border-color:var(--paper); background:var(--paper); color:#111;}
.variant-swatch:hover{border-color:var(--paper);}

/* Photo swatches — clicking the actual picture (scent bottle, garment
   colour, etc.) selects that variant, instead of a plain text label. */
.photo-swatch{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  border:2px solid var(--line); background:var(--panel); padding:6px;
  border-radius:10px; width:72px; text-transform:none; letter-spacing:normal;
  box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
.photo-swatch img{
  width:56px; height:56px; object-fit:cover; border-radius:6px; display:block;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,0.08);
}
.photo-swatch span{
  font-size:0.66rem; font-weight:700; color:var(--muted); text-align:center;
  line-height:1.2; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%;
}
.photo-swatch.selected{border-color:var(--paper); box-shadow:0 4px 10px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.15);}
.photo-swatch.selected span{color:var(--paper);}
.photo-swatch:hover{border-color:var(--paper);}

/* product detail modal — swipeable gallery + description/details tabs */
.product-modal{position:fixed; inset:0; background:rgba(0,0,0,0.8); z-index:250; display:flex; align-items:center; justify-content:center; padding:24px;}
.product-modal-shell{
  background:var(--panel); border:1px solid rgba(255,255,255,0.1); border-radius:16px; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; max-width:900px; width:100%; max-height:88vh;
  box-shadow:0 30px 70px rgba(0,0,0,0.6);
  position:relative;
}
.product-modal-close{
  position:absolute; top:14px; right:14px; z-index:5; background:rgba(0,0,0,0.6); color:#fff;
  width:34px; height:34px; border-radius:50%; font-size:1.3rem; display:flex; align-items:center; justify-content:center;
}
.product-modal-gallery{position:relative; overflow:hidden; background:#000; aspect-ratio:1; touch-action:pan-y;}
.pm-swipe-track{display:flex; height:100%; transition:transform .3s ease;}
.pm-swipe-track img{width:100%; height:100%; object-fit:cover; flex-shrink:0; display:block;}
.pm-arrow{
  position:absolute; top:50%; transform:translateY(-50%); background:rgba(0,0,0,0.55); color:#fff; border:none;
  width:36px; height:36px; border-radius:50%; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center;
  line-height:1; padding-bottom:3px;
}
.pm-arrow-left{left:12px;}
.pm-arrow-right{right:12px;}
.pm-dots{position:absolute; bottom:14px; left:0; right:0; display:flex; justify-content:center; gap:6px;}
.pm-dot{width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.4); cursor:pointer;}
.pm-dot.active{background:#fff;}
.product-modal-info{padding:32px; overflow-y:auto;}
.product-modal-info h3{font-size:1.6rem; font-family:'Anton',sans-serif;}
.product-modal-info .price{font-family:'JetBrains Mono',monospace; font-size:1.1rem; margin-top:8px;}
.pm-tabs{display:flex; gap:8px; margin-top:24px; border-bottom:1px solid var(--line);}
.pm-tab{
  background:none; border:none; color:var(--muted); font-size:0.85rem; font-weight:700; text-transform:uppercase;
  letter-spacing:0.03em; padding:10px 4px; cursor:pointer; border-bottom:2px solid transparent;
}
.pm-tab.active{color:var(--paper); border-bottom-color:var(--paper);}
.pm-tab-content{padding:16px 0; font-size:0.92rem; color:var(--muted); line-height:1.6; white-space:pre-line;}
@media(max-width:720px){
  .product-modal-shell{grid-template-columns:1fr; max-height:92vh; overflow-y:auto;}
  .product-modal-gallery{aspect-ratio:4/3;}
}

/* cart drawer */
.cart-drawer{position:fixed; top:0; right:-420px; width:400px; height:100%; background:var(--panel); border-left:1px solid var(--line); transition:right 0.25s ease; z-index:100; display:flex; flex-direction:column;}
.cart-drawer.open{right:0;}
.cart-drawer .head{padding:22px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center;}
.cart-drawer .head h4{font-size:1.3rem;}
.cart-drawer .items{flex:1; overflow-y:auto; padding:22px;}
.cart-line{display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px dashed var(--line); font-size:0.95rem;}
.cart-drawer .foot{padding:22px; border-top:1px solid var(--line);}
.close-x{cursor:pointer; font-size:1.3rem; background:none; border:none; color:var(--paper);}

/* checkout */
.checkout-shell{background:var(--panel); border:1px solid var(--line); padding:36px; max-width:760px; margin:60px auto; box-shadow:0 20px 50px rgba(0,0,0,0.4);}
.steps{display:flex; gap:6px; margin-bottom:30px;}
.steps .step{flex:1; height:4px; background:var(--line);}
.steps .step.active,.steps .step.done{background:var(--paper);}
.step-label{font-family:'JetBrains Mono',monospace; font-size:0.78rem; font-weight:600; color:var(--paper); text-transform:uppercase; letter-spacing:0.12em; margin-bottom:16px;}
label{display:block; font-size:0.82rem; font-weight:600; color:var(--muted); margin-bottom:6px; margin-top:16px; text-transform:uppercase; letter-spacing:0.04em;}
input, select, textarea{width:100%; background:rgba(0,0,0,0.3); border:1.5px solid var(--line); color:var(--paper); padding:13px 14px; font-family:'Inter',sans-serif; font-size:1rem;}
input:focus, select:focus, textarea:focus{border-color:var(--paper); outline:none;}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.method-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:8px;}
.method-card{border:1.5px solid var(--line); padding:18px; cursor:pointer; background:rgba(0,0,0,0.2); transition:all .15s ease;}
.method-card.selected{border-color:var(--paper); background:rgba(255,255,255,0.1);}
.method-card h4{font-size:1.05rem;}
.method-card p{font-size:0.85rem; color:var(--muted); margin-top:8px; line-height:1.55;}
.summary-line{display:flex; justify-content:space-between; padding:11px 0; border-bottom:1px dashed var(--line); font-size:1rem;}
.summary-line.free .amount{color:var(--muted); text-decoration:line-through; opacity:0.7; margin-right:8px;}
.summary-line.total{font-family:'Anton',sans-serif; font-size:1.55rem; border-bottom:none; margin-top:8px; color:var(--paper); text-transform:none;}
.actions{display:flex; justify-content:space-between; margin-top:30px; gap:14px;}
.btn{
  display:inline-block; background:linear-gradient(180deg, #fbfaf8, #d8d6d1); color:#111; border:none;
  padding:15px 30px; text-transform:uppercase; font-size:0.9rem; font-weight:800; letter-spacing:0.03em;
  cursor:pointer; text-align:center; border-radius:10px;
  box-shadow:0 4px 0 rgba(0,0,0,0.45), 0 8px 16px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);
  transition:transform .1s ease, box-shadow .1s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 5px 0 rgba(0,0,0,0.45), 0 10px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.6);}
.btn:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.6);}
.btn.ghost{
  background:linear-gradient(180deg, #202020, #131313); border:1px solid var(--line); color:var(--paper);
  box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn.ghost:hover{border-color:var(--paper); background:linear-gradient(180deg, #2a2a2a, #181818); transform:none; box-shadow:0 4px 0 rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);}
.btn.ghost:active{transform:translateY(3px); box-shadow:0 1px 0 rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.4);}
.confirm-box{text-align:center; padding:18px 0;}
.confirm-box .ref{font-family:'JetBrains Mono',monospace; color:var(--paper); font-size:1.2rem; font-weight:700; letter-spacing:0.05em; margin-top:12px;}
.note{font-size:0.85rem; color:var(--muted); margin-top:10px; line-height:1.6;}

/* footer */
.site-footer{border-top:1px solid var(--line); background:var(--panel); padding:56px 48px 0;}
.footer-grid{max-width:1100px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px;}
.footer-brand-name{font-family:'Anton',sans-serif; font-size:1.2rem; margin-bottom:10px;}
.site-footer h5{font-size:0.8rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--muted); margin-bottom:14px;}
.site-footer a{display:block; font-size:0.9rem; margin-bottom:10px; color:var(--paper);}
.site-footer a:hover{text-decoration:underline;}
.footer-bottom{max-width:1100px; margin:0 auto; border-top:1px solid var(--line); padding:24px 0; margin-top:40px; font-size:0.82rem; color:var(--muted); text-align:center;}
.footer-bottom a{display:inline; color:var(--paper);}

@media(max-width:900px){
  .hero{grid-template-columns:1fr;}
  .hero-photo{height:380px; border-left:none; border-top:1px solid var(--line);}
  .hero-copy{padding:60px 24px 40px;}
  .feature-row, .feature-row.reverse{grid-template-columns:1fr; direction:ltr; gap:28px; padding:40px 0;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:32px 20px;}
}
@media(max-width:720px){
  .nav-links{display:none;}
  .menu-toggle{display:block;}
  .hero h1{font-size:2.4rem;}
  .section{padding:48px 24px;}
  .feature-photo-wrap{aspect-ratio:4/3;}
  .page-banner{aspect-ratio:4/3;}
  .row2, .method-grid{grid-template-columns:1fr;}
  .delivery-grid{grid-template-columns:1fr !important;}
  .footer-grid{grid-template-columns:1fr; gap:28px;}
  .cart-drawer{width:100%; right:-100%;}
}
