/* SkySaver — Redesign demo. Editorial, performance-first. */

:root {
  /* palette */
  --bg: #F4F1EA;
  --paper: #FFFFFF;
  --ink: #0E1116;
  --ink-2: #1A1F2A;
  --muted: #5C6270;
  --rule: #1F232A;
  --line: #DEDAD0;
  --line-soft: #E8E4DA;
  --accent: #E8541C;       /* ember */
  --accent-soft: #F8E0CF;
  --sky: #2E456B;          /* deep sky */
  --sky-2: #6E8AB8;
  --sky-bg: linear-gradient(180deg, #C9D7E9 0%, #E6E0CF 100%);

  /* type */
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* spacing */
  --pad: clamp(20px, 4vw, 56px);
  --gap: clamp(20px, 3vw, 36px);

  /* radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--ink); color: var(--bg); }

/* ─── layout primitives ─── */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }
.container-narrow { max-width: 980px; }
.row { display: flex; gap: var(--gap); }
.grid { display: grid; gap: var(--gap); }

/* ─── nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 234, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-mark {
  width: 22px; height: 22px;
  display: inline-block;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1 L4 11 H8 V23 H16 V11 H20 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1 L4 11 H8 V23 H16 V11 H20 Z' fill='black'/></svg>") center/contain no-repeat;
  transform: rotate(180deg);
}
.brand em { font-style: italic; color: var(--accent); }
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a {
  font-size: 14px; color: var(--ink-2); letter-spacing: 0.01em;
  position: relative; padding: 6px 0;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent);
}
.nav-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-cart {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; background: var(--paper);
  color: var(--ink); position: relative;
}
.nav-cart .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 600; padding: 2px 6px;
  border-radius: 999px;
}
.menu-toggle {
  display: none; background: none; border: 0; padding: 6px; color: var(--ink);
}
@media (max-width: 880px) {
  .nav-menu { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; gap: 12px;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg); padding: 20px var(--pad) 28px;
    border-bottom: 1px solid var(--line);
  }
}

/* ─── buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent); border-color: var(--accent); color: white; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: white; }
.btn-accent:hover { background: var(--ink); border-color: var(--ink); }
.btn-lg { padding: 18px 30px; font-size: 15px; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }
.btn-link svg { transition: transform .15s ease; }
.btn-link:hover svg { transform: translateX(3px); }

/* ─── type ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.18em; color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 16px; height: 1px; background: var(--accent);
}
.kicker { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.02; margin: 0; color: var(--ink); }
h1 { font-size: clamp(48px, 8vw, 128px); }
h2 { font-size: clamp(36px, 5vw, 76px); }
h3 { font-size: clamp(26px, 3vw, 44px); }
h4 { font-size: clamp(20px, 2vw, 28px); line-height: 1.15; }
.italic { font-style: italic; }
.serif { font-family: var(--serif); }
.mono { font-family: var(--mono); }
.lede { font-size: clamp(17px, 1.4vw, 22px); line-height: 1.45; color: var(--ink-2); max-width: 60ch; }

/* ─── hero ─── */
.hero {
  position: relative; min-height: min(92vh, 920px);
  display: grid; grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--sky-bg);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 80% 10%, rgba(232,84,28,0.08), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(46,69,107,0.18), transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(60px, 10vh, 140px) 0 clamp(40px, 6vh, 80px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap); align-items: end;
}
.hero h1 {
  font-size: clamp(56px, 11vw, 180px); letter-spacing: -0.02em; color: var(--ink);
}
.hero h1 .line { display: block; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-meta {
  display: grid; gap: 18px;
}
.hero-meta p { color: var(--ink-2); margin: 0; }
.hero-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.hero-stats .stat {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .stat .num { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1; }
.hero-stats .stat .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(1), .hero-stats .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* hero "tower" graphic */
.tower {
  position: absolute; right: 6%; bottom: 0;
  width: clamp(160px, 22vw, 360px); height: 70%;
  z-index: 1; pointer-events: none;
  opacity: 0.92;
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 42%; z-index: 1;
  background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
          mask-image: linear-gradient(to left, black 60%, transparent);
  opacity: 0.85;
}
@media (max-width: 880px) { .hero-photo { display: none; } }

/* certifications grid with images */
.cert-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
@media (max-width: 880px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
.cert-grid .cell {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  aspect-ratio: 1; display: grid; place-items: center;
  padding: 18px; background: var(--paper);
}
.cert-grid .cell img { max-width: 100%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; opacity: 0.85; transition: opacity .2s ease; }
.cert-grid .cell:hover img { opacity: 1; }

/* press logos row */
.logo-row {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper);
}
@media (max-width: 880px) { .logo-row { grid-template-columns: repeat(3, 1fr); } }
.logo-row .cell {
  padding: 24px; display: grid; place-items: center;
  border-right: 1px solid var(--line);
  min-height: 110px;
}
.logo-row .cell:last-child { border-right: 0; }
.logo-row .cell img { max-height: 60px; max-width: 80%; object-fit: contain; mix-blend-mode: multiply; opacity: 0.7; filter: grayscale(1); transition: opacity .2s ease, filter .2s ease; }
.logo-row .cell:hover img { opacity: 1; filter: none; }

/* step cards with image */
.step-img {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--r-sm);
  margin-top: auto; overflow: hidden; background: var(--bg);
}
.step-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── sections ─── */
section { padding: clamp(64px, 10vh, 140px) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--gap);
  margin-bottom: clamp(40px, 6vh, 80px);
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; } }
.section-head .lede { margin: 0; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.divider-strong { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ─── cards ─── */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
}
.card-feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card-feature:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(14,17,22,0.18); }
.card-feature .frame {
  aspect-ratio: 4/3;
  background: var(--sky-bg);
  position: relative; overflow: hidden;
}
.card-feature .frame img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .6s ease;
}
.card-feature:hover .frame img { transform: scale(1.04); }
.card-feature .frame.contain img { object-fit: contain; padding: 18px; mix-blend-mode: multiply; }
.card-feature .frame .label {
  position: absolute; top: 16px; left: 16px;
  background: var(--paper); padding: 6px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
}
.card-feature .body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-feature .body h4 { font-size: 24px; }
.card-feature .body p { color: var(--muted); margin: 0 0 12px; font-size: 14px; }
.card-feature .body .price { font-family: var(--mono); font-size: 13px; color: var(--ink); }
.card-feature .meta { display:flex; justify-content: space-between; align-items: end; margin-top: auto; padding-top: 14px; }

/* product grid */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } }

/* ─── footer ─── */
.footer {
  background: var(--ink);
  color: #C5C7CD;
  padding: clamp(60px, 10vh, 120px) 0 30px;
  margin-top: 80px;
}
.footer h5 {
  font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: 0.18em;
  color: #8C8F99; margin: 0 0 16px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: var(--gap);
  padding-bottom: 60px; border-bottom: 1px solid #21262F;
}
.footer-grid .col a { color: #C5C7CD; font-size: 14px; line-height: 2.1; }
.footer-grid .col a:hover { color: var(--accent); }
.footer-brand h2 {
  color: var(--bg); font-size: clamp(32px, 4vw, 56px); line-height: 1; margin-bottom: 18px;
}
.footer-brand p { color: #8C8F99; font-size: 14px; max-width: 36ch; }
.footer-bottom {
  display: flex; justify-content: space-between; padding-top: 28px;
  font-family: var(--mono); font-size: 12px; color: #8C8F99;
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── form ─── */
.field {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
}
.field label {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
}
.input, .textarea, .select {
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--line); background: var(--paper); border-radius: 8px;
  padding: 14px 16px; font: inherit; color: var(--ink);
  transition: border-color .15s ease;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--ink); }
.textarea { min-height: 140px; resize: vertical; }

/* ─── badges & chips ─── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-2);
}
.chip-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip-warn { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-soft); }

/* ─── marquee ─── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 22px 0;
  background: var(--paper);
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  animation: scroll 40s linear infinite;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-2);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── steps ─── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 32px;
  display: flex; flex-direction: column; gap: 16px; min-height: 320px;
}
.step .num {
  font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--accent);
  font-style: italic;
}
.step h4 { margin: 0; }

/* ─── stats banner ─── */
.stats-banner {
  background: var(--ink); color: var(--bg);
  padding: 80px 0; margin: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-big {
  display: flex; flex-direction: column; gap: 4px;
}
.stat-big .num {
  font-family: var(--serif); font-size: clamp(54px, 6vw, 96px); line-height: 1; letter-spacing: -0.02em;
}
.stat-big .num em { color: var(--accent); font-style: italic; }
.stat-big .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #8C8F99; }

/* ─── product page ─── */
.product-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  padding: clamp(40px, 6vh, 80px) 0;
}
@media (max-width: 1024px) { .product-hero { grid-template-columns: 1fr; } }
.product-gallery {
  display: grid; gap: 14px;
}
.product-gallery .main {
  aspect-ratio: 4/5; border-radius: var(--r-lg);
  background: var(--sky-bg);
  position: relative; overflow: hidden;
}
.product-gallery .main img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.product-gallery .main.contain img { object-fit: contain; padding: 24px; mix-blend-mode: multiply; }
.product-gallery .thumb { position: relative; overflow: hidden; }
.product-gallery .thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.product-gallery .thumb.contain img { object-fit: contain; padding: 6px; mix-blend-mode: multiply; }
.product-gallery .thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.product-gallery .thumb {
  aspect-ratio: 1; border-radius: 10px; background: var(--line-soft); border: 1px solid var(--line);
  cursor: pointer; transition: border-color .15s ease;
}
.product-gallery .thumb.active, .product-gallery .thumb:hover { border-color: var(--ink); }

.product-info h1 {
  font-size: clamp(40px, 5vw, 72px); line-height: 1.02; margin-bottom: 12px;
}
.product-info .price-line {
  display: flex; align-items: baseline; gap: 16px; margin: 12px 0 22px;
}
.product-info .price-line .price {
  font-family: var(--serif); font-size: 36px;
}
.product-info .price-line .from {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.option-group { margin: 22px 0; }
.option-group .label-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px;
}
.option-group .label-row .lbl {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
}
.option-group .label-row .val { font-size: 14px; }
.options { display: flex; gap: 10px; flex-wrap: wrap; }
.option-pill {
  border: 1px solid var(--line); background: var(--paper); padding: 10px 16px;
  border-radius: 999px; font-size: 14px; cursor: pointer;
}
.option-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.spec-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px;
  border-top: 1px solid var(--line); padding-top: 20px; margin-top: 24px;
}
.spec-list dt { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.spec-list dd { margin: 0; }

/* ─── press ─── */
.press-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.press-grid .item {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 36px; display: flex; flex-direction: column; gap: 12px; min-height: 220px;
  transition: background .2s ease;
}
.press-grid .item:hover { background: var(--paper); }
.press-grid .outlet { font-family: var(--serif); font-size: 28px; line-height: 1; }
.press-grid .quote { color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.press-grid .meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: auto; }
@media (max-width: 880px) { .press-grid { grid-template-columns: 1fr; } }

/* ─── testimonial ─── */
.testimonial {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial .quote {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px); line-height: 1.25;
}
.testimonial .who { display: flex; gap: 14px; align-items: center; margin-top: auto; }
.testimonial .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--accent));
  color: white; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px;
}
.testimonial .who .meta { font-size: 13px; color: var(--muted); }

/* ─── tower SVG color stops handled inline ─── */

/* ─── breadcrumbs ─── */
.crumbs {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); padding: 22px 0 0;
}
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { padding: 0 10px; }

/* ─── page header ─── */
.page-head {
  padding: clamp(80px, 14vh, 200px) 0 clamp(40px, 8vh, 100px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(48px, 7vw, 120px); }
.page-head .lede { margin-top: 24px; }
.page-head-sky {
  position: absolute; inset: 0; z-index: 0;
  background: var(--sky-bg);
  opacity: 0.5;
}

/* ─── faq accordion ─── */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--sans); font-size: 28px; color: var(--accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; transform: rotate(0); }
.faq details p {
  padding: 0 0 26px; max-width: 70ch; color: var(--ink-2); margin: 0;
}

/* ─── utility ─── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mt-6 { margin-top: 72px; }
.mb-2 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 48px; }
.uppercase { text-transform: uppercase; }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--bg); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--bg); }

/* ─── reveal animation ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ─── two-column ─── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap);
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

/* ─── cart/checkout ─── */
.checkout-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px;
  padding: 60px 0;
}
@media (max-width: 1024px) { .checkout-grid { grid-template-columns: 1fr; } }
.line-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.line-item .thumb {
  width: 80px; height: 80px; border-radius: 10px; background: var(--sky-bg); border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.line-item .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 4px; mix-blend-mode: multiply; }
.summary {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px;
  position: sticky; top: 90px; height: fit-content;
}
.summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary .row.total { padding-top: 16px; border-top: 1px solid var(--line); font-size: 18px; font-weight: 600; margin-top: 12px; }

/* ─── distributor list ─── */
.distributor-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.distributor-list .row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: var(--gap);
  padding: 24px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.distributor-list .row .name { font-family: var(--serif); font-size: 22px; }
.distributor-list .row .region { font-size: 14px; color: var(--muted); }
@media (max-width: 880px) {
  .distributor-list .row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
}

/* ─── gallery ─── */
.gallery-grid {
  columns: 3 280px; column-gap: var(--gap);
}
.gallery-grid .tile {
  break-inside: avoid; margin-bottom: var(--gap);
  border-radius: var(--r-md); overflow: hidden;
  background: var(--sky-bg);
  position: relative;
}
.gallery-grid .tile img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.04); }
.gallery-grid .tile.tall { aspect-ratio: 3/4; }
.gallery-grid .tile.med { aspect-ratio: 1; }
.gallery-grid .tile.wide { aspect-ratio: 4/3; }
.gallery-grid .tile .cap {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(244,241,234,0.92); padding: 6px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ─── blog ─── */
.post-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.post-row {
  display: grid; grid-template-columns: 200px 1fr 200px; gap: var(--gap);
  padding: 32px 0; border-bottom: 1px solid var(--line); align-items: start;
}
.post-row .thumb {
  aspect-ratio: 4/3; border-radius: var(--r-md); background: var(--sky-bg); border: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.post-row .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-row h3 { font-size: clamp(24px, 2.4vw, 36px); margin-bottom: 8px; }
.post-row p { color: var(--muted); margin: 0; font-size: 15px; }
.post-row .date { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; text-align: right; }
@media (max-width: 880px) {
  .post-row { grid-template-columns: 1fr; gap: 16px; }
  .post-row .date { text-align: left; }
}
