@font-face {
  font-family: "Memphis Bold";
  src:
    local("Memphis Bold"),
    local("Memphis-Bold"),
    url("/fonts/Memphis-Bold.woff2") format("woff2"),
    url("/fonts/Memphis-Bold.woff") format("woff"),
    url("/fonts/Memphis-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --graphite: #141414;
  --graphite-2: #1d1d1b;
  --soft-white: #f7f5f0;
  --ivory: #efe6d6;
  --warm-beige: #d8c7aa;
  --metal: #c8c8c8;
  --ice: #a9dde8;
  --dial-blue: #14355f;
  --ink: #f7f5f0;
  --dark-ink: #10100f;
  --muted: rgba(247,245,240,.62);
  --muted-dark: rgba(16,16,15,.62);
  --line: rgba(247,245,240,.14);
  --line-dark: rgba(16,16,15,.14);
  --gold: #d8c7aa;
  --ok: #8ff0b4;
  --danger: #ff7466;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: "Memphis Bold", "Memphis", "Cooper Black", Georgia, serif;
  --serif: "Iowan Old Style", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .15;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 86px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: #050505;
  border-bottom: 1px solid rgba(247,245,240,.11);
  box-shadow: 0 18px 38px rgba(0,0,0,.34);
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  border: 1px solid rgba(239,230,214,.55);
  clip-path: polygon(30% 0,70% 0,100% 30%,100% 70%,70% 100%,30% 100%,0 70%,0 30%);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.brand-name {
  font-family: var(--font-brand);
  font-size: 23px;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--soft-white);
}
.nav { display: flex; align-items: center; gap: 27px; color: rgba(247,245,240,.76); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.nav a, .nav-auth { transition: color .2s ease; }
.nav a:hover, .nav-auth:hover { color: var(--ice); }
.nav-auth { background: transparent; border: 0; color: inherit; padding: 12px 0; cursor: pointer; text-transform: inherit; letter-spacing: inherit; }

.section-dark { background: var(--black); color: var(--ink); }
.section-ivory { background: var(--ivory); color: var(--dark-ink); }
.hero-editorial {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, .74fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  padding: 128px max(20px, calc((100vw - 1180px) / 2)) 72px;
  position: relative;
  overflow: hidden;
}
.hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(169,221,232,.16), transparent 30%),
    radial-gradient(circle at 25% 88%, rgba(216,199,170,.14), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,.04), transparent 48%);
  pointer-events: none;
}
.hero-copy, .hero-object { position: relative; z-index: 1; }
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--ice);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-kicker { color: #736346; }
.section-kicker.inverse { color: var(--ice); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 8.7vw, 118px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 400;
  margin-bottom: 28px;
  text-wrap: balance;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: .94;
  letter-spacing: -.048em;
  font-weight: 400;
  margin-bottom: 22px;
  text-wrap: balance;
}
h3 { font-size: 22px; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 12px; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.center-actions { justify-content: center; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--soft-white); color: var(--black); border-color: var(--soft-white); }
.btn-primary:hover { background: var(--ice); border-color: var(--ice); }
.btn-ghost { color: var(--ink); border-color: rgba(247,245,240,.34); }
.section-ivory .btn-ghost, .btn-ghost.dark { color: var(--dark-ink); border-color: rgba(16,16,15,.28); }
.wide { width: 100%; }

.hero-object { min-height: 620px; display: grid; place-items: center; }
.hero-photo-frame {
  position: relative;
  width: min(57vw, 760px);
  margin: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 8% 6% 2%;
  z-index: -1;
  background: radial-gradient(ellipse at 52% 58%, rgba(169,221,232,.18), transparent 58%);
  filter: blur(22px);
}
.hero-watch-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 38px 70px rgba(0,0,0,.68));
}
.product-render { position: relative; width: min(78vw, 430px); aspect-ratio: .72 / 1; display: grid; place-items: center; }
.large-render { transform: rotate(-4deg); animation: slowFloat 7s ease-in-out infinite; }
@keyframes slowFloat { 0%,100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-12px); } }
.strap { position: absolute; left: 50%; width: 112px; height: 215px; transform: translateX(-50%); background: linear-gradient(90deg, #020202, #222 48%, #050505); border: 1px solid rgba(255,255,255,.09); }
.strap::before { content: ""; position: absolute; inset: 0 27px; border-left: 1px solid rgba(255,255,255,.08); border-right: 1px solid rgba(255,255,255,.08); }
.strap-top { top: 0; }
.strap-bottom { bottom: 0; }
.case-shell {
  width: min(100%, 390px);
  aspect-ratio: 1;
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #303030, #050505 42%, #1b1b1b 72%, #050505);
  box-shadow: 0 80px 130px rgba(0,0,0,.72), inset 0 0 0 1px rgba(255,255,255,.28), inset 0 0 52px rgba(255,255,255,.04);
}
.octagon { clip-path: polygon(29% 0,71% 0,100% 29%,100% 71%,71% 100%,29% 100%,0 71%,0 29%); }
.inner-bezel { width: 72%; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(200,200,200,.48); border-radius: 50%; background: radial-gradient(circle, #1a1a1a, #030303 70%); }
.dial-module { width: 82%; aspect-ratio: 1; border-radius: 50%; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 38% 28%, #235686, var(--dial-blue) 48%, #07101d); border: 1px solid rgba(169,221,232,.42); box-shadow: inset 0 0 32px rgba(0,0,0,.7); }
.dial-logo { color: rgba(247,245,240,.82); text-align: center; font-weight: 850; font-size: 12px; letter-spacing: .22em; }
.hand { position: absolute; left: 50%; top: 50%; height: 2px; background: var(--soft-white); transform-origin: left center; }
.hand-one { width: 68px; transform: rotate(-35deg); }
.hand-two { width: 48px; transform: rotate(84deg); }
.pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ice); }
.screw { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle, var(--metal), #777); box-shadow: 0 0 0 2px rgba(0,0,0,.5); }
.s1 { top: 32px; left: 50%; } .s2 { top: 74px; right: 74px; } .s3 { right: 32px; top: 50%; } .s4 { right: 74px; bottom: 74px; }
.s5 { bottom: 32px; left: 50%; } .s6 { left: 74px; bottom: 74px; } .s7 { left: 32px; top: 50%; } .s8 { left: 74px; top: 74px; }
.object-caption { position: absolute; right: 0; bottom: 34px; color: rgba(247,245,240,.54); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }

.section-intro { width: var(--container); margin: 0 auto 52px; max-width: 920px; }
.section-intro p:not(.section-kicker) { color: var(--muted-dark); font-size: 18px; max-width: 690px; }
.section-intro.narrow { max-width: 820px; text-align: center; }
.transformation, .engineering, .configurator { padding: clamp(78px, 11vw, 142px) 0; }
.formula { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 22px; align-items: stretch; }
.formula article { min-height: 310px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.32); padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.formula-index { font-family: ui-monospace, monospace; color: #736346; font-size: 12px; }
.formula article p { color: var(--muted-dark); margin-bottom: 0; }
.formula-arrow { display: grid; place-items: center; color: #736346; font-size: 30px; }
.mini-object { margin: 22px auto; width: 130px; height: 130px; position: relative; }
.module-only { border-radius: 50%; background: radial-gradient(circle at 35% 25%, #2f6a9d, var(--dial-blue)); border: 1px solid rgba(20,53,95,.5); }
.exploded-case::before, .wrist-piece::before { content: ""; position: absolute; inset: 14px; clip-path: polygon(29% 0,71% 0,100% 29%,100% 71%,71% 100%,29% 100%,0 71%,0 29%); border: 18px solid #171717; background: transparent; }
.exploded-case::after { content: ""; position: absolute; width: 62px; height: 62px; border-radius: 50%; background: var(--dial-blue); left: 34px; top: 34px; transform: translateY(-40px); box-shadow: 0 40px 0 rgba(20,53,95,.25); }
.wrist-piece { height: 160px; }
.wrist-piece::after { content: ""; position: absolute; left: 50%; top: -8px; bottom: -8px; width: 42px; transform: translateX(-50%); background: #111; z-index: -1; }

.collection { padding: clamp(78px, 11vw, 142px) max(20px, calc((100vw - 1180px) / 2)); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-poster { min-height: 620px; display: grid; grid-template-rows: 1fr auto; border: 1px solid var(--line); overflow: hidden; background: var(--graphite); }
.poster-visual { display: grid; place-items: center; min-height: 390px; background: radial-gradient(circle at 50% 46%, rgba(255,255,255,.09), transparent 56%); }
.poster-copy { padding: 28px; border-top: 1px solid var(--line); }
.poster-copy span { color: var(--ice); font-family: ui-monospace, monospace; font-size: 12px; text-transform: uppercase; }
.poster-copy p { color: var(--muted); }
.poster-copy strong { color: var(--warm-beige); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.poster-copy .btn { margin-top: 8px; }
.poster-watch { width: 210px; height: 250px; position: relative; }
.poster-watch::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 58px; transform: translateX(-50%); background: #070707; border: 1px solid rgba(255,255,255,.08); }
.poster-watch::after { content: ""; position: absolute; width: 185px; height: 185px; left: 50%; top: 32px; transform: translateX(-50%) rotate(-7deg); clip-path: polygon(29% 0,71% 0,100% 29%,100% 71%,71% 100%,29% 100%,0 71%,0 29%); background: linear-gradient(145deg, #2b2b2b, #050505 60%); box-shadow: inset 0 0 0 18px var(--metal), inset 0 0 0 62px var(--dial-blue), 0 40px 90px rgba(0,0,0,.55); }
.poster-watch.blue::before { background: #87c8d7; }
.poster-watch.blue::after { background: #a9dde8; box-shadow: inset 0 0 0 18px #d8eff4, inset 0 0 0 62px var(--dial-blue), 0 40px 90px rgba(0,0,0,.35); }
.poster-watch.white::before { background: #eee3d3; }
.poster-watch.white::after { background: #f7f5f0; box-shadow: inset 0 0 0 18px #d8c7aa, inset 0 0 0 62px #14355f, 0 40px 90px rgba(0,0,0,.30); }
.poster-blue { background: linear-gradient(180deg, #12212b, #071014); }
.poster-white { background: #e8dece; color: var(--dark-ink); }
.poster-white .poster-copy { border-color: rgba(0,0,0,.12); }
.poster-white .poster-copy p { color: var(--muted-dark); }
.poster-white .poster-copy span { color: var(--dial-blue); }

.split-title { display: grid; grid-template-columns: .35fr 1fr; gap: 40px; max-width: 1180px; }
.detail-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.detail-grid article { min-height: 250px; border-top: 1px solid var(--line-dark); padding-top: 28px; }
.detail-grid p { color: var(--muted-dark); }
.detail-line { display: block; width: 46px; height: 1px; background: var(--dial-blue); margin-bottom: 42px; }
.macro-strip { width: var(--container); margin: 64px auto 0; display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 16px; }
.macro-strip div { min-height: 210px; background: linear-gradient(135deg, #0d0d0d, #303030); display: flex; align-items: flex-end; padding: 20px; color: rgba(247,245,240,.62); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }
.macro-strip div:nth-child(2) { background: linear-gradient(135deg, #d8c7aa, #f7f5f0); color: rgba(16,16,15,.62); }
.macro-strip div:nth-child(3) { background: linear-gradient(135deg, #14355f, #a9dde8); }

.lifestyle { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; padding: clamp(78px, 10vw, 130px) max(20px, calc((100vw - 1180px) / 2)); }
.lifestyle-panel { border: 1px solid var(--line); padding: clamp(34px, 5vw, 62px); min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.lifestyle-panel p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.lifestyle-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tile { min-height: 250px; padding: 20px; display: flex; align-items: flex-end; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: rgba(247,245,240,.72); }
.tile:first-child { grid-column: 1 / -1; min-height: 252px; }
.dark-stone { background: radial-gradient(circle at 70% 30%, #404040, #080808 60%); }
.pale-stone { background: linear-gradient(135deg, #efe6d6, #c7bca7); color: rgba(16,16,15,.62); }
.blue-glass { background: linear-gradient(135deg, #14355f, #a9dde8); }

.configurator { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(34px, 7vw, 96px); padding-left: max(20px, calc((100vw - 1180px) / 2)); padding-right: max(20px, calc((100vw - 1180px) / 2)); }
.config-copy p:not(.section-kicker) { max-width: 680px; color: var(--muted-dark); font-size: 18px; }
.config-options { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reserve-card, .buy-card, .cart-panel, .order-form {
  border: 1px solid var(--line);
  background: #0b0b0b;
  color: var(--ink);
  padding: 28px;
}
.section-ivory .reserve-card { background: var(--black); }
.sku { color: var(--ice); font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .08em; }
.price { font-size: 42px; font-weight: 300; letter-spacing: -.04em; margin-bottom: 20px; }
.mini { color: rgba(247,245,240,.52); font-size: 13px; margin: 0 0 18px; }
label, .qty-label { display: grid; gap: 9px; color: rgba(247,245,240,.64); text-transform: uppercase; letter-spacing: .11em; font-size: 11px; font-weight: 850; }
.section-ivory label { color: rgba(16,16,15,.62); }
.check-line { display: flex; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; font-size: 13px; color: rgba(247,245,240,.7); }
.check-line input { width: auto; min-height: auto; }
input, textarea, select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(247,245,240,.16);
  border-radius: 4px;
  background: rgba(255,255,255,.045);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.section-ivory input, .section-ivory textarea, .section-ivory select { background: rgba(255,255,255,.46); color: var(--dark-ink); border-color: rgba(16,16,15,.16); }
textarea { min-height: 96px; resize: vertical; }
select option { color: #111; }
input:focus, textarea:focus, select:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(169,221,232,.14); }

.trust { padding: 0 max(20px, calc((100vw - 1180px) / 2)); }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid span { min-height: 112px; display: grid; place-items: center; text-align: center; padding: 18px; border-right: 1px solid var(--line); color: rgba(247,245,240,.66); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.trust-grid span:last-child { border-right: 0; }
.final-cta { min-height: 560px; display: grid; place-items: center; text-align: center; padding: 90px 20px; background: radial-gradient(circle at 50% 40%, rgba(169,221,232,.12), transparent 34%), var(--black); }
.final-cta h2 { max-width: 860px; margin-left: auto; margin-right: auto; }

/* Existing commerce pages */
.page-shell { padding: 130px max(20px, calc((100vw - 1180px) / 2)) 80px; min-height: 100svh; }
.page-head { max-width: 920px; margin-bottom: 44px; }
.page-head h1 { margin-bottom: 20px; }
.page-grid { padding: 0; }
.checkout-grid { display: grid; grid-template-columns: 390px 1fr; gap: 26px; align-items: start; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 26px; align-items: start; }
.cart-items { display: grid; gap: 16px; }
.cart-items-panel { min-height: 320px; }
.cart-product-row {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 130px 120px auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-product-row:first-child { padding-top: 0; }
.cart-product-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cart-product-thumb {
  min-height: 138px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 44%, rgba(169,221,232,.12), transparent 58%), #111;
  border: 1px solid rgba(247,245,240,.12);
}
.cart-product-thumb .poster-watch { width: 96px; height: 118px; transform: scale(.7); }
.cart-product-thumb.small { min-height: 82px; width: 82px; }
.cart-product-thumb.small .poster-watch { width: 82px; height: 96px; transform: scale(.55); }
.cart-product-info h3 { margin-bottom: 8px; }
.cart-product-info span, .checkout-item span { color: rgba(247,245,240,.55); display: block; margin-top: 8px; }
.cart-qty-control { min-width: 110px; }
.line-total { font-size: 18px; white-space: nowrap; }
.cart-summary { position: sticky; top: 110px; display: grid; gap: 16px; }
.summary-lines { display: grid; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-lines div { display: flex; justify-content: space-between; gap: 14px; color: rgba(247,245,240,.66); font-size: 14px; }
.grand-total { border-bottom: 0; padding-top: 0; }
.empty-cart { min-height: 260px; display: grid; place-items: center; align-content: center; gap: 14px; text-align: center; }
.checkout-items { display: grid; gap: 14px; }
.checkout-item { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.checkout-item b { white-space: nowrap; }
.cart-row { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.cart-row span { display: block; color: rgba(247,245,240,.55); margin-top: 8px; }
.link-btn { border: 0; padding: 0; background: none; color: var(--ice); cursor: pointer; align-self: flex-start; }
.total-row { display: flex; justify-content: space-between; padding-top: 22px; font-size: 20px; }
.order-form { display: grid; gap: 18px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-status { min-height: 22px; color: var(--ice); margin: 0; text-transform: none; letter-spacing: 0; font-size: 14px; }
.form-status.error { color: var(--danger); }
.form-status.ok { color: var(--ok); }
.cart-actions { display: grid; gap: 12px; margin-top: 22px; }
.orders-section { margin-top: 72px; }
.orders-list { display: grid; gap: 12px; }
.order-card { display: grid; gap: 8px; padding: 20px; border: 1px solid rgba(247,245,240,.14); background: #0b0b0b; }
.order-card:hover { border-color: var(--ice); }
.order-card span { color: var(--ice); font-family: ui-monospace, monospace; font-size: 12px; }
.order-card em { color: rgba(247,245,240,.58); font-style: normal; }
.order-data { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid var(--line); }
.order-data li { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.order-data span { color: rgba(247,245,240,.48); }
.order-data strong { overflow-wrap: anywhere; }

.footer { min-height: 90px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 max(20px, calc((100vw - 1180px) / 2)); color: rgba(247,245,240,.42); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; gap: 20px; }
.footer span:first-child { font-family: var(--font-brand); text-transform: none; letter-spacing: .01em; font-size: 24px; color: rgba(247,245,240,.86); }

.auth-modal { width: min(540px, calc(100vw - 28px)); border: 1px solid rgba(247,245,240,.18); background: #080808; color: var(--ink); padding: 0; }
.auth-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-shell { padding: 30px; display: grid; gap: 16px; position: relative; }
.modal-shell h2 { font-size: 38px; margin-bottom: 0; }
.modal-copy { color: rgba(247,245,240,.58); }
.modal-close { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; font-size: 24px; }
.auth-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
@media (max-width: 1040px) {
  .hero-editorial, .lifestyle, .configurator, .checkout-grid, .cart-layout { grid-template-columns: 1fr; }
  .hero-object { min-height: 520px; }
  .hero-photo-frame { width: min(92vw, 720px); }
  .case-grid, .detail-grid, .config-options { grid-template-columns: 1fr; }
  .formula { grid-template-columns: 1fr; }
  .formula-arrow { transform: rotate(90deg); min-height: 30px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .split-title { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-header { min-height: 74px; height: auto; padding: 12px 18px; }
  .brand-logo { height: 45px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 18px; }
  .nav { gap: 12px; font-size: 10px; }
  .nav a:nth-child(1), .nav a:nth-child(2), .nav a:nth-child(3) { display: none; }
  .hero-editorial { padding-top: 118px; grid-template-columns: 1fr; }
  h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .hero-object { min-height: 420px; }
  .product-render { width: min(88vw, 330px); }
  .strap { width: 86px; height: 165px; }
  .screw { width: 10px; height: 10px; }
  .s1 { top: 26px; } .s2 { top: 55px; right: 55px; } .s3 { right: 26px; } .s4 { right: 55px; bottom: 55px; }
  .s5 { bottom: 26px; } .s6 { left: 55px; bottom: 55px; } .s7 { left: 26px; } .s8 { left: 55px; top: 55px; }
  .object-caption { position: static; text-align: center; margin-top: -20px; }
  .case-poster { min-height: 520px; }
  .macro-strip, .lifestyle-tiles, .form-two, .auth-actions { grid-template-columns: 1fr; }
  .cart-product-row { grid-template-columns: 92px 1fr; gap: 14px; }
  .cart-product-thumb { min-height: 104px; }
  .cart-qty-control, .line-total, .cart-product-row .link-btn { grid-column: 2; }
  .checkout-item { grid-template-columns: auto 1fr; }
  .checkout-item b { grid-column: 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; justify-content: center; text-align: center; padding: 26px 20px; }
}
