:root {
  --pink: #d70a71;
  --pink-deep: #a90057;
  --pink-soft: #fff1f7;
  --blue: #0796cf;
  --ink: #18131a;
  --muted: #6c626b;
  --line: #eadfe5;
  --paper: #fffdfd;
  --cream: #fff8f4;
  --shadow: 0 24px 70px rgba(70, 15, 45, .1);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.site-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.visually-hidden { 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: 999; left: 18px; top: 12px; padding: 10px 14px; background: #fff; color: var(--pink-deep); transform: translateY(-150%); border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

.topbar { color: #fff; background: var(--ink); font-size: .76rem; letter-spacing: .02em; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: #ffd1e6; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,253,253,.91); border-bottom: 1px solid rgba(234,223,229,.72); backdrop-filter: blur(14px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 12px 40px rgba(51,12,32,.07); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 156px; height: 62px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 34px; font-size: .92rem; font-weight: 650; }
.site-nav > a { position: relative; padding: 28px 0; }
.site-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--pink); transition: right .22s ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 12px; border: 0; background: var(--pink-soft); border-radius: 50%; }
.nav-toggle span:not(.visually-hidden) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--pink-deep); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 84% 20%, rgba(7,150,207,.12), transparent 27%), linear-gradient(115deg, #fff 0%, #fff6fa 52%, #fff 100%); }
.hero::before { content: ""; position: absolute; width: 500px; height: 500px; left: -330px; bottom: -370px; border: 1px solid rgba(215,10,113,.13); border-radius: 50%; box-shadow: 80px -80px 0 rgba(215,10,113,.025), 160px -160px 0 rgba(215,10,113,.018); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 50px; padding-block: 72px 82px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--pink-deep); font-size: .77rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--pink); }
.hero h1, .page-hero h1, .success-card h1 { margin: 22px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 5.8vw, 5.7rem); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: var(--pink); font-style: italic; font-weight: 400; }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.12rem; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--pink), var(--pink-deep)); box-shadow: 0 15px 30px rgba(215,10,113,.2); }
.button-primary:hover { box-shadow: 0 19px 36px rgba(215,10,113,.28); }
.button-secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.button-secondary:hover { border-color: var(--pink); color: var(--pink-deep); }
.button-dark { color: #fff; background: var(--ink); }
.button-white { color: var(--pink-deep); background: #fff; box-shadow: 0 12px 34px rgba(90,0,44,.16); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-proof div { display: flex; flex-direction: column; gap: 6px; }
.hero-proof strong { color: var(--ink); font-size: .86rem; }
.hero-proof span { color: var(--muted); font-size: .73rem; line-height: 1.4; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-product-halo { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: linear-gradient(145deg, rgba(215,10,113,.13), rgba(7,150,207,.07)); filter: blur(1px); }
.hero-product { position: relative; z-index: 2; width: min(100%, 555px); filter: drop-shadow(0 42px 36px rgba(66,15,43,.18)); transform: rotate(1deg); }
.hero-orbit { position: absolute; border: 1px solid rgba(215,10,113,.15); border-radius: 50%; }
.hero-orbit-one { width: 92%; aspect-ratio: 1; }
.hero-orbit-two { width: 67%; aspect-ratio: 1; border-style: dashed; }
.floating-note { position: absolute; z-index: 3; min-width: 175px; padding: 15px 17px; display: grid; grid-template-columns: 32px 1fr; column-gap: 9px; color: var(--ink); background: rgba(255,255,255,.92); border: 1px solid rgba(234,223,229,.8); border-radius: 17px; box-shadow: 0 18px 38px rgba(58,13,37,.1); backdrop-filter: blur(10px); }
.floating-note > span { grid-row: 1 / 3; align-self: center; width: 30px; height: 30px; display: grid; place-items: center; color: var(--pink); background: var(--pink-soft); border-radius: 50%; }
.floating-note strong { font-size: .76rem; }
.floating-note small { color: var(--muted); font-size: .67rem; }
.note-soft { left: 0; top: 20%; }
.note-local { right: -3%; bottom: 16%; }

.promise-strip { border-block: 1px solid var(--line); background: #fff; }
.promise-grid { min-height: 120px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.promise-grid > div { min-height: 64px; display: flex; align-items: center; gap: 14px; padding: 0 24px; border-right: 1px solid var(--line); }
.promise-grid > div:first-child { padding-left: 0; }
.promise-grid > div:last-child { padding-right: 0; border-right: 0; }
.promise-icon { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; color: var(--pink); background: var(--pink-soft); border-radius: 50%; font-size: 1.25rem; }
.promise-grid p { display: flex; flex-direction: column; gap: 5px; margin: 0; }
.promise-grid strong { font-size: .78rem; }
.promise-grid small { color: var(--muted); font-size: .68rem; line-height: 1.4; }

.section { padding: 110px 0; }
.products-section { background: linear-gradient(180deg, #fff, #fffafc); }
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.section-heading h2, .story-copy h2, .narrative-grid h2, .contact-details h2 { margin: 15px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 4.2vw, 4.3rem); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.centered-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(215,10,113,.23); box-shadow: var(--shadow); }
.product-image-wrap { position: relative; min-height: 330px; display: grid; place-items: center; padding: 28px; overflow: hidden; background: linear-gradient(145deg, #fff, #fff6fa); }
.product-image-wrap::after { content: ""; position: absolute; width: 230px; height: 230px; right: -100px; top: -100px; border-radius: 50%; background: rgba(215,10,113,.06); }
.product-image-wrap img { width: 100%; height: 275px; position: relative; z-index: 1; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-category { position: absolute; z-index: 2; left: 18px; top: 18px; padding: 8px 11px; color: var(--pink-deep); background: rgba(255,255,255,.9); border: 1px solid rgba(215,10,113,.12); border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-body { min-height: 275px; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 27px; }
.product-body h3 { margin: 0 0 9px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; line-height: 1.15; }
.product-body p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.65; }
.product-body .pack-details { margin-bottom: 11px; color: var(--pink-deep); font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--pink-deep); font-size: .8rem; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-large { margin-top: 14px; font-size: .92rem; }
.product-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.whatsapp-product-link { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; color: #fff; background: #168a43; border-radius: 999px; font-size: .72rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.whatsapp-product-link:hover { background: #0f7436; transform: translateY(-1px); }
.section-action { display: flex; justify-content: center; margin-top: 44px; }

.whatsapp-float { position: fixed; z-index: 50; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px 12px 13px; color: #fff; background: #168a43; border: 3px solid #fff; border-radius: 999px; box-shadow: 0 14px 34px rgba(12,91,43,.28); font-size: .78rem; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { color: #fff; background: #0f7436; transform: translateY(-2px); }
.whatsapp-float svg { width: 24px; height: 24px; fill: currentColor; }

.story-section { overflow: hidden; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 100px; }
.story-visual { position: relative; min-height: 580px; }
.story-image-card { position: absolute; overflow: hidden; display: grid; place-items: center; padding: 25px; background: #fff; border: 1px solid rgba(234,223,229,.8); border-radius: 30px; box-shadow: var(--shadow); }
.story-image-card img { width: 100%; height: 100%; object-fit: contain; }
.story-main { width: 78%; height: 440px; left: 0; top: 0; }
.story-small { width: 55%; height: 285px; right: 0; bottom: 0; }
.made-badge { position: absolute; z-index: 2; left: 63%; top: 37%; width: 120px; height: 120px; display: grid; place-content: center; color: #fff; background: var(--pink); border: 8px solid var(--cream); border-radius: 50%; text-align: center; transform: rotate(-8deg); }
.made-badge strong { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.made-badge span { font-family: Georgia, serif; font-size: 1.15rem; }
.story-copy > p { color: var(--muted); font-size: 1rem; line-height: 1.8; }

.values-section { background: var(--ink); color: #fff; }
.values-section .kicker { color: #ff93c7; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; overflow: hidden; }
.values-grid article { min-height: 285px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.values-grid article:last-child { border-right: 0; }
.values-grid article > span { color: #ff93c7; font-size: .7rem; letter-spacing: .12em; }
.values-grid h3 { margin: 50px 0 14px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.values-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.7; }

.cta-section { padding: 0 0 110px; background: #fff; }
.cta-card { min-height: 310px; display: flex; align-items: center; justify-content: space-between; gap: 45px; padding: 58px 64px; color: #fff; background: linear-gradient(120deg, var(--pink-deep), var(--pink) 62%, #ed3a96); border-radius: 32px; box-shadow: 0 28px 70px rgba(167,0,87,.2); }
.cta-card > div { max-width: 750px; }
.cta-card h2 { margin: 13px 0 12px; font-family: Georgia, serif; font-size: clamp(2.2rem, 3.6vw, 3.6rem); font-weight: 400; line-height: 1.05; letter-spacing: -.04em; }
.cta-card p { margin: 0; color: rgba(255,255,255,.8); line-height: 1.7; }
.kicker-light { color: #ffd0e7; }
.compact-cta { padding-top: 30px; }

.page-hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff5f9, #fff 55%, #f4fbff); border-bottom: 1px solid var(--line); }
.page-hero-grid { min-height: 440px; display: grid; grid-template-columns: 1fr 260px; align-items: center; gap: 50px; }
.page-hero h1 { max-width: 860px; margin-bottom: 18px; font-size: clamp(3.3rem, 6vw, 5.8rem); }
.page-hero p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.page-hero-mark { justify-self: end; color: rgba(215,10,113,.08); font-family: Georgia, serif; font-size: 17rem; line-height: .8; transform: rotate(-7deg); }
.catalogue-section { padding-top: 68px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px; }
.filter-chip { padding: 11px 16px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: .76rem; font-weight: 750; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-chip:hover, .filter-chip.active { color: #fff; background: var(--pink); border-color: var(--pink); }
.product-grid-catalogue { grid-template-columns: repeat(3, 1fr); }
.empty-state { grid-column: 1 / -1; padding: 80px 30px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }

.about-hero-grid { min-height: 560px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 80px; }
.about-hero-image { height: 430px; display: grid; place-items: center; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); transform: rotate(2deg); }
.about-hero-image img { width: 100%; height: 100%; object-fit: contain; }
.narrative-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.narrative-copy p { color: var(--muted); font-size: 1rem; line-height: 1.9; }
.narrative-copy .lead { margin-top: 0; color: var(--ink); font-family: Georgia, serif; font-size: 1.45rem; line-height: 1.55; }
.mission-section { padding-block: 40px 110px; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-grid article { padding: 48px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); }
.mission-grid article:nth-child(2) { background: var(--pink-soft); }
.mission-label { color: var(--pink-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mission-grid h2 { margin: 35px 0 0; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; line-height: 1.25; }
.about-values { background: #fffafc; }
.about-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-values-grid article { padding: 34px 27px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.about-values-grid strong { width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--pink); border-radius: 50%; font-family: Georgia, serif; }
.about-values-grid h3 { margin: 35px 0 10px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.about-values-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }

.contact-section { background: #fffafc; }
.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 80px; align-items: start; }
.contact-details > p { color: var(--muted); line-height: 1.75; }
.contact-list { margin-top: 38px; border-top: 1px solid var(--line); }
.contact-list > * { display: grid; gap: 5px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--pink-deep); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-list strong { font-size: .9rem; line-height: 1.6; }
.contact-list a:hover strong { color: var(--pink-deep); }
.form-card { padding: 44px; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); }
.form-card > h2 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 2.1rem; font-weight: 400; }
.form-card > p { margin: 0 0 30px; color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; font-size: .72rem; font-weight: 800; }
.form-control { width: 100%; padding: 14px 15px; color: var(--ink); background: #fff; border: 1px solid #ded3d9; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-control:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(215,10,113,.09); }
textarea.form-control { resize: vertical; }
.errorlist { margin: 7px 0 0; padding: 0; color: #a31b40; font-size: .72rem; list-style: none; }
.form-errors { margin-bottom: 20px; padding: 13px 15px; color: #8b1235; background: #fff0f4; border-radius: 10px; }
.form-submit { width: 100%; border: 0; }
.message-stack { padding-top: 18px; }
.site-message { padding: 14px 18px; color: #185d36; background: #ecfff4; border: 1px solid #c6efd7; border-radius: 12px; }
.success-section { min-height: 680px; display: grid; place-items: center; padding: 90px 0; background: linear-gradient(145deg, #fff, #fff5fa); }
.success-card { max-width: 820px; margin: auto; padding: 70px; background: #fff; border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); text-align: center; }
.success-card h1 { margin-block: 18px; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.success-card p { max-width: 600px; margin: auto; color: var(--muted); font-size: 1.03rem; line-height: 1.7; }
.success-card .hero-actions { justify-content: center; }
.success-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 20px; color: #fff; background: var(--pink); border-radius: 50%; font-size: 1.45rem; }

.site-footer { padding-top: 74px; color: rgba(255,255,255,.72); background: #171116; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1fr; gap: 55px; padding-bottom: 60px; }
.footer-brand img { width: 150px; height: 65px; object-fit: contain; object-position: left; padding: 4px; background: #fff; border-radius: 10px; }
.footer-brand p { max-width: 330px; margin: 22px 0 0; font-size: .82rem; line-height: 1.75; }
.site-footer h2 { margin: 0 0 19px; color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a, .site-footer p { display: block; margin: 0 0 11px; font-size: .79rem; line-height: 1.6; }
.site-footer a:hover { color: #ff90c5; }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }
.developer-credit { display: inline-flex; align-items: center; gap: 5px; }
.site-footer .developer-credit a { display: inline; margin: 0; color: #fff; font-size: inherit; font-weight: 700; }
.site-footer .developer-credit a:hover { color: #ff90c5; }

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

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 540px; }
  .hero-product { width: min(80%, 550px); }
  .note-soft { left: 10%; }
  .note-local { right: 8%; }
  .promise-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid > div { padding: 24px; border-bottom: 1px solid var(--line); }
  .promise-grid > div:nth-child(2) { border-right: 0; }
  .promise-grid > div:nth-child(3), .promise-grid > div:nth-child(4) { border-bottom: 0; }
  .product-grid, .product-grid-catalogue { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 70px; }
  .story-visual { width: min(100%, 700px); margin: auto; }
  .values-grid, .about-values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid article:nth-child(2) { border-right: 0; }
  .values-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  .site-container { width: min(100% - 28px, 1180px); }
  .topbar-inner { min-height: 38px; justify-content: center; }
  .topbar-inner > span { display: none; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 10px; font-size: .65rem; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 132px; height: 52px; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; left: 14px; right: 14px; display: none; align-items: stretch; gap: 0; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .site-nav > a { padding: 14px 12px; border-bottom: 1px solid #f1e8ed; }
  .site-nav > a::after { display: none; }
  .hero-grid { min-height: auto; gap: 30px; padding-block: 65px 50px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .hero-copy > p { font-size: .98rem; line-height: 1.7; }
  .hero-proof { grid-template-columns: 1fr; text-align: left; }
  .hero-proof div { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .hero-visual { min-height: 400px; }
  .hero-product { width: min(95%, 440px); }
  .floating-note { min-width: 150px; padding: 11px; }
  .note-soft { left: 0; top: 10%; }
  .note-local { right: 0; bottom: 7%; }
  .promise-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .promise-grid > div, .promise-grid > div:first-child, .promise-grid > div:last-child { min-height: 76px; padding: 15px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-grid > div:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2, .story-copy h2, .narrative-grid h2, .contact-details h2 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .product-grid, .product-grid-catalogue { grid-template-columns: 1fr; }
  .product-image-wrap { min-height: 305px; }
  .story-visual { min-height: 430px; }
  .story-main { height: 330px; }
  .story-small { height: 210px; }
  .made-badge { width: 95px; height: 95px; left: 58%; top: 37%; }
  .values-grid, .about-values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .values-grid article:last-child { border-bottom: 0; }
  .values-grid h3 { margin-top: 30px; }
  .cta-card { min-height: 360px; flex-direction: column; align-items: flex-start; padding: 42px 30px; border-radius: 24px; }
  .cta-card .button { width: 100%; }
  .page-hero-grid { min-height: 410px; grid-template-columns: 1fr; padding-block: 70px; }
  .page-hero-mark { display: none; }
  .page-hero h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .about-hero-grid { grid-template-columns: 1fr; gap: 20px; padding-block: 60px; }
  .about-hero-image { height: 330px; }
  .narrative-grid { grid-template-columns: 1fr; gap: 35px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-grid article { padding: 35px 28px; }
  .contact-grid { gap: 55px; }
  .form-card { padding: 30px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .success-card { padding: 50px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 460px) {
  .whatsapp-float { right: 14px; bottom: 14px; padding: 13px; }
  .whatsapp-float span { display: none; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 350px; }
  .floating-note { display: none; }
  .story-visual { min-height: 360px; }
  .story-main { width: 88%; height: 280px; }
  .story-small { width: 52%; height: 175px; }
  .made-badge { left: 55%; top: 34%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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