/* =========================================================
   i Repair Centre — public site
   White, navy #06283D, blue #1363DF
   ========================================================= */

:root {
  --paper: #ffffff;
  --paper-2: #ffffff;
  --surface: #ffffff;
  --ink: #06283D;
  --ink-soft: #06283D;
  --muted: #06283D;
  --line: rgba(6, 40, 61, 0.14);
  --line-strong: #1363DF;
  --sage: #1363DF;
  --sage-hover: #06283D;
  --sage-soft: rgba(19, 99, 223, 0.08);
  --gold: #1363DF;
  --gold-soft: rgba(19, 99, 223, 0.08);
  --whatsapp: #25d366;
  --ok: #1363DF;
  --ok-soft: rgba(19, 99, 223, 0.08);
  --danger: #1363DF;
  --danger-soft: rgba(19, 99, 223, 0.08);
  --navy: #06283D;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --shell: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px -28px rgba(6, 40, 61, 0.22);
  --shadow-sm: 0 8px 24px -16px rgba(6, 40, 61, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.container {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 92px 0; }
.section--soft { background: var(--paper-2); }
.section--surface { background: var(--surface); }

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

@media (max-width: 980px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(var(--shell), calc(100% - 28px)); }
  .section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* Reveal */
.reveal, .gsap-in {
  opacity: 0;
  transform: translateY(22px);
  animation: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in, .gsap-in.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #1363DF;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(19, 99, 223, 0.55);
}
.btn-primary:hover {
  background: #06283D;
  color: #fff;
}
.btn-gold {
  background: #06283D;
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(6, 40, 61, 0.55);
}
.btn-gold:hover {
  background: #1363DF;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--sage); color: var(--sage); background: var(--sage-soft); }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.site-header .btn-ghost,
.footer .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #1363DF; color: #fff; }
.btn-lg { min-height: 54px; padding: 0 28px; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 12px; }
.btn-full { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #06283D;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
}

.topbar {
  background: #1363DF;
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #fff; }
.topbar-track { color: #fff; font-weight: 700; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.site-header .logo { color: #fff; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  background: #0b0b0b;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.logo-text small {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 42px; height: 42px; place-items: center; gap: 5px; flex-direction: column; }
.nav-toggle span { width: 18px; height: 1.5px; background: #fff; display: block; }

@media (max-width: 1080px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

.drawer { position: fixed; inset: 0; z-index: 100; display: none; }
.drawer.is-open { display: block; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(26, 24, 20, 0.45); }
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  animation: slideIn 0.35s var(--ease);
}
@keyframes slideIn { from { transform: translateX(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer-nav { display: flex; flex-direction: column; gap: 6px; }
.drawer-nav a {
  padding: 12px 4px;
  font-size: 18px;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--line);
}
.drawer-close { font-size: 22px; color: var(--muted); }

/* Section intros */
.intro { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.intro--left { margin: 0 0 36px; text-align: left; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.intro h2, .page-hero h1, .hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}
.lede { color: var(--muted); font-size: 16.5px; margin-top: 12px; }

/* Home hero */
.hero {
  position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 8% auto auto;
  width: 42%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 20%, rgba(19, 99, 223, 0.1), transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(6, 40, 61, 0.06), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 16px;
}
.hero h1 span { color: #1363DF; font-style: italic; }
.hero-lead { font-size: 17.5px; color: var(--muted); margin: 18px 0 28px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pills span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.quote-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  pointer-events: none;
}
.quote-card h3 {
  font-size: 30px;
  margin-bottom: 6px;
}
.quote-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-stage { grid-template-columns: 1fr; }
  .hero-motion { height: 220px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero::before { width: 100%; inset: auto 0 0 0; height: 40%; }
  .hero-stage { grid-template-columns: 1fr; min-height: 0; }
  .hero-motion { position: relative; inset: auto; height: 240px; margin: 0 auto 8px; max-width: 320px; }
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.trust article {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.trust article:last-child { border-right: 0; }
.trust strong { display: block; font-size: 15px; color: var(--ink); }
.trust span { font-size: 13px; color: var(--muted); }
@media (max-width: 800px) {
  .trust { grid-template-columns: 1fr 1fr; }
  .trust article:nth-child(2) { border-right: 0; }
  .trust article:nth-child(1), .trust article:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track em { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Action doors */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.door {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s var(--ease);
}
.door:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.door-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.door h3 { font-size: 28px; margin-bottom: 8px; }
.door p { color: var(--muted); font-size: 14.5px; flex: 1; }
.door-go { margin-top: 18px; font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
@media (max-width: 900px) { .doors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .doors { grid-template-columns: 1fr; } }

/* Device tiles */
.devices { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.device-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 12px 16px;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.25s ease;
}
.device-tile:hover { transform: translateY(-4px); border-color: var(--sage); }
.device-ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--sage-soft);
  color: var(--sage);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.device-tile h3 { font-size: 20px; }
.device-tile p { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media (max-width: 980px) { .devices { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .devices { grid-template-columns: repeat(2, 1fr); } }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--line-strong); }
.card-kicker { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.card h3 { font-size: 24px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 14.5px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.chip {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
}
.chip-ok { background: var(--ok-soft); color: var(--ok); }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.price { font-family: var(--font-display); font-size: 28px; color: var(--ink); }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step { padding: 0 18px; }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 24px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 800px) {
  .timeline { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .timeline::before { display: none; }
}

/* Product / listing */
.listing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.listing-media {
  height: 190px;
  background:
    linear-gradient(160deg, var(--sage-soft), var(--gold-soft));
  display: grid;
  place-items: center;
  font-size: 54px;
  position: relative;
}
.listing-media img { width: 100%; height: 100%; object-fit: cover; }
.listing-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.listing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--surface);
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-media {
  position: relative;
  height: 220px;
  background:
    radial-gradient(circle at 50% 20%, #fff, transparent 46%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  display: grid;
  place-items: center;
  padding: 20px 18px 16px;
  overflow: hidden;
}
.product-media img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(26, 24, 20, 0.08);
}
.product-body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-specs span {
  background: var(--paper-2);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
.product-specs .is-ok {
  background: var(--ok-soft);
  color: var(--ok);
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-foot .price { font-size: 30px; letter-spacing: -0.03em; }

/* Branch */
.branch {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hours { background: var(--paper); border-radius: 14px; padding: 14px 16px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); padding: 4px 0; }
.hours-row strong { color: var(--ink); font-weight: 700; }
.open { font-size: 12px; font-weight: 800; color: var(--ok); background: var(--ok-soft); padding: 5px 10px; border-radius: 999px; }

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 20px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 10px; color: var(--muted); font-size: 14.5px; }

/* Reviews */
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-family: var(--font-display); font-size: 22px; line-height: 1.35; color: var(--ink); }
.review footer { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* Page hero */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(224, 176, 74, 0.18), transparent 40%),
    var(--paper);
}
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumb a:hover { color: var(--sage); }
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { max-width: 640px; color: var(--muted); }

/* CTA band */
.cta {
  background: var(--ink);
  color: #c8ccd1;
  padding: 64px 0;
}
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.cta p { margin-top: 8px; }
.cta a.phone { color: var(--gold); }

/* Forms */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label, .form-group > label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.form-control, .form-select, .form-input, .form-textarea,
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
textarea, .form-textarea { min-height: 120px; resize: vertical; }
.form-control:focus, .form-select:focus, .form-input:focus, .form-textarea:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft);
}
.form-error { color: var(--danger); font-size: 12.5px; margin-top: 4px; display: block; }
.form-success {
  background: var(--ok-soft);
  color: var(--ok);
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin: 18px 0;
  font-weight: 600;
  font-size: 14px;
}
.alert-success { background: var(--ok-soft); color: var(--ok); }
.alert-error { background: var(--danger-soft); color: var(--danger); }

/* Wizard */
.stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.stepper-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}
.stepper-item.is-active { border-color: var(--sage); background: var(--sage-soft); }
.stepper-item.is-done { border-color: var(--gold); }
.stepper-item b { display: block; font-family: var(--font-display); font-size: 20px; }
.stepper-item small { color: var(--muted); }
.wizard-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-sm); }
.book-panel { display: none; }
.book-panel.is-active { display: block; }
.pick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pick {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  background: #fff;
}
.pick.is-selected, .pick.is-active { border-color: var(--sage); background: var(--sage-soft); }
.pick strong { display: block; font-size: 14px; color: var(--ink); }
.pick small { color: var(--muted); }
@media (max-width: 700px) { .pick-grid { grid-template-columns: 1fr 1fr; } }

/* Gallery */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.gallery-filter__btn {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
.gallery-filter__btn.is-active { background: var(--sage); color: #fff; border-color: var(--sage); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 18px; min-height: 220px; background: var(--paper-2); }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; }
.gallery-item__overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.72));
  color: #fff;
  font-weight: 700;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Map */
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); min-height: 200px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }

/* Footer */
.footer { background: #06283D; color: #fff; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; margin-bottom: 42px; }
.footer h4 { color: #fff; font-size: 18px; margin-bottom: 16px; }
.footer a { color: #fff; }
.footer a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Modal */
.modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(26, 24, 20, 0.55); }
.modal-dialog {
  position: relative;
  width: min(460px, 100%);
  background: var(--surface);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.modal-head h3 { font-size: 28px; }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--muted);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 18px 10px; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--ink);
  line-height: 1;
}
.stat small { color: var(--muted); font-size: 13px; }
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr 1fr; } }

.note {
  background: var(--gold-soft);
  color: #6d532f;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
}

.btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .ken img, .floaty, .marquee-track, .wa, .cta--photo img { animation: none !important; }
  .reveal, .gsap-in { opacity: 1; transform: none; }
}

/* Images & motion */
.zoom, .ken { overflow: hidden; }
.zoom img, .ken img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.zoom:hover img { transform: scale(1.08); }
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}
.ken img { animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floaty { animation: floaty 6s ease-in-out infinite; }

.hero-visual { position: relative; }
.hero-frame {
  border-radius: 28px;
  overflow: hidden;
  height: 250px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-side {
  border-radius: 24px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.hero-side img { width: 100%; height: 280px; object-fit: cover; }

.door { padding: 0; overflow: hidden; }
.door-media { height: 158px; overflow: hidden; }
.door-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.door:hover .door-media img { transform: scale(1.08); }
.door-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.door-body .door-num { margin-bottom: 10px; }

.device-tile { padding: 0; overflow: hidden; text-align: left; }
.device-media { height: 120px; overflow: hidden; }
.device-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.device-tile:hover .device-media img { transform: scale(1.08); }
.device-tile h3 { padding: 12px 14px 0; }
.device-tile p { padding: 4px 14px 14px; }

.card-media {
  margin: -24px -24px 16px;
  height: 168px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card-media img { transform: scale(1.07); }

.photo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.photo-card img { width: 100%; height: 190px; object-fit: cover; transition: transform 0.7s var(--ease); }
.photo-card:hover img { transform: scale(1.07); }
.photo-card-body { padding: 20px 22px 22px; }
.photo-card-body h3 { font-size: 26px; margin-bottom: 8px; }
.photo-card-body p { color: var(--muted); font-size: 14.5px; }

.branch-media {
  margin: -28px -28px 16px;
  height: 170px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}
.branch-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.branch:hover .branch-media img { transform: scale(1.06); }
.branch { overflow: hidden; }

.cta--photo {
  position: relative;
  background: #141210;
  overflow: hidden;
}
.cta--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.cta--photo .container { position: relative; z-index: 1; }

.split-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}
.split-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

/* Hero motion graphic */
.hero-stage {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) 1fr;
  gap: 8px;
  align-items: center;
}
.hero-motion {
  position: relative;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  height: 430px;
}
.hero-svg { width: 100%; height: 100%; display: block; }
.hero-svg .ring { transform-origin: 230px 230px; }
.orb {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sage);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.orb-1 { top: 10%; left: 2%; }
.orb-2 { top: 16%; right: 4%; }
.orb-3 { bottom: 26%; left: -2%; }
.orb-4 { bottom: 10%; right: 6%; }

/* Buy catalog (horizontal rows, not homepage cards) */
.catalog-filter {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  margin-bottom: 28px;
}
.catalog { display: flex; flex-direction: column; gap: 16px; }
.catalog-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  min-height: 230px;
}
.catalog-shot {
  position: relative;
  background:
    radial-gradient(circle at 50% 30%, #fff, transparent 50%),
    linear-gradient(180deg, #ffffff, #ffffff);
  display: grid;
  place-items: center;
  padding: 28px 22px;
  overflow: hidden;
}
.catalog-shot img {
  width: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
}
.catalog-copy {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
}
.catalog-copy .product-name { font-size: 32px; }
.pin-copy { position: sticky; top: 110px; }
.buy-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.buy-strip li {
  padding: 28px 8px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
}
.buy-strip li:last-child { border-right: 0; }
.buy-strip b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Repair page: day rail (not photo cards) */
.day-rail {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border-left: 1px solid var(--line-strong);
  padding-left: 36px;
}
.day-rail li {
  display: block;
  padding: 0 0 40px;
  position: relative;
}
.day-rail li:last-child { padding-bottom: 0; }
.day-rail-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  width: fit-content;
  margin: 0 0 10px -36px;
  padding-right: 14px;
  background: var(--paper-2);
}
.day-rail h3 { font-size: 28px; margin-bottom: 8px; }
.day-rail p { color: var(--muted); font-size: 15.5px; max-width: 52ch; }

.job-sheet {
  list-style: none;
  border-top: 1px solid var(--line);
}
.job-sheet li {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 16px 28px;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}
.job-sheet b {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}
.job-sheet span { color: var(--muted); font-size: 14.5px; }
.job-sheet .job-price,
.job-sheet em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}
.job-sheet .job-price:hover { color: var(--sage-hover); }

.cat-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  border-top: 1px solid var(--line);
}
.cat-menu-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.cat-menu-idx {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.cat-menu-item h3 { font-size: 26px; }
.cat-menu-item p { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.cat-menu-item .go { color: var(--sage); font-weight: 700; font-size: 13px; white-space: nowrap; }
.cat-menu-item:hover h3 { color: var(--sage); }

.arrive-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.arrive-pair article {
  padding: 8px 0;
}
.arrive-pair h3 { font-size: 36px; margin: 8px 0 12px; }
.arrive-pair p { color: var(--muted); font-size: 15.5px; }
.pair-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pair-or {
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 18px;
  position: relative;
  padding: 0 8px;
}
.pair-or::before, .pair-or::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 42%;
  background: var(--line-strong);
}
.pair-or::before { top: 0; }
.pair-or::after { bottom: 0; }

/* Services page: device index + process rail */
.device-index {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--line);
}
.device-index li a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}
.device-index img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.device-index li a:hover { color: var(--sage); }
.device-index li a:hover img { transform: scale(1.06); }
.device-index h3 { font-size: 24px; }
.device-index p { font-size: 13px; color: var(--muted); }
.device-index .go { color: var(--sage); font-weight: 700; font-size: 13px; }

.process-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.process-rail li {
  padding: 0 28px 0 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 22px;
  position: relative;
}
.process-rail li + li { padding-left: 28px; }
.process-rail b {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.process-rail h3 { font-size: 28px; margin-bottom: 10px; }
.process-rail p { color: var(--muted); font-size: 14.5px; }

@media (max-width: 800px) {
  .catalog-item { grid-template-columns: 1fr; }
  .catalog-shot { min-height: 220px; }
  .buy-strip { grid-template-columns: 1fr; }
  .buy-strip li { border-right: 0; border-bottom: 1px solid var(--line); }
  .job-sheet li { grid-template-columns: 1fr; gap: 6px; }
  .arrive-pair { grid-template-columns: 1fr; gap: 28px; }
  .pair-or { padding: 8px 0; }
  .pair-or::before, .pair-or::after {
    width: 38%;
    height: 1px;
    left: auto;
    top: 50%;
  }
  .pair-or::before { left: 0; }
  .pair-or::after { right: 0; left: auto; }
  .device-index { grid-template-columns: 1fr; gap: 0; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-rail li + li { padding-left: 0; }
  .pin-copy { position: static; }
  .cat-menu { grid-template-columns: 1fr; }
}

/* Studio buy / product sheet — not a typical e-com grid */
.studio-head { padding: 40px 0 18px; }
.studio-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.studio-head h1 { max-width: 14ch; }
.studio-head p { max-width: 46ch; color: var(--muted); margin-top: 10px; }

.chip-bar {
  position: sticky;
  top: 118px;
  z-index: 45;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 14px;
}
.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip-row a {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
}
.chip-row a.is-on {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.chip-search {
  display: grid;
  grid-template-columns: 1fr 170px auto;
  gap: 8px;
  align-items: stretch;
}
.chip-search .form-input,
.chip-search .form-select { min-height: 44px; margin: 0; }

.lookbook { display: flex; flex-direction: column; gap: 22px; }
.look {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
}
.look--b { grid-template-columns: 0.8fr 1.2fr; }
.look--b .look-stage { order: 2; }
.look-stage {
  position: relative;
  min-height: 340px;
  background:
    radial-gradient(circle at 50% 28%, #fff, transparent 42%),
    linear-gradient(180deg, #ffffff, #ffffff);
  display: grid;
  place-items: center;
  padding: 40px 32px;
  overflow: hidden;
}
.look-stage img {
  max-height: 260px;
  width: auto;
  max-width: 88%;
  object-fit: contain;
  object-position: center;
}
.look-no {
  position: absolute;
  left: 18px;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.look-meta {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.look-blurb { color: var(--muted); margin: 8px 0 0; font-size: 14.5px; }
.look-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Accessories Marquee Showcase */
.snap-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 12px 0 20px;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.snap-marquee-track {
  display: flex;
  width: max-content;
  animation: snapMarqueeScroll 32s linear infinite;
  will-change: transform;
}
.snap-marquee-track:hover {
  animation-play-state: paused;
}
.snap-track-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  flex-shrink: 0;
}
@keyframes snapMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.snap-card {
  flex: 0 0 240px;
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), border-color 0.25s ease, box-shadow 0.35s var(--ease);
}
.snap-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.snap-shot {
  height: 180px;
  background: #ffffff;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
}
.snap-shot img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.snap-card:hover .snap-shot img {
  transform: scale(1.07);
}
.snap-card h3 {
  font-size: 19px;
  padding: 14px 16px 0;
  letter-spacing: -0.01em;
}
.snap-card p {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 16px 18px;
  line-height: 1.45;
}
.snap-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--muted);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sheet {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}
.sheet-gallery {
  background: linear-gradient(180deg, #ffffff, #ffffff);
  padding: 22px 28px 28px;
  position: sticky;
  top: 118px;
  height: calc(100vh - 118px);
  display: flex;
  flex-direction: column;
}
.sheet-crumb { margin-bottom: 12px; }
.sheet-main {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
  min-height: 280px;
}
.sheet-main img {
  max-height: min(62vh, 520px);
  max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(26, 24, 20, 0.16));
}
.sheet-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-top: 16px;
  -webkit-overflow-scrolling: touch;
}
.sheet-thumb {
  flex: 0 0 68px;
  height: 68px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  padding: 6px;
  cursor: pointer;
  font: inherit;
}
.sheet-thumb.is-on { border-color: var(--sage); box-shadow: 0 0 0 2px var(--sage-soft); }
.sheet-thumb img { width: 100%; height: 100%; object-fit: contain; }
.sheet-copy { padding: 48px 42px 72px; }
.sheet-price {
  font-family: var(--font-display);
  font-size: 44px;
  margin: 6px 0 14px;
  letter-spacing: -0.03em;
}
.spec-list {
  border-top: 1px solid var(--line);
  margin: 26px 0;
}
.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-list dt { color: var(--muted); font-weight: 600; }
.sheet-form {
  background: var(--paper);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}
.sheet-form h2 { font-size: 28px; margin-bottom: 4px; }
.sheet-form > p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.dock { display: none; }

@media (max-width: 900px) {
  .look, .look--b { grid-template-columns: 1fr; min-height: 0; }
  .look--b .look-stage { order: 0; }
  .look-stage { min-height: 250px; padding: 28px 20px 44px; }
  .look-meta { padding: 18px 18px 20px; }
  .chip-search { grid-template-columns: 1fr auto; }
  .chip-search .form-select { display: none; }
  .sheet { grid-template-columns: 1fr; }
  .sheet-gallery {
    position: relative;
    top: auto;
    height: auto;
    padding: 14px 16px 10px;
  }
  .sheet-main { min-height: 260px; }
  .sheet-main img { max-height: 46vh; }
  .sheet-copy { padding: 22px 20px 118px; }
  .sheet-submit { display: none; }
  .dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .dock-copy small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    max-width: 42vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dock-copy strong {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
  }
  .wa { bottom: 90px; }
}

@media (max-width: 700px) {
  .product-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin-inline: -14px;
    padding: 6px 14px 18px;
    -webkit-overflow-scrolling: touch;
  }
  .product-rail .product {
    flex: 0 0 min(82%, 340px);
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .navbar { min-height: 62px; }
  .chip-bar { top: 62px; }
  .studio-head { padding: 20px 0 8px; }
  .studio-head h1 { font-size: 34px; letter-spacing: -0.03em; }
  .section { padding: 44px 0; }
  .lookbook-wrap { padding-top: 28px; }
  .snap-card { flex: 0 0 210px; width: 210px; }
  .snap-shot { height: 170px; }
  .snap-shot img { max-height: 135px; }
  .page-hero { padding: 28px 0 22px; }
}

.dept-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dept-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.dept-band a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 8px 22px 0;
  border-right: 1px solid var(--line);
}
.dept-band a:last-child { border-right: 0; }
.dept-band b {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
}
.dept-band span { font-size: 18px; font-weight: 700; }
.dept-band small { font-size: 12px; color: var(--muted); }
.dept-band a:hover span { color: var(--sage); }

.buy-promise {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 8px 0 28px;
}
.buy-promise li {
  padding: 20px 22px 8px 0;
  border-right: 1px solid var(--line);
  padding-right: 22px;
  margin-right: 22px;
}
.buy-promise li:last-child { border-right: 0; margin-right: 0; }
.buy-promise b { display: block; font-size: 15px; margin-bottom: 8px; }
.buy-promise p { font-size: 13.5px; color: var(--muted); }

.sheet-stock { font-size: 13.5px; color: var(--muted); margin: -8px 0 18px; }
.highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.highlights li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  position: relative;
}
.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}
.pdp-jump {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-jump::-webkit-scrollbar { display: none; }
.pdp-jump a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.pdp-jump a:hover { color: var(--sage); border-bottom-color: var(--sage); }

.pdp-chapter { padding: 64px 0; border-top: 1px solid var(--line); }
.pdp-chapter--soft { background: var(--paper-2); }
.pdp-chapter-inner { max-width: 760px; }
.pdp-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pdp-chapter h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.pdp-chapter h3 { font-size: 24px; margin-bottom: 10px; }
.pdp-prose p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 14px; max-width: 62ch; }
.spec-table { border-top: 1px solid var(--line); }
.spec-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.spec-table dt { color: var(--muted); font-weight: 600; }
.pdp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.plain-list { padding-left: 18px; color: var(--ink-soft); }
.plain-list li { margin: 8px 0; }
.pdp-split p { color: var(--muted); font-size: 15.5px; }

.more-stock { list-style: none; margin-top: 20px; border-top: 1px solid var(--line); }
.more-stock a {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.more-stock img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 6px;
}
.more-stock b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.more-stock span { font-size: 13px; color: var(--muted); }
.more-stock em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 24px;
}
.more-stock a:hover b { color: var(--sage); }

.section:not(.section--soft) .day-rail-num { background: var(--paper); }

/* Home — popular repairs, why, booking */
.pop-list { display: grid; gap: 10px; }
.pop-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 12px 16px 12px 12px;
  background: #fff;
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 12px;
}
.pop-row:hover { border-color: #1363DF; }
.pop-row-shot {
  width: 88px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f7fc;
}
.pop-row-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pop-row-copy h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.pop-row-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #3d5568;
}
.pop-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}
.pop-row-meta strong { font-size: 15px; color: #1363DF; }
.pop-row-meta em { font-style: normal; font-size: 13px; color: #3d5568; }
.popular-more { text-align: center; margin-top: 28px; }

.why-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
.why-split .intro { margin: 0; text-align: left; max-width: none; }
.why-list { display: grid; gap: 0; }
.why-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(6, 40, 61, 0.12);
  background: transparent;
}
.why-list li:last-child { border-bottom: 1px solid rgba(6, 40, 61, 0.12); }
.why-list li span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  color: #1363DF;
  padding-top: 3px;
}
.why-list h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.why-list p { margin: 0; font-size: 14.5px; line-height: 1.55; color: #3d5568; }

.book-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  counter-reset: none;
}
.book-track li {
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(6, 40, 61, 0.14);
  background: transparent;
}
.book-track li:last-child { border-right: 0; padding-right: 0; }
.book-track li b {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1363DF;
  margin-bottom: 10px;
}
.book-track h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.book-track p { margin: 0; font-size: 13.5px; line-height: 1.5; color: #3d5568; }

.home-band .pop-row { background: #fff; }

@media (max-width: 980px) {
  .why-split,
  .book-track { grid-template-columns: 1fr 1fr; }
  .book-track li {
    padding: 16px 18px 16px 0;
    border-right: 0;
    border-top: 1px solid rgba(6, 40, 61, 0.12);
  }
}
@media (max-width: 640px) {
  .pop-row { grid-template-columns: 72px 1fr; }
  .pop-row-meta { grid-column: 2; align-items: flex-start; text-align: left; }
  .why-split,
  .book-track { grid-template-columns: 1fr; }
}

/* Homepage section bands */
.home-band--white { background: #ffffff; }
.home-band--ice { background: #f3f7fc; }
.home-band--mist { background: #e8f1fa; }
.home-band--sky { background: #dce8f6; }
.home-trust { padding: 28px 0 36px; }
.home-band .pop-row,
.home-band .device-tile,
.home-band .review,
.home-band .branch {
  background: #ffffff;
}

@media (max-width: 900px) {
  .dept-band-inner, .buy-promise, .pdp-split, .spec-table div { grid-template-columns: 1fr 1fr; }
  .buy-promise li:nth-child(2n) { border-right: 0; margin-right: 0; }
  .pdp-body { padding-bottom: 24px; }
}
@media (max-width: 640px) {
  .dept-band-inner, .buy-promise { grid-template-columns: 1fr; }
  .dept-band a, .buy-promise li { border-right: 0; margin-right: 0; border-bottom: 1px solid var(--line); }
  .spec-table div { grid-template-columns: 1fr; gap: 4px; }
  .more-stock a { grid-template-columns: 56px 1fr auto; }
  .pdp-chapter { padding: 48px 0; }
}
