:root {
  --sky: #c8ddf0;
  --sky-soft: #e5f0f9;
  --sky-strong: #afd0eb;
  --sky-deep: #7999b8;
  --butter: #ffe7a3;
  --cream: #fff7e6;
  --cream-light: #fffdf7;
  --gold: #d4af37;
  --gold-deep: #a98118;
  --cacao: #5a3e36;
  --ink: #49352f;
  --muted: #806e67;
  --white: #fff;
  --shadow: 0 22px 70px rgba(90, 62, 54, .12);
  --soft-shadow: 0 12px 34px rgba(90, 62, 54, .09);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--sky);
  background-image:
    linear-gradient(rgba(200, 221, 240, .92), rgba(200, 221, 240, .92)),
    url("/assets/brand/papel-completo-sh.png");
  background-size: auto, 860px auto;
  background-position: center top;
  background-attachment: fixed;
  font-family: var(--sans);
  line-height: 1.6;
  max-width: 100%; overflow-x: hidden;
}
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: 112px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px;
  border-radius: 10px; background: var(--cacao); color: white; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 30px;
  padding: 6px 20px; color: var(--cacao); background: var(--butter);
  font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.announcement-separator::before { content: "♡"; margin-right: 30px; color: var(--gold-deep); }
.site-header {
  position: sticky; top: 0; z-index: 100; padding-block: 12px;
  background: rgba(200,221,240,.72); backdrop-filter: blur(16px);
}
.nav {
  width: min(1400px, calc(100% - 24px)); height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding-inline: 22px; border: 1px solid rgba(255,255,255,.82); border-radius: 25px;
  background: rgba(255,255,255,.7); box-shadow: 0 16px 44px rgba(90,62,54,.1);
}
.brand {
  width: 320px; height: 72px; flex: 0 0 320px; display: flex; align-items: center;
  overflow: visible; pointer-events: auto;
}
.brand-wordmark {
  display: inline-flex; align-items: center; white-space: nowrap;
  color: var(--sky-deep); font-family: Georgia, "Times New Roman", serif;
  font-size: 47px; font-style: italic; line-height: 1; letter-spacing: -.055em;
  text-shadow: 0 1px 0 rgba(255,255,255,.9);
}
.brand-wordmark i {
  margin: 1px 7px 0 9px; color: var(--gold); font-size: 21px; font-style: normal;
  letter-spacing: 0; transform: rotate(-8deg);
}
.nav-links {
  display: flex; align-items: center; gap: clamp(22px, 2.7vw, 36px); margin-left: auto;
}
.nav-links a { position: relative; font-size: 14px; font-weight: 600; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: none; padding: 8px; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px 0; background: var(--cacao); }

.button {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 18px;
  padding: 14px 25px; border: 1px solid var(--cacao); border-radius: 999px; cursor: pointer;
  color: white; background: var(--cacao); font-size: 14px; font-weight: 700;
  box-shadow: 0 10px 26px rgba(90, 62, 54, .16); transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #704d42; box-shadow: 0 15px 34px rgba(90, 62, 54, .22); }
.button-small { min-height: 43px; padding: 9px 18px; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(90, 62, 54, .35); }
.text-link:hover { color: var(--gold-deep); border-color: var(--gold); }

.hero {
  position: relative; min-height: max(780px, calc(100svh - 150px)); display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  align-items: center; gap: 56px; padding-block: 38px 54px;
}
.hero::before {
  content: none;
}
.eyebrow { margin: 0 0 20px; color: var(--gold-deep); font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; margin-right: 10px; vertical-align: middle; background: var(--gold); }
.hero h1, .section-heading h2, .custom-copy h2, .center-heading h2, .story-copy h2 {
  margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.4vw, 78px); line-height: .98;
  font-weight: 400; letter-spacing: -.045em;
}
.hero-copy { position: relative; left: -38px; min-width: 0; }
h1 em, h2 em { color: var(--sky-deep); font-weight: 400; }
.hero-lead { max-width: 550px; margin: 30px 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-art { position: relative; top: 28px; min-height: 590px; display: grid; place-items: center; isolation: isolate; }
.hero-art::before {
  content: ""; position: absolute; width: 500px; height: 500px; z-index: -3;
  border-radius: 50%; background: var(--sky); opacity: 1;
}
.hero-art::after {
  content: none;
}
.hero-card {
  position: relative; width: min(520px, 91%); aspect-ratio: 1; display: grid; place-items: center;
  overflow: hidden; border: 2px solid rgba(212, 175, 55, .34); border-radius: 50%;
  background: rgba(255, 255, 255, .94); box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center; transform: scale(1.12); }
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(212, 175, 55, .35); border-radius: 50%; }
.hero-orbit-one { width: 600px; height: 600px; animation: orbit 20s linear infinite; }
.hero-orbit-two { width: 655px; height: 655px; border-color: rgba(121, 153, 184, .38); animation: orbit 26s linear reverse infinite; }
.orbit-token {
  position: absolute; display: grid; place-items: center; border: 1px solid rgba(212,175,55,.5);
  border-radius: 50%; background: rgba(229,240,249,.92); box-shadow: 0 6px 16px rgba(90,62,54,.09);
}
.orbit-heart { width: 36px; height: 36px; color: var(--gold-deep); font: 700 25px/1 var(--serif); }
.orbit-heart-a { left: 13%; top: 8%; }
.orbit-heart-b { right: -2%; top: 52%; }
.orbit-sweet { width: 43px; height: 43px; font-size: 22px; }
.orbit-sweet-a { left: 21%; bottom: -16px; }
.orbit-sweet-b { right: 12%; bottom: 4%; }
.orbit-sweet-c { left: -17px; bottom: 29%; }
.hero-orbit-one .orbit-token { animation: orbit-counter 20s linear infinite; }
.hero-orbit-two .orbit-token { animation: orbit-counter-reverse 26s linear infinite; }
.floating-spark { position: absolute; color: var(--gold); font-family: var(--serif); }
.spark-one { top: 11%; left: 27%; font-size: 21px; }
.spark-two { right: 15%; bottom: 8%; color: var(--sky-deep); }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-counter { to { transform: rotate(-360deg); } }
@keyframes orbit-counter-reverse { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 18px; z-index: 8; display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px 9px 16px; border: 1px solid rgba(255,255,255,.68); border-radius: 999px;
  color: var(--cacao); background: rgba(255,255,255,.34); box-shadow: 0 9px 26px rgba(90,62,54,.08);
  font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  transform: translateX(-50%); backdrop-filter: blur(9px); transition: background .2s, transform .2s;
}
.scroll-cue:hover { background: rgba(255,255,255,.62); transform: translateX(-50%) translateY(-2px); }
.scroll-cue b { display: inline-grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: var(--butter); font-size: 14px; animation: scroll-nudge 1.7s ease-in-out infinite; }
@keyframes scroll-nudge { 50% { transform: translateY(3px); } }

.catalog-section { padding-top: 58px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2, .custom-copy h2, .center-heading h2, .story-copy h2 { font-size: clamp(42px, 4.5vw, 64px); }
.section-heading > p { max-width: 390px; margin: 0 0 6px; color: var(--muted); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 34px; }
.category-filter { display: flex; gap: 9px; flex-wrap: wrap; }
.filter-chip {
  padding: 10px 17px; border: 1px solid rgba(90, 62, 54, .14); border-radius: 999px;
  background: white; cursor: pointer; font-size: 12px; font-weight: 700; transition: .2s;
}
.filter-chip:hover, .filter-chip.active { color: white; border-color: var(--cacao); background: var(--cacao); }
.search-box {
  min-width: 240px; display: flex; align-items: center; gap: 8px; padding: 10px 15px;
  border: 1px solid rgba(90, 62, 54, .15); border-radius: 999px; background: white;
}
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: none; font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative; overflow: hidden; border: 1px solid rgba(90, 62, 54, .08); border-radius: var(--radius-md);
  background: white; box-shadow: var(--soft-shadow); transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-image-button { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; padding: 0; border: 0; cursor: pointer; background: var(--sky-soft); }
.product-image-button::after { content: "Ver detalle"; position: absolute; right: 18px; bottom: 18px; padding: 9px 13px; border-radius: 999px; color: var(--cacao); background: rgba(255,255,255,.9); font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(5px); transition: .25s; }
.product-card:hover .product-image-button::after { opacity: 1; transform: translateY(0); }
.product-image-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-image-button img { transform: scale(1.035); }
.product-badge { position: absolute; left: 15px; top: 15px; z-index: 2; padding: 7px 11px; border-radius: 999px; color: var(--cacao); background: var(--butter); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.media-badge { left: auto; right: 15px; color: var(--gold-deep); background: rgba(255, 253, 247, .92); }
.product-card-content { padding: 22px; }
.product-category { margin: 0 0 7px; color: var(--gold-deep); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.product-card h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 400; }
.product-card-description { min-height: 48px; margin: 9px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.product-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(90,62,54,.08); }
.product-price { font-family: var(--serif); font-size: 20px; color: var(--cacao); }
.product-open { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(90,62,54,.15); border-radius: 50%; background: var(--cream); cursor: pointer; transition: .2s; }
.product-open:hover { color: white; background: var(--cacao); transform: rotate(-8deg); }
.product-skeleton { aspect-ratio: .78; border-radius: var(--radius-md); background: linear-gradient(90deg, #f7f0e4 25%, #fffaf0 50%, #f7f0e4 75%); background-size: 200% 100%; animation: loading 1.3s infinite; }
@keyframes loading { to { background-position: -200% 0; } }
.empty-state { padding: 34px; border-radius: var(--radius-md); background: var(--sky-soft); text-align: center; color: var(--muted); }

.custom-section { position: relative; overflow: hidden; color: white; background: var(--cacao); }
.custom-section::before { content: ""; position: absolute; inset: 0; opacity: .15; background: url('/assets/brand/pattern.png') center/460px; }
.custom-section::after { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; bottom: -250px; border-radius: 50%; background: var(--sky); opacity: .13; }
.custom-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; padding-block: 120px; }
.custom-visual { position: relative; min-height: 590px; display: grid; place-items: center; isolation: isolate; }
.custom-visual::before { content: ""; position: absolute; width: 84%; aspect-ratio: 1.06; z-index: -2; border-radius: 48px 128px 48px 128px; background: var(--butter); opacity: .22; transform: translate(-7%, 6%) rotate(5deg); }
.custom-visual::after { content: ""; position: absolute; width: 90%; aspect-ratio: 1.06; z-index: -1; border: 2px solid rgba(200,221,240,.62); border-radius: 128px 42px 128px 42px; transform: rotate(4deg); }
.custom-frame { width: min(560px, 96%); overflow: hidden; border: 10px solid rgba(200,221,240,.52); border-radius: 50px 132px 50px 132px; box-shadow: 0 32px 80px rgba(0,0,0,.34); transform: rotate(-2.5deg); }
.custom-frame img { width: 100%; aspect-ratio: 1.06; object-fit: cover; transform: scale(1.015); }
.custom-badge { position: absolute; right: -8px; bottom: 34px; width: 126px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--cacao); background: var(--butter); text-align: center; font-family: var(--serif); line-height: 1.3; transform: rotate(8deg); box-shadow: 0 14px 34px rgba(0,0,0,.18); }
.eyebrow.light { color: var(--butter); }
.custom-copy h2 em { color: var(--butter); }
.custom-copy > p:not(.eyebrow) { max-width: 520px; margin: 26px 0; color: rgba(255,255,255,.72); font-size: 16px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 20px; padding: 0; margin: 28px 0 34px; list-style: none; font-size: 13px; }
.check-list span { display: inline-grid; width: 23px; height: 23px; place-items: center; margin-right: 8px; border-radius: 50%; color: var(--cacao); background: var(--butter); }
.button-cream { color: var(--cacao); border-color: var(--butter); background: var(--butter); }
.button-cream:hover { color: var(--cacao); background: #fff0bb; }

.story-section {
  overflow: hidden;
  background-color: var(--sky);
  background-image:
    linear-gradient(rgba(200, 221, 240, .92), rgba(200, 221, 240, .92)),
    url("/assets/brand/papel-completo-sh.png");
  background-size: auto, 860px auto;
  background-position: center;
}
.story-layout { min-height: 620px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; padding-block: 90px; }
.story-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
.story-copy .text-link { margin-top: 16px; }
.story-seal { position: relative; display: grid; place-items: center; }
.seal-ring { width: min(470px, 90%); aspect-ratio: 1; overflow: hidden; border: 1px solid var(--gold); border-radius: 50%; background: white; box-shadow: var(--shadow); }
.seal-ring img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { color: rgba(255,255,255,.78); background: #3f2c27; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr .9fr; gap: 60px; padding-block: 70px 52px; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 330px; font-size: 13px; }
.footer-grid h3 { margin: 10px 0 18px; color: var(--butter); font-family: var(--serif); font-size: 17px; font-weight: 400; }
.footer-grid a, .footer-grid div > span { display: block; margin: 9px 0; font-size: 12px; }
.footer-grid a:hover { color: var(--butter); }
.footer-note { display: flex; gap: 12px; align-items: flex-start; color: var(--butter); font-family: var(--serif); font-size: 19px; }
.footer-note > span { font-size: 30px !important; }
.footer-note p { margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.developer-credit { color: var(--butter); letter-spacing: .13em; }

.whatsapp-float { position: fixed; right: 23px; bottom: 23px; z-index: 90; width: 58px; height: 58px; display: grid; place-items: center; border: 4px solid var(--cream-light); border-radius: 50%; color: white; background: #25d366; box-shadow: 0 12px 30px rgba(37,211,102,.3); transition: .2s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); }
.whatsapp-float svg { width: 29px; fill: currentColor; }

.product-dialog { width: min(1100px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 1px solid rgba(121,153,184,.28); border-radius: 30px; color: var(--ink); background: var(--sky-soft); box-shadow: 0 30px 100px rgba(40,23,18,.3); }
.product-dialog::backdrop { background: rgba(52,36,31,.65); backdrop-filter: blur(8px); }
.dialog-shell { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; min-height: 680px; background: linear-gradient(115deg, var(--sky) 0 51%, var(--sky-soft) 51% 100%); }
.dialog-close { position: absolute; right: 18px; top: 18px; z-index: 5; width: 42px; height: 42px; border: 0; border-radius: 50%; cursor: pointer; color: var(--cacao); background: rgba(255,255,255,.92); font-size: 29px; line-height: 1; box-shadow: var(--soft-shadow); }
.dialog-media-column { padding: 26px; background: var(--sky); }
.dialog-media { position: relative; width: 100%; aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: var(--sky-soft); touch-action: pan-y; perspective: 900px; }
.dialog-media img, .dialog-media model-viewer { width: 100%; height: 100%; object-fit: cover; }
.dialog-media .tilt-image { transition: transform .16s ease-out; transform-style: preserve-3d; }
.spin-viewer { width: 100%; height: 100%; display: grid; place-items: center; cursor: ew-resize; user-select: none; }
.spin-viewer img { pointer-events: none; }
.spin-progress { position: absolute; left: 50%; bottom: 15px; transform: translateX(-50%); padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.88); font-size: 10px; font-weight: 800; }
.media-thumbnails { display: flex; gap: 9px; margin-top: 12px; overflow-x: auto; }
.media-thumb { flex: 0 0 62px; width: 62px; height: 62px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 12px; cursor: pointer; background: white; }
.media-thumb.active { border-color: var(--gold); }
.media-thumb img { width: 100%; height: 100%; object-fit: cover; }
.viewer-hint { min-height: 20px; margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 11px; }
.dialog-content { padding: 54px 48px 40px; overflow-y: auto; background: rgba(229,240,249,.92); }
.dialog-content h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 52px); font-weight: 400; line-height: 1; }
.dialog-price { margin: 14px 0; color: var(--gold-deep); font-family: var(--serif); font-size: 25px; }
.dialog-description { color: var(--muted); font-size: 14px; }
.availability-note { display: flex; gap: 12px; align-items: center; margin: 20px 0 24px; padding: 13px 15px; border-radius: 14px; background: var(--butter); }
.availability-note > span { color: var(--gold); }
.availability-note p { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.35; }
.availability-note small { color: var(--muted); font-weight: 400; }
.field { display: block; margin: 0 0 16px; }
.field > span { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 750; }
.field > span small { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid rgba(90,62,54,.16); border-radius: 12px; outline: none; color: var(--ink); background: white; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.form-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 14px; }
.quantity-control { display: grid; grid-template-columns: 38px 1fr 38px; border: 1px solid rgba(90,62,54,.16); border-radius: 12px; overflow: hidden; }
.quantity-control button { border: 0; cursor: pointer; background: var(--cream); font-size: 20px; }
.quantity-control input { min-height: 44px; padding: 0; border: 0; border-radius: 0; text-align: center; -moz-appearance: textfield; }
.quantity-control input::-webkit-inner-spin-button { appearance: none; }
.order-button { width: 100%; justify-content: space-between; margin-top: 6px; }
.order-helper { margin: 10px 0 0; color: var(--muted); text-align: center; font-size: 10px; line-height: 1.45; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { gap: 17px; }
  .nav-links a { font-size: 12px; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-art { min-height: 500px; }
  .hero-orbit-one { width: 505px; height: 505px; }
  .hero-orbit-two { width: 550px; height: 550px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-note { display: none; }
}

@media (max-width: 760px) {
  :root { --shell: min(calc(100% - 28px), 620px); }
  .section { padding-block: 78px; }
  .announcement { gap: 0; font-size: 9px; }
  .announcement-separator { display: none; }
  .nav { height: 70px; }
  .brand { width: 205px; height: 62px; flex-basis: 205px; }
  .brand-wordmark { font-size: 32px; }
  .brand-wordmark i { margin-inline: 5px; font-size: 14px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid rgba(90,62,54,.1);
    border-radius: 18px; background: white; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .nav-order { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 18px; padding-block: 26px 86px; text-align: center; }
  .hero-copy { position: relative; left: 0; z-index: 2; order: 2; }
  .hero-copy.reveal, .hero-art.reveal { opacity: 1; transform: none; }
  .hero h1 { max-width: 100%; font-size: clamp(42px, 12vw, 50px); overflow-wrap: anywhere; }
  .hero-lead { margin-inline: auto; font-size: 16px; }
  .hero-actions { justify-content: center; }
  .hero-art { order: 1; top: 0; width: 100%; min-height: clamp(310px, 95vw, 470px); }
  .hero-art::before { width: min(72vw, 360px); height: auto; aspect-ratio: 1; }
  .hero-card { width: min(72vw, 360px); }
  .hero-orbit-one { width: min(calc(100vw - 72px), 405px); height: auto; aspect-ratio: 1; }
  .hero-orbit-two { width: min(calc(100vw - 52px), 440px); height: auto; aspect-ratio: 1; }
  .orbit-heart { width: 31px; height: 31px; font-size: 21px; }
  .orbit-sweet { width: 36px; height: 36px; font-size: 18px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .category-filter { flex-wrap: nowrap; padding-bottom: 4px; overflow-x: auto; }
  .filter-chip { white-space: nowrap; }
  .search-box { min-width: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .custom-layout, .story-layout { grid-template-columns: 1fr; gap: 42px; padding-block: 75px; }
  .custom-visual { min-height: auto; }
  .custom-frame { width: min(520px, 92%); }
  .custom-badge { right: 2%; bottom: -16px; width: 100px; }
  .check-list { grid-template-columns: 1fr; }
  .story-layout { text-align: center; }
  .story-copy > p:not(.eyebrow) { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { gap: 18px; flex-direction: column; }
  .product-dialog { width: 100%; max-width: none; max-height: 94dvh; margin: auto 0 0; border-radius: 28px 28px 0 0; }
  .dialog-shell { grid-template-columns: 1fr; }
  .dialog-media-column { padding: 16px; }
  .dialog-media { max-height: 48vh; }
  .dialog-content { padding: 32px 22px 30px; }
  .dialog-close { right: 12px; top: 12px; }
}

@media (max-width: 420px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
