:root {
  --ink: #34241f;
  --ink-soft: #705d55;
  --cream: #fbf7ef;
  --cream-deep: #f1e7d7;
  --paper: #fffdf8;
  --gold: #95651f;
  --gold-light: #d9bc78;
  --maroon: #7c2937;
  --green: #31563d;
  --green-dark: #1f3b2b;
  --line: rgba(87, 59, 44, .18);
  --shadow-sm: 0 10px 30px rgba(71, 48, 36, .08);
  --shadow-lg: 0 28px 80px rgba(71, 48, 36, .16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--paper); background: var(--maroon); }
:focus-visible { outline: 3px solid rgba(149, 101, 31, .55); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 118px 0; }
.section--pattern { position: relative; isolation: isolate; }
.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: radial-gradient(circle at 1px 1px, rgba(126, 41, 55, .16) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}
.hidden, .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--ink); color: white; padding: 12px 16px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.03; font-weight: 600; letter-spacing: -.025em; }
h1 { font-size: clamp(3.45rem, 7.4vw, 6.65rem); }
h2 { font-size: clamp(2.75rem, 5.3vw, 4.85rem); }
h3 { font-size: 1.65rem; }
h1 em, h2 em { color: var(--maroon); font-weight: 500; }
p { margin: 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gold); font-size: .73rem; line-height: 1.2; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow > span { width: 35px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--center { justify-content: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(125, 82, 22, .2); background: #7d5216; }
.button:active { transform: scale(.98); }
.button--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.button--outline:hover { color: var(--gold); border-color: var(--gold); background: rgba(255, 255, 255, .38); box-shadow: none; }
.button--cream { background: var(--cream); color: var(--green-dark); border-color: var(--cream); }
.button--cream:hover { background: #fff; color: var(--green-dark); }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .72rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-weight: 700; font-size: .83rem; border-bottom: 1px solid rgba(149, 101, 31, .35); padding-bottom: 4px; transition: gap .2s, color .2s; }
.text-link:hover { gap: 12px; color: var(--maroon); }
.text-link svg { width: 16px; height: 16px; }

.announcement { background: var(--green-dark); color: #f9f0dc; font-size: .76rem; letter-spacing: .025em; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.announcement__link { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-light); font-weight: 700; white-space: nowrap; }
.announcement__link svg { width: 14px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251, 247, 239, .88); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(54, 36, 29, .05); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 188px; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.button) { position: relative; font-size: .76rem; font-weight: 700; letter-spacing: .035em; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s var(--ease); }
.site-nav > a:not(.button):hover::after { right: 0; }
.nav-instagram { display: inline-flex; gap: 7px; align-items: center; }
.nav-instagram svg { width: 18px; }
.menu-toggle { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle svg { width: 23px; height: 23px; }
.close-icon { display: none; }

.hero { min-height: calc(100dvh - 122px); display: flex; align-items: center; padding: 58px 0 86px; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(44px, 7vw, 94px); }
.hero__content { padding-top: 20px; }
.hero__content h1 { max-width: 760px; }
.hero__intro { max-width: 620px; margin-top: 28px; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.14rem); line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 36px; }
.hero__actions .button svg { width: 19px; height: 19px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 40px; color: var(--ink-soft); font-size: .72rem; font-weight: 700; letter-spacing: .075em; text-transform: uppercase; }
.hero__trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero__trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero__visual { position: relative; }
.hero__frame { position: relative; width: min(100%, 515px); margin-left: auto; }
.hero__frame::before { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid rgba(149, 101, 31, .35); border-radius: var(--radius-lg); z-index: -1; }
.hero__frame img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero__badge { position: absolute; right: -34px; top: 60px; width: 112px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; border-radius: 50%; background: var(--maroon); color: white; text-align: center; text-transform: uppercase; font-size: .56rem; line-height: 1.35; letter-spacing: .12em; box-shadow: 0 14px 40px rgba(82, 24, 34, .23); }
.hero__badge::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; }
.hero__badge-number { font-family: Georgia, "Times New Roman", serif; font-size: 1.85rem; line-height: 1; letter-spacing: 0; }
.hero__note { position: absolute; left: -56px; bottom: 28px; width: 235px; padding: 17px 20px 17px 50px; background: rgba(255,253,248,.92); border: 1px solid rgba(149,101,31,.18); border-radius: 16px; box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.hero__note p { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; line-height: 1.25; font-style: italic; }
.hero__note-mark { position: absolute; left: 18px; top: 3px; color: var(--gold); font-family: Georgia, serif; font-size: 3.8rem; line-height: 1; }

.marquee { overflow: hidden; padding: 18px 0; background: var(--maroon); color: #f8ead6; }
.marquee__track { display: flex; width: max-content; align-items: center; gap: 28px; animation: marquee 32s linear infinite; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; font-weight: 600; letter-spacing: .06em; }
.marquee__track i { display: block; width: 7px; height: 7px; border: 1px solid var(--gold-light); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.section-heading > p { max-width: 500px; color: var(--ink-soft); }
.section-heading--center { display: block; text-align: center; }
.collection { background: var(--paper); }
.collection-tools { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 38px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.search-field { position: relative; flex: 0 1 300px; }
.search-field svg { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 19px; color: var(--ink-soft); }
.search-field input { width: 100%; min-height: 46px; padding: 9px 12px 9px 32px; border: 0; border-bottom: 1px solid transparent; background: transparent; color: var(--ink); outline: 0; }
.search-field input:focus { border-color: var(--gold); }
.search-field input::placeholder { color: #8c7c75; }
.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.filter { min-height: 42px; padding: 9px 16px; border: 1px solid transparent; border-radius: 999px; background: transparent; color: var(--ink-soft); font-size: .73rem; font-weight: 700; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.filter:hover { color: var(--gold); }
.filter.is-active { background: var(--cream-deep); border-color: rgba(149,101,31,.18); color: var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 18px; }
.product-card { position: relative; min-width: 0; }
.product-card[hidden] { display: none; }
.product-card__visual { position: relative; overflow: hidden; aspect-ratio: .82; border-radius: 20px; background: var(--cream-deep); }
.product-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.product-card:hover .product-card__visual img { transform: scale(1.035); }
.product-card__badge { position: absolute; top: 13px; left: 13px; padding: 7px 10px; border-radius: 999px; background: rgba(255,253,248,.9); color: var(--green-dark); font-size: .61rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-card__quick { position: absolute; right: 12px; bottom: 12px; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--paper); color: var(--ink); box-shadow: 0 8px 26px rgba(62, 38, 28, .15); cursor: pointer; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s, background .2s, color .2s; }
.product-card:hover .product-card__quick, .product-card__quick:focus-visible { opacity: 1; transform: none; }
.product-card__quick:hover { background: var(--green-dark); color: white; }
.product-card__content { padding: 17px 4px 0; }
.product-card__meta { display: flex; justify-content: space-between; gap: 12px; color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; font-size: 1.45rem; }
.product-card__description { margin-top: 7px; min-height: 48px; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }
.product-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 13px; }
.product-card__actions .text-link { font-size: .7rem; }
.product-card__whatsapp { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); transition: background .2s, color .2s, border-color .2s, transform .2s; }
.product-card__whatsapp:hover { background: var(--green); color: white; border-color: var(--green); transform: translateY(-2px); }
.empty-state { padding: 70px 24px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); }
.empty-state h3 { font-size: 2rem; }
.empty-state p { margin: 8px 0 20px; color: var(--ink-soft); }
.collection-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 52px; padding: 24px 0 0; border-top: 1px solid var(--line); }
.collection-footer p { color: var(--ink-soft); font-size: .84rem; }

.story { overflow: hidden; background: var(--cream); }
.story__grid { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(70px, 10vw, 145px); align-items: center; }
.story__visual { position: relative; min-height: 655px; }
.story__monogram { position: absolute; left: -25px; top: -125px; color: rgba(149, 101, 31, .08); font-family: Georgia, "Times New Roman", serif; font-size: 35rem; line-height: 1; }
.story__card { position: absolute; overflow: hidden; border-radius: 160px 160px 18px 18px; box-shadow: var(--shadow-lg); }
.story__card img { width: 100%; height: 100%; object-fit: cover; }
.story__card--one { left: 4%; top: 0; width: 58%; height: 80%; }
.story__card--two { right: 2%; bottom: 0; width: 47%; height: 56%; border: 12px solid var(--cream); border-radius: 120px 120px 14px 14px; }
.story__caption { position: absolute; left: 0; bottom: 15px; color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; font-style: italic; line-height: 1.25; }
.story__content h2 { margin-bottom: 28px; }
.story__content > p { color: var(--ink-soft); margin-top: 18px; }
.story__content .story__lead { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; line-height: 1.45; }
.story blockquote { margin: 34px 0 27px; padding: 21px 0 21px 24px; border-left: 2px solid var(--gold); }
.story blockquote p { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.35; font-style: italic; }
.story blockquote footer { margin-top: 8px; color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.values { background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 54px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card { position: relative; padding: 42px 28px 38px; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card__number { position: absolute; top: 16px; right: 18px; color: rgba(149,101,31,.42); font-size: .67rem; font-weight: 700; letter-spacing: .1em; }
.value-card__icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 30px; border: 1px solid rgba(149,101,31,.3); border-radius: 50%; color: var(--gold); }
.value-card__icon svg { width: 23px; height: 23px; }
.value-card h3 { font-size: 1.55rem; }
.value-card p { margin-top: 13px; color: var(--ink-soft); font-size: .78rem; line-height: 1.65; }

.section--dark { background: var(--green-dark); color: #f7eddb; }
.how { position: relative; overflow: hidden; }
.how::after { content: "G"; position: absolute; right: -35px; bottom: -240px; color: rgba(255,255,255,.025); font-family: Georgia, "Times New Roman", serif; font-size: 42rem; line-height: 1; pointer-events: none; }
.how__heading { display: grid; grid-template-columns: 1.1fr .6fr; align-items: end; gap: 80px; }
.how__heading > p { color: rgba(247,237,219,.68); }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; list-style: none; padding: 0; margin: 70px 0 0; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.step { min-height: 285px; padding: 33px 34px; background: var(--green-dark); }
.step__number { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(217,188,120,.5); border-radius: 50%; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; }
.step div { margin-top: 62px; }
.step h3 { color: #fffaf0; font-size: 1.8rem; }
.step p { margin-top: 13px; color: rgba(247,237,219,.65); font-size: .82rem; }
.how__cta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 42px; padding: 28px 32px; border: 1px solid rgba(217,188,120,.25); border-radius: 18px; background: rgba(255,255,255,.035); }
.how__cta span { color: var(--gold-light); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.how__cta p { margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }

.support { background: var(--cream); }
.support__grid { display: grid; grid-template-columns: .7fr 1fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.support__intro { position: sticky; top: 130px; }
.support__intro h2 { max-width: 570px; }
.support__intro > p { max-width: 500px; margin: 27px 0 30px; color: var(--ink-soft); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { width: 21px; transition: transform .25s var(--ease); }
.accordion details[open] summary svg { transform: rotate(180deg); }
.accordion details p { max-width: 650px; padding: 0 45px 25px 0; color: var(--ink-soft); font-size: .82rem; }

.instagram { background: var(--paper); }
.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.instagram-grid a { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--cream-deep); }
.instagram-grid a::after { content: "View on Instagram"; position: absolute; inset: auto 12px 12px; padding: 10px; background: rgba(31,59,43,.88); color: white; text-align: center; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; }
.instagram-grid a:hover::after, .instagram-grid a:focus-visible::after { opacity: 1; transform: none; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.instagram-grid a:hover img { transform: scale(1.04); }
.instagram__note { margin-top: 20px; color: var(--ink-soft); text-align: center; font-size: .78rem; }

.community { padding: 120px 0; text-align: center; background: var(--cream-deep); }
.community__inner { position: relative; max-width: 850px; }
.community__inner h2 { margin-bottom: 24px; }
.community__inner > p:not(.eyebrow,.share-status) { max-width: 730px; margin-inline: auto; color: var(--ink-soft); font-size: 1.02rem; }
.community__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: 34px; }
.community__actions svg { width: 18px; }
.community__flower { position: absolute; left: 50%; top: -75px; width: 160px; height: 160px; transform: translateX(-50%); opacity: .11; background: repeating-conic-gradient(from 0deg, var(--maroon) 0 10deg, transparent 10deg 30deg); border-radius: 50%; }
.share-status { min-height: 24px; margin-top: 12px; color: var(--green); font-size: .74rem; font-weight: 700; }

.contact { background: var(--paper); }
.contact__grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.contact__content h2 { max-width: 570px; }
.contact__content > p { max-width: 520px; margin-top: 25px; color: var(--ink-soft); }
.contact__methods { display: grid; gap: 12px; margin-top: 35px; }
.contact__methods a { display: flex; align-items: center; gap: 15px; width: max-content; min-width: 260px; padding: 10px 0; }
.contact__icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.contact__icon svg { width: 21px; }
.contact__methods strong, .contact__methods small { display: block; }
.contact__methods strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.28rem; }
.contact__methods small { color: var(--ink-soft); font-size: .7rem; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: var(--ink); font-size: .71rem; font-weight: 700; letter-spacing: .04em; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); outline: 0; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(149,101,31,.12); }
.contact-form textarea::placeholder { color: #98867e; font-weight: 400; }
.form-note { margin-top: 12px; color: var(--ink-soft); font-size: .62rem; line-height: 1.5; }

.site-footer { padding: 72px 0 26px; background: #efe4d3; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 50px; }
.footer__brand img { width: 190px; }
.footer__brand p { max-width: 300px; margin-top: 18px; color: var(--ink-soft); font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }
.site-footer h2 { margin-bottom: 19px; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.site-footer a, .site-footer div > span { display: block; margin-top: 9px; color: var(--ink-soft); font-size: .76rem; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 21px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .65rem; }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 90; min-height: 54px; display: flex; align-items: center; gap: 9px; padding: 12px 17px; border-radius: 999px; background: #1d6c45; color: white; box-shadow: 0 15px 40px rgba(24,79,51,.28); font-size: .72rem; font-weight: 700; transition: transform .25s, box-shadow .25s; }
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(24,79,51,.36); }
.floating-whatsapp svg { width: 23px; height: 23px; }

.product-modal { width: min(930px, calc(100% - 30px)); max-height: calc(100dvh - 30px); padding: 0; border: 0; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(35, 22, 18, .35); overflow: auto; }
.product-modal::backdrop { background: rgba(31, 24, 21, .72); backdrop-filter: blur(6px); }
.modal__grid { display: grid; grid-template-columns: .95fr 1fr; min-height: 600px; }
.modal__image { background: var(--cream-deep); }
.modal__image img { width: 100%; height: 100%; object-fit: cover; }
.modal__content { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.modal__content h2 { font-size: clamp(2.55rem, 5vw, 4rem); }
.modal__category { margin: 9px 0 22px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.modal__content > p:not(.eyebrow,.modal__category,.modal__note) { color: var(--ink-soft); }
.modal__meta { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.modal__meta div { padding: 18px 0; }
.modal__meta div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.modal__meta span, .modal__meta strong { display: block; }
.modal__meta span { color: var(--ink-soft); font-size: .63rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.modal__meta strong { margin-top: 4px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.modal__note { margin-bottom: 24px; color: var(--ink-soft); font-size: .68rem; line-height: 1.55; }
.modal-close { position: fixed; z-index: 2; top: max(26px, calc(50% - min(45vh, 430px) + 14px)); left: calc(50% + min(465px, 50vw - 15px) - 60px); width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,253,248,.9); cursor: pointer; backdrop-filter: blur(10px); }
.modal-close svg { width: 20px; }
.toast { position: fixed; left: 50%; bottom: 26px; z-index: 200; max-width: calc(100% - 32px); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; box-shadow: var(--shadow-lg); font-size: .73rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 12px); transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  :root { --container: 930px; }
  .site-nav { gap: 18px; }
  .site-nav > a:not(.button) { font-size: .69rem; }
  .hero__grid { gap: 50px; }
  .hero__note { left: -20px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .story__grid { gap: 75px; }
  .value-card { padding-inline: 20px; }
}

@media (max-width: 860px) {
  :root { --header-height: 74px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 88px 0; }
  .menu-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: calc(38px + var(--header-height)) 0 auto; max-height: calc(100dvh - 112px); display: grid; gap: 0; padding: 18px 20px 26px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 18px 40px rgba(48,31,25,.1); overflow: auto; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s, transform .25s; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a:not(.button) { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: .8rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { margin-top: 16px; }
  .menu-toggle[aria-expanded="true"] .menu-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .close-icon { display: block; }
  .hero { min-height: auto; padding: 62px 0 95px; }
  .hero__grid { grid-template-columns: 1fr; gap: 65px; }
  .hero__content { max-width: 680px; }
  .hero__frame { margin-inline: auto; width: min(90%, 520px); }
  .hero__note { left: 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .collection-tools { align-items: start; flex-direction: column; }
  .search-field { width: 100%; flex-basis: auto; }
  .filters { justify-content: flex-start; }
  .story__grid { grid-template-columns: 1fr; }
  .story__visual { width: min(100%, 590px); }
  .story__content { max-width: 680px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .how__heading { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 22px; }
  .step div { margin-top: 0; }
  .support__grid, .contact__grid { grid-template-columns: 1fr; }
  .support__intro { position: static; }
  .instagram-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 2 / 4; }
  .modal__content { padding: 40px; }
}

@media (max-width: 620px) {
  body { line-height: 1.65; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 74px 0; }
  .announcement__inner { min-height: 44px; justify-content: center; }
  .announcement__inner p { max-width: 260px; line-height: 1.35; }
  .announcement__link { display: none; }
  .brand img { width: 164px; }
  .hero { padding-top: 48px; }
  .hero__intro { margin-top: 22px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__trust { gap: 10px; }
  .hero__trust span { width: 100%; }
  .hero__frame { width: calc(100% - 22px); margin-left: 0; }
  .hero__frame::before { inset: 12px -12px -12px 12px; }
  .hero__badge { right: -20px; top: 30px; width: 92px; }
  .hero__note { position: relative; left: auto; bottom: auto; width: calc(100% - 16px); margin: -38px 0 0 auto; }
  .marquee__track { font-size: 1.05rem; gap: 22px; }
  .section-heading { margin-bottom: 35px; }
  .collection-tools { margin-bottom: 26px; }
  .filters { flex-wrap: nowrap; width: calc(100vw - 24px); overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { white-space: nowrap; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 28px 10px; }
  .product-card__content { padding-top: 13px; }
  .product-card h3 { font-size: 1.22rem; }
  .product-card__description { display: none; }
  .product-card__meta { display: block; font-size: .57rem; }
  .product-card__meta span:last-child { display: none; }
  .product-card__quick { opacity: 1; transform: none; width: 40px; height: 40px; }
  .product-card__actions .text-link { font-size: .63rem; }
  .product-card__whatsapp { width: 38px; height: 38px; }
  .collection-footer { align-items: flex-start; flex-direction: column; }
  .story__visual { min-height: 510px; }
  .story__card--one { width: 66%; height: 79%; }
  .story__card--two { width: 53%; height: 53%; border-width: 8px; }
  .story__caption { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card:last-child { border-bottom: 0; }
  .how__cta { align-items: stretch; flex-direction: column; }
  .how__cta .button { width: 100%; }
  .step { padding: 28px 22px; }
  .accordion summary { min-height: 72px; font-size: 1.3rem; }
  .instagram-grid { gap: 7px; }
  .community__actions { flex-direction: column; }
  .community__actions .button { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer__brand { grid-column: 1 / 3; }
  .footer__grid > div:last-child { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 0; justify-content: center; border-radius: 50%; }
  .floating-whatsapp span { display: none; }
  .product-modal { width: calc(100% - 18px); max-height: calc(100dvh - 18px); border-radius: 18px; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__image { max-height: 360px; }
  .modal__content { padding: 30px 22px 32px; }
  .modal-close { position: fixed; top: 18px; right: 18px; left: auto; }
}

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

/* Real catalogue enhancements */
.product-card__price {
  margin-top: 7px;
  color: var(--maroon);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
}
.product-card__meta .is-unavailable { color: #a43c35; }
.product-card:has(.is-unavailable) .product-card__badge {
  background: rgba(122, 35, 35, .9);
  color: #fff;
}
.hero__frame img { aspect-ratio: 900 / 920; object-fit: cover; }
.instagram-grid img { object-fit: cover; }
@media (max-width: 620px) {
  .product-card__price { font-size: 1.08rem; }
}
