@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/figtree-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #fcfaf7;
  --white: #fff;
  --mist: #dce9e8;
  --mist-deep: #bfd8d6;
  --rose: #a43d52;
  --rose-hover: #873044;
  --peach-soft: #f0ddcf;
  --copper: #8f513d;
  --sun: #ddb16f;
  --sun-hover: #c99a55;
  --ink: #17343d;
  --ink-soft: #3d5a61;
  --line: rgba(23, 52, 61, .2);
  --line-light: rgba(255, 255, 255, .24);
  --whatsapp: #14713e;
  --shadow-photo: 0 24px 60px rgba(23, 52, 61, .2);
  --container: min(1220px, calc(100% - 56px));
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Figtree", Arial, sans-serif;
}

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

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-color: var(--rose) var(--mist);
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--white); background: var(--rose); }

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ink);
}

h1, h2, h3, p, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); text-wrap: balance; }
h1, h2 { letter-spacing: -.035em; }
h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 700;
  line-height: .98;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 14px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--rose); }
.btn-primary:hover { background: var(--rose-hover); }
.btn-accent { color: var(--ink); background: var(--sun); }
.btn-accent:hover { background: var(--sun-hover); }
.btn-dark { color: var(--white); background: var(--ink); }
.btn-dark:hover { background: #0c252c; }

.text-link {
  min-height: 44px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 7px 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-underline-offset: 5px;
  transition: gap .2s ease, color .2s ease;
}
.text-link:hover { gap: 14px; color: var(--rose); }
.text-link-light:hover { color: var(--sun); }
.link-icon { width: 16px; height: 16px; flex: 0 0 auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(252, 251, 247, .98);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(23, 52, 61, .08);
}

.nav-shell {
  width: var(--container);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy strong { font-family: var(--display); font-size: 1.02rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 3px; }
.nav-links > a:not(.btn) {
  padding: 10px 11px;
  font-size: .88rem;
  font-weight: 600;
}
.nav-links > a:not(.btn):hover { color: var(--rose); }
.nav-cta { min-height: 46px; margin-left: 8px; padding-inline: 18px; font-size: .86rem; }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}
.menu-toggle svg { width: 23px; height: 23px; }

.hero {
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  background: var(--mist);
  scroll-margin-top: 78px;
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(64px, 8vw, 118px);
  padding-right: clamp(36px, 4vw, 72px);
  padding-bottom: clamp(48px, 6vw, 84px);
  padding-left: max(40px, calc((100vw - 1220px) / 2 + 28px));
}
.hero h1 {
  max-width: 10.5ch;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.8vw, 5.45rem);
  font-weight: 700;
  line-height: .88;
  text-wrap: balance;
}
.hero h1 span { color: var(--rose); }
.hero-lead {
  max-width: 48ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.hero-actions .btn { min-width: 236px; padding-inline: 26px; white-space: nowrap; }
.hero-note { max-width: 48ch; margin: 24px 0 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.5; }

.hero-gallery {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--peach-soft);
}
.hero-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-photo);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--sun);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-frame-main {
  z-index: 2;
  width: min(48%, 360px);
  height: 72%;
  top: 14%;
  left: 13%;
  transform: rotate(-2deg);
}
.hero-frame-top {
  z-index: 3;
  width: min(29%, 220px);
  height: 37%;
  top: 9%;
  right: 18%;
  transform: rotate(4deg);
}
.hero-frame-bottom {
  z-index: 4;
  width: min(30%, 225px);
  height: 39%;
  right: 15%;
  bottom: 9%;
  transform: rotate(-3deg);
}
.hero-stitch {
  position: absolute;
  z-index: 1;
  width: 40%;
  aspect-ratio: 1;
  top: 29%;
  right: 24%;
  border: 2px dashed rgba(23, 52, 61, .36);
  border-radius: 50%;
}

.age-line {
  grid-column: 1 / -1;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding-inline: max(5vw, calc((100vw - 1220px) / 2 + 28px));
  color: var(--white);
  background: var(--ink);
}
.age-line strong { font-family: var(--display); font-size: 2.8rem; line-height: 1; }
.age-line > span { display: grid; gap: 8px; }
.age-line i { height: 1px; position: relative; display: block; background: var(--line-light); }
.age-line i::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 58%;
  border-radius: 50%;
  background: var(--sun);
  transform: translate(-50%, -50%);
}
.age-line small { color: rgba(255, 255, 255, .72); font-size: .72rem; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.age-line em { margin-left: -12px; color: rgba(255, 255, 255, .72); font-size: .8rem; font-style: normal; }

.discover,
.catalog-section,
.faq-section {
  width: var(--container);
  margin-inline: auto;
  scroll-margin-top: 90px;
}
.discover { padding: clamp(88px, 10vw, 150px) 0 clamp(76px, 8vw, 120px); }
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 56px;
}
.section-intro h2 { margin-bottom: 0; }
.section-intro p { max-width: 48ch; margin-bottom: 4px; color: var(--ink-soft); font-size: 1.08rem; }

.phase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.phase-button {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px 26px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease;
}
.phase-button:nth-child(3n) { border-right: 0; }
.phase-button span { font-family: var(--display); font-size: clamp(1.55rem, 2.6vw, 2.3rem); font-weight: 700; letter-spacing: -.025em; }
.phase-button small { color: var(--ink-soft); font-size: .82rem; }
.phase-button:hover { background: var(--mist); }
.phase-button.is-active { color: var(--white); background: var(--rose); }
.phase-button.is-active small { color: rgba(255, 255, 255, .92); }

.catalog-section { padding: 0 0 clamp(96px, 11vw, 164px); }
.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.catalog-heading h2 { max-width: 14ch; }
.catalog-heading p { max-width: 58ch; margin-bottom: 0; color: var(--ink-soft); }
.catalog-status {
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.catalog-meta { display: grid; justify-items: end; gap: 8px; }
.clear-filter {
  min-height: 44px;
  padding: 7px 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--rose);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.clear-filter:hover { color: var(--rose-hover); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 76px) clamp(20px, 3vw, 38px);
}
.product {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}
.product-image {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: var(--mist);
}
.product:nth-child(4n + 2) .product-image { background: #f0c8cf; }
.product:nth-child(4n + 3) .product-image { background: #f4dc92; }
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.product:hover .product-image img { transform: scale(1.025); }
.product-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-image.is-missing { display: grid; place-items: center; padding: 24px; }
.product-image-fallback { max-width: 18ch; font-weight: 700; text-align: center; }
.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 20px;
}
.product-category { margin-bottom: 8px; color: var(--rose); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.product h3 { margin-bottom: 9px; font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.08; }
.product-description { min-height: 3.1em; margin-bottom: 18px; color: var(--ink-soft); }
.product-link { min-height: 44px; display: inline-flex; align-items: center; align-self: flex-start; gap: 8px; margin-top: auto; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-weight: 700; }
.product-link:hover { color: var(--rose); border-color: var(--rose); }
.catalog-empty { grid-column: 1 / -1; padding: clamp(44px, 7vw, 76px); background: var(--mist); }
.catalog-empty strong { display: block; margin-bottom: 8px; font-family: var(--display); font-size: 1.8rem; }
.catalog-empty p { max-width: 54ch; color: var(--ink-soft); }

.how-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 9vw, 130px);
  padding: clamp(88px, 10vw, 144px) max(5vw, calc((100vw - 1220px) / 2 + 28px));
  color: var(--white);
  background: var(--copper);
  scroll-margin-top: 78px;
}
.how-copy { align-self: start; position: sticky; top: 120px; }
.how-copy h2 { max-width: 10ch; }
.how-copy p { max-width: 40ch; margin-bottom: 28px; color: rgba(255, 255, 255, .92); font-size: 1.08rem; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}
.steps strong { color: var(--sun); font-family: var(--display); font-size: 2.15rem; font-variant-numeric: tabular-nums; }
.steps h3 { margin-bottom: 7px; font-size: clamp(1.65rem, 3vw, 2.5rem); line-height: 1; }
.steps p { max-width: 48ch; margin-bottom: 0; color: rgba(255, 255, 255, .9); }

.store-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  background: var(--ink);
  color: var(--white);
  scroll-margin-top: 78px;
}
.store-photo { min-height: 760px; position: relative; overflow: hidden; }
.store-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.store-photo span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--sun);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.store-copy { align-self: center; padding: clamp(68px, 8vw, 118px) max(5vw, calc((100vw - 1220px) / 2 + 28px)) clamp(68px, 8vw, 118px) clamp(44px, 6vw, 88px); }
.store-copy h2 { max-width: 9ch; }
.store-lead { max-width: 43ch; margin-bottom: 42px; color: rgba(255, 255, 255, .76); font-size: 1.08rem; }
.store-facts { margin-bottom: 38px; border-top: 1px solid var(--line-light); }
.store-facts > div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.store-facts dt { color: var(--sun); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.store-facts dd { color: rgba(255, 255, 255, .88); }
.store-facts dd span { display: inline-block; min-width: 132px; color: rgba(255, 255, 255, .65); }
.store-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 25px; }
.map-button { border-top: 0; border-right: 0; border-left: 0; background: transparent; cursor: pointer; }
.map-button:disabled { cursor: wait; opacity: .76; }
.store-map { grid-column: 1 / -1; min-height: 500px; position: relative; color: var(--white); background: #102a31; }
.store-map[hidden] { display: none; }
.store-map iframe { width: 100%; height: 500px; display: block; border: 0; }
.store-map p { position: absolute; z-index: 1; top: 16px; left: 18px; margin: 0; padding: 8px 10px; color: var(--ink); background: var(--sun); font-size: .76rem; font-weight: 700; }

.faq-section { padding: clamp(96px, 11vw, 160px) 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 26px; height: 26px; flex: 0 0 auto; position: relative; }
.faq-list summary span::before,
.faq-list summary span::after { content: ""; width: 18px; height: 2px; position: absolute; top: 12px; left: 4px; background: var(--rose); transition: transform .2s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 68ch; margin: -2px 0 26px; color: var(--ink-soft); }

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(72px, 9vw, 124px) max(5vw, calc((100vw - 1220px) / 2 + 28px));
  background: var(--peach-soft);
}
.final-cta h2 { max-width: 11ch; }
.final-cta p { max-width: 52ch; margin-bottom: 0; color: var(--ink-soft); font-size: 1.08rem; }

.site-footer { padding: 64px max(5vw, calc((100vw - 1220px) / 2 + 28px)) 24px; color: var(--white); background: #0c252c; }
.footer-main { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: 54px; padding-bottom: 54px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 70px; height: 70px; border-radius: 50%; }
.footer-brand p { display: grid; gap: 6px; margin-bottom: 0; }
.footer-brand strong { max-width: 20ch; font-family: var(--display); font-size: 1.1rem; line-height: 1.15; }
.footer-brand span { max-width: 32ch; color: rgba(255, 255, 255, .62); font-size: .86rem; }
.footer-links, .footer-contact { display: grid; align-content: start; gap: 10px; }
.footer-links a, .footer-contact a { width: fit-content; color: rgba(255, 255, 255, .72); }
.footer-links a:hover, .footer-contact a:hover { color: var(--sun); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 22px; border-top: 1px solid var(--line-light); color: rgba(255, 255, 255, .52); font-size: .78rem; }

.whatsapp-fixed {
  width: 58px;
  height: 58px;
  position: fixed;
  z-index: 90;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 16px 34px rgba(23, 52, 61, .28);
  transition: transform .2s ease, background-color .2s ease;
}
.whatsapp-fixed:hover { background: #0e5d32; transform: translateY(-3px); }
.whatsapp-fixed svg { width: 27px; height: 27px; }

@keyframes hero-main-in {
  from { opacity: .2; filter: blur(8px); transform: translateY(32px) rotate(-4deg); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) rotate(-2deg); }
}
@keyframes hero-top-in {
  from { opacity: .2; filter: blur(8px); transform: translate(28px, -22px) rotate(7deg); }
  to { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(4deg); }
}
@keyframes hero-bottom-in {
  from { opacity: .2; filter: blur(8px); transform: translate(30px, 28px) rotate(-6deg); }
  to { opacity: 1; filter: blur(0); transform: translate(0, 0) rotate(-3deg); }
}
.hero-frame-main { animation: hero-main-in .75s cubic-bezier(.16, 1, .3, 1) both; }
.hero-frame-top { animation: hero-top-in .82s .08s cubic-bezier(.16, 1, .3, 1) both; }
.hero-frame-bottom { animation: hero-bottom-in .86s .14s cubic-bezier(.16, 1, .3, 1) both; }

@media (max-width: 1120px) {
  :root { --container: min(100% - 40px, 1220px); }
  .nav-links > a:not(.btn) { padding-inline: 8px; }
  .nav-cta { padding-inline: 14px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(400px, .95fr); }
  .hero-copy { padding-left: 36px; padding-right: 36px; }
  .hero-frame-main { width: min(54%, 360px); left: 10%; }
  .hero-frame-top { width: min(33%, 220px); right: 8%; }
  .hero-frame-bottom { width: min(34%, 225px); right: 6%; }
  .store-copy { padding-right: 38px; padding-left: 46px; }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 760px); }
  .nav-shell { min-height: 72px; }
  .menu-toggle { display: grid; }
  .nav-links {
    position: fixed;
    z-index: 99;
    inset: 72px 0 auto;
    display: grid;
    padding: 18px 16px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 34px rgba(23, 52, 61, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a:not(.btn) { padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-cta { width: 100%; margin: 14px 0 0; }
  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto auto minmax(580px, 70vw); }
  .hero-copy { padding: 76px max(24px, calc((100vw - 760px) / 2)) 64px; }
  .hero h1 { max-width: 10ch; font-size: clamp(4rem, 12vw, 6rem); }
  .hero-gallery { min-height: 580px; grid-row: 3; }
  .age-line { grid-row: 2; padding-inline: max(24px, calc((100vw - 760px) / 2)); }
  .phase-list { grid-template-columns: repeat(2, 1fr); }
  .phase-button:nth-child(3n) { border-right: 1px solid var(--line); }
  .phase-button:nth-child(2n) { border-right: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-section { grid-template-columns: 1fr; }
  .how-copy { position: static; }
  .how-copy h2 { max-width: 12ch; }
  .store-section { grid-template-columns: 1fr; }
  .store-photo { min-height: 620px; }
  .store-copy { padding: 76px max(24px, calc((100vw - 760px) / 2)); }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta .btn { width: fit-content; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .brand-logo { width: 46px; height: 46px; }
  .brand-copy strong { font-size: .93rem; }
  .brand-copy small { font-size: .58rem; }
  .hero { grid-template-rows: auto auto minmax(420px, 118vw); }
  .hero-copy { padding: 58px 16px 50px; }
  .hero h1 { max-width: 100%; font-size: clamp(3.35rem, 16vw, 4.6rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .btn { min-width: 0; white-space: normal; }
  .hero-gallery { min-height: 420px; }
  .hero-frame-main { width: 60%; height: 78%; left: 5%; }
  .hero-frame-top { width: 36%; height: 42%; right: 4%; }
  .hero-frame-bottom { width: 38%; height: 43%; right: 2%; }
  .hero-frame figcaption { bottom: 8px; left: 8px; padding: 5px 7px; font-size: .6rem; }
  .age-line { min-height: 78px; gap: 9px; padding-inline: 16px; }
  .age-line strong { font-size: 2rem; }
  .age-line small { font-size: .55rem; }
  .age-line em { margin-left: -6px; font-size: .65rem; }
  .discover { padding: 82px 0 72px; }
  .section-intro { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .phase-list { grid-template-columns: 1fr; }
  .phase-button, .phase-button:nth-child(2n), .phase-button:nth-child(3n) { min-height: 94px; border-right: 0; }
  .phase-button span { font-size: 1.75rem; }
  .catalog-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 36px; }
  .catalog-status { width: fit-content; }
  .catalog-meta { justify-items: start; }
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-description { min-height: 0; }
  .how-section { gap: 54px; padding: 78px 16px; }
  .steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .steps strong { font-size: 1.6rem; }
  .store-photo { min-height: 500px; }
  .store-copy { padding: 70px 16px; }
  .store-facts > div { grid-template-columns: 1fr; gap: 8px; }
  .store-facts dd span { min-width: 126px; }
  .faq-section { padding: 84px 0; }
  .faq-list summary { min-height: 78px; font-size: 1.2rem; }
  .final-cta { gap: 32px; padding: 72px 16px; }
  .final-cta .btn { width: 100%; }
  .site-footer { padding: 56px 16px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-fixed { width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-frame-main, .hero-frame-top, .hero-frame-bottom { animation: none; }
  .btn, .text-link, .product-image img, .nav-links, .faq-list summary span::after, .whatsapp-fixed { transition: none; }
}
