:root {
  --milk: #faf8f3;
  --paper: #f2eee7;
  --text: #2c2a28;
  --muted: #66615b;
  --accent: #8a6845;
  --accent-hover: #705235;
  --ink: #2f3a2d;
  --ink-deep: #2f3a2d;
  --leaf: #6b7e58;
  --sage: #a6b39b;
  --linen: #e8dfc9;
  --honey: #c8b28a;
  --cherry: #8a6845;
  --white: #ffffff;
  --line: #ece7de;
  --footer-text: #f6f3ed;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; background: var(--milk); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.035em; }
h1 em, h2 em { color: var(--cherry); font-weight: 400; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 128px 0; }
.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: 999; background: var(--white); padding: 8px 16px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--honey); outline-offset: 4px; }

.announcement { background: var(--ink-deep); color: #e8eee8; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.announcement__inner { height: 34px; display: flex; align-items: center; justify-content: space-between; }
.announcement__dot { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: #9eb08e; box-shadow: 0 0 0 4px rgba(158,176,142,.14); }
.announcement__aside { opacity: .7; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,248,243,.94); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(13,44,37,.05); }
.nav-wrap { height: 86px; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; color: var(--ink); flex-shrink: 0; }
.brand__logo { width: 116px; height: 72px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 34px; margin-left: auto; }
.site-nav a { position: relative; color: #334b44; font-size: 13px; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--cherry); transition: right .25s; }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid var(--accent); border-radius: var(--radius); background: var(--accent); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .035em; cursor: pointer; transition: transform .2s, background-color .2s, color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 10px 24px rgba(112,82,53,.18); }
.button--small { min-height: 43px; padding-inline: 22px; }
.button--outline { color: var(--accent); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--accent-hover); }
.button--cream { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--cream:hover { color: var(--white); background: var(--accent-hover); border-color: var(--accent-hover); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.65); background: transparent; }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.eyebrow { margin-bottom: 18px; color: var(--cherry); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #dbbd84; }
.text-link { display: inline-flex; gap: 12px; align-items: center; color: var(--ink); font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.text-link span { font-size: 17px; transition: transform .2s; }
.text-link:hover span { transform: translate(3px,3px); }

.hero { position: relative; min-height: calc(100vh - 120px); padding: 64px 0 0; background: var(--milk); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(217,164,65,.08); filter: blur(2px); left: -280px; top: 120px; }
.hero__stitch { position: absolute; left: 26px; top: 0; bottom: 0; width: 8px; opacity: .52; background: repeating-linear-gradient(to bottom, var(--cherry) 0 6px, transparent 6px 14px); }
.hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(60px,8vw,116px); }
.hero__copy { position: relative; z-index: 5; padding-bottom: 44px; }
.hero h1 { max-width: 690px; margin-bottom: 26px; color: var(--ink); font-size: clamp(54px,5.25vw,82px); }
.hero h1 em { display: inline-block; }
.hero__lead { max-width: 590px; margin-bottom: 34px; color: #52645e; font-size: 17px; line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 30px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 36px 0 0; list-style: none; color: #50655e; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.hero__proof li { display: flex; align-items: center; gap: 6px; }
.hero__proof svg { width: 17px; height: 17px; fill: none; stroke: var(--cherry); stroke-width: 2; }
.hero__visual { position: relative; min-height: 650px; }
.hero__image-wrap { position: absolute; inset: 0 32px 0 0; overflow: hidden; background: var(--linen); clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 72px, 100% 100%, 0 100%); }
.hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,44,37,.16)); pointer-events: none; }
.hero__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero__stamp { position: absolute; right: -4px; top: 105px; z-index: 4; width: 126px; height: 126px; padding: 20px 10px; display: flex; flex-direction: column; justify-content: center; border-radius: 50%; background: var(--cherry); color: var(--white); text-align: center; transform: rotate(7deg); box-shadow: 0 8px 24px rgba(13,44,37,.18); }
.hero__stamp::before, .hero__stamp::after { content: "✦"; font-size: 8px; }
.hero__stamp span { font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.hero__stamp strong { margin: 2px 0; font-family: var(--display); font-size: 16px; font-weight: 400; }
.hero__note { position: absolute; left: -44px; bottom: 45px; z-index: 3; display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: rgba(255,254,248,.94); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 12px 40px rgba(13,44,37,.18); font-size: 12px; line-height: 1.4; }
.hero__note svg { width: 32px; fill: none; stroke: var(--cherry); stroke-width: 1.5; }
.hero__note strong { color: var(--ink); font-family: var(--display); font-size: 17px; }
.hero__footer { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 92px; color: var(--ink); font-family: var(--display); font-size: 14px; font-style: italic; }
.hero__footer i { width: 4px; height: 4px; background: var(--honey); transform: rotate(45deg); }

.promise { padding: 92px 0; background: var(--ink); color: var(--white); }
.promise__grid { display: grid; grid-template-columns: .85fr 1.5fr; gap: 90px; align-items: center; }
.promise h2 { max-width: 420px; margin: 0; font-size: clamp(38px,4vw,56px); }
.promise h2 em { color: #dbbd84; }
.promise__items { display: grid; grid-template-columns: repeat(3,1fr); }
.promise__item { min-height: 230px; padding: 10px 28px 0; border-left: 1px solid rgba(255,255,255,.18); }
.promise__symbol { display: block; margin-bottom: 48px; color: #dbbd84; font-family: var(--display); font-size: 24px; }
.promise__item h3 { margin-bottom: 12px; font-family: var(--display); font-size: 21px; font-weight: 400; }
.promise__item p { margin: 0; color: #b9c7bf; font-size: 13px; line-height: 1.7; }

.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading h2, .club__heading h2, .story h2, .testimonials h2, .faq h2 { margin-bottom: 0; color: var(--ink); font-size: clamp(45px,5vw,68px); }
.section-heading > p { max-width: 470px; margin: 0 0 8px; color: var(--muted); }
.products__layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.products__photo { position: sticky; top: 120px; margin: 0; }
.products__photo img { width: 100%; height: 670px; object-fit: cover; object-position: 50% 68%; clip-path: polygon(0 0, 88% 0, 100% 9%, 100% 100%, 0 100%); }
.products__photo figcaption { margin-top: 12px; color: var(--muted); font-family: var(--display); font-size: 13px; font-style: italic; }
.product-list { border-top: 1px solid var(--line); }
.product-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 24px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line); transition: padding .25s, background-color .25s; }
.product-row:hover { padding-inline: 16px; background: rgba(255,255,255,.48); }
.product-row__number { padding-top: 4px; color: var(--cherry); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.product-row h3 { margin: 0 0 9px; color: var(--ink); font-family: var(--display); font-size: 28px; font-weight: 400; }
.product-row p { max-width: 480px; margin: 0; color: var(--muted); font-size: 13px; }
.product-row__size { padding: 6px 10px; border: 1px solid var(--line); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }

.route { padding: 72px 0 86px; background: var(--paper); border-block: 1px solid var(--line); }
.route .eyebrow { text-align: center; }
.route__line { position: relative; height: 24px; margin: 10px 12.5% -14px; border-top: 2px dashed rgba(164,63,53,.45); }
.route__line::before, .route__line::after, .route__line span { content: ""; position: absolute; top: -7px; width: 12px; height: 12px; border: 3px solid var(--paper); border-radius: 50%; background: var(--cherry); }
.route__line::before { left: 0; }.route__line::after { right: 0; }.route__line span { left: calc(50% - 6px); }
.route__steps { display: grid; grid-template-columns: repeat(3,1fr); padding: 0; margin: 0; list-style: none; text-align: center; }
.route__steps li { display: flex; flex-direction: column; align-items: center; }
.route__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 50%; background: var(--milk); color: var(--cherry); font-size: 18px; }
.route__steps strong { color: var(--ink); font-family: var(--display); font-size: 20px; font-weight: 400; }
.route__steps small { margin-top: 4px; color: var(--muted); }

.club { position: relative; background: var(--ink-deep); color: var(--white); overflow: hidden; }
.club::before { content: ""; position: absolute; width: 620px; height: 620px; right: -300px; top: -290px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 72px rgba(255,255,255,.016), 0 0 0 144px rgba(255,255,255,.012); }
.club__heading { position: relative; display: grid; grid-template-columns: 1fr .62fr; gap: 100px; align-items: end; margin-bottom: 42px; }
.club__heading h2 { color: var(--white); }
.club__heading h2 em { color: var(--honey); }
.club__heading > p { max-width: 460px; margin: 0 0 8px; color: var(--sage); }
.club__benefits { position: relative; display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 18px; padding: 17px 0; border-block: 1px solid rgba(255,255,255,.14); color: #dce2d9; font-size: 11px; letter-spacing: .04em; }
.club__benefits span { display: flex; align-items: center; gap: 12px; }
.club__benefits b { color: var(--honey); font-size: 9px; letter-spacing: .12em; }
.plans { position: relative; border: 1px solid rgba(255,255,255,.14); background: var(--milk); }
.plan { position: relative; display: grid; grid-template-columns: 34px 155px minmax(370px,1fr) 96px 144px; gap: 24px; align-items: center; min-height: 150px; padding: 24px 28px; color: var(--text); border-bottom: 1px solid var(--line); }
.plan:last-child { border-bottom: 0; }
.plan--recommended { background: var(--linen); }
.plan--recommended::before { content: "Най-предпочитан"; position: absolute; left: -1px; top: -10px; padding: 5px 10px; background: var(--accent); color: var(--white); font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan__index { color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.plan__identity p { margin-bottom: 2px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.plan__identity h3 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 39px; font-weight: 500; line-height: .9; }
.plan__identity small { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; }
.plan__contents { display: grid; grid-template-columns: repeat(5,1fr); padding: 0; margin: 0; list-style: none; }
.plan__contents li { padding: 0 10px; border-left: 1px solid var(--line); }
.plan__contents strong { display: block; color: var(--ink); font-family: var(--display); font-size: 18px; font-weight: 600; line-height: 1; }
.plan__contents span { display: block; margin-top: 5px; color: var(--muted); font-size: 8px; line-height: 1.25; }
.plan__price { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.plan__price strong { color: var(--accent); font-family: var(--display); font-size: 31px; font-weight: 600; line-height: .9; white-space: nowrap; }
.plan__price span { color: var(--muted); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.plan__cta { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 16px; border: 1px solid var(--accent); color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .03em; transition: background .2s,color .2s; }
.plan__cta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; }
.plan__cta:hover, .plan--recommended .plan__cta { background: var(--accent); color: var(--white); }
.plan__cta:hover svg { transform: translate(2px,-2px); }
.club__terms { position: relative; max-width: 800px; margin: 22px auto 0; color: var(--sage); font-size: 10px; text-align: center; }

.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 1fr .88fr; gap: 110px; align-items: center; }
.story__pictures { position: relative; min-height: 740px; }
.story__image-main { position: absolute; left: 0; top: 0; width: 75%; height: 640px; object-fit: cover; object-position: 50% 68%; clip-path: polygon(0 0, 100% 0, 100% 92%, 90% 100%, 0 100%); filter: saturate(.82); }
.story__image-small { position: absolute; right: 0; bottom: 0; z-index: 2; width: 45%; height: 330px; object-fit: cover; object-position: center 52%; border: 10px solid var(--paper); }
.story__copy > p:not(.eyebrow) { color: var(--muted); }
.story__copy .story__lead { margin-top: 30px; color: var(--text); font-family: var(--display); font-size: 21px; line-height: 1.55; }
.story blockquote { margin: 34px 0; padding: 2px 0 2px 24px; border-left: 2px solid var(--cherry); color: var(--ink); font-family: var(--display); font-size: 19px; font-style: italic; line-height: 1.5; }

.testimonials { background: var(--milk); }
.testimonials__top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 58px; }
.quote-mark { height: 100px; color: var(--honey); font-family: var(--display); font-size: 140px; line-height: 1; opacity: .75; }
.reviews { display: grid; grid-template-columns: 1.35fr .825fr .825fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review { min-height: 290px; display: flex; flex-direction: column; justify-content: space-between; margin: 0; padding: 44px 38px; border-right: 1px solid var(--line); }
.review:last-child { border-right: 0; }
.review blockquote { margin: 0; color: var(--ink); font-family: var(--display); font-size: 25px; line-height: 1.45; }
.review--featured { background: var(--paper); }
.review--featured blockquote { font-size: 20px; line-height: 1.48; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.review figcaption > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-family: var(--display); }
.review figcaption div { display: flex; flex-direction: column; }
.review figcaption strong { color: var(--ink); font-size: 11px; }
.review figcaption small { color: var(--muted); font-size: 9px; }

.faq { padding-top: 30px; }
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.faq__intro { position: sticky; top: 130px; align-self: start; }
.faq__intro > p:last-child { max-width: 390px; margin-top: 28px; color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 27px 0; color: var(--ink); font-family: var(--display); font-size: 21px; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 1px; background: var(--cherry); transition: transform .2s; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 720px; padding: 0 44px 26px 0; margin: 0; color: var(--muted); font-size: 14px; }

.contact { padding: 0 0 90px; }
.contact__card { position: relative; min-height: 610px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.contact__card > img, .contact__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact__card > img { object-fit: cover; object-position: 50% 43%; }
.contact__overlay { background: linear-gradient(90deg, rgba(13,44,37,.83), rgba(13,44,37,.57)); }
.contact__content { position: relative; z-index: 2; max-width: 780px; padding: 70px 30px; }
.contact h2 { margin-bottom: 22px; color: var(--white); font-size: clamp(48px,6vw,76px); }
.contact h2 em { color: #e2c88f; }
.contact__content > p:not(.eyebrow) { max-width: 590px; margin: 0 auto 34px; color: #d6e0da; }
.contact__content > div { display: flex; justify-content: center; gap: 12px; }

.footer { padding: 82px 0 20px; background: #2f3a2d; color: var(--footer-text); }
.footer__grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 60px; padding-bottom: 68px; }
.brand--footer { color: var(--white); margin-bottom: 24px; }
.brand--footer .brand__logo { width: 164px; height: 106px; filter: brightness(0) invert(1); opacity: .94; }
.footer__brand > p { max-width: 310px; color: #8fa49a; font-family: var(--display); font-size: 17px; font-style: italic; }
.footer h3 { margin-bottom: 22px; color: var(--white); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer a:not(.brand) { margin-bottom: 9px; font-size: 12px; }
.footer a:not(.brand):hover { color: #e2c88f; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #71897e; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.social-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: white; box-shadow: 0 9px 25px rgba(112,82,53,.26); transition: transform .2s; }
.social-float:hover { transform: translateY(-3px) scale(1.03); }
.social-float svg { width: 25px; fill: currentColor; }
.mobile-order { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal--delay { transition-delay: .16s; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 36px, 900px); }
  .site-nav { gap: 20px; }
  .hero { min-height: auto; }
  .hero__grid { gap: 48px; }
  .hero__visual { min-height: 560px; }
  .promise__grid { grid-template-columns: 1fr; gap: 50px; }
  .promise__intro h2 { max-width: 640px; }
  .products__layout { gap: 50px; }
  .plan { grid-template-columns: 26px 120px minmax(240px,1fr) 80px 118px; gap: 14px; padding-inline: 20px; }
  .story__grid { gap: 60px; }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 15px; padding-bottom: 67px; }
  .section { padding: 84px 0; }
  .announcement__aside, .nav-cta { display: none; }
  .announcement__inner { justify-content: center; }
  .nav-wrap { height: 72px; }
  .brand__logo { width: 100px; height: 62px; }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; margin-left: auto; cursor: pointer; }
  .menu-toggle span { width: 25px; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 72px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 24px 22px; background: var(--milk); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { width: 100%; padding: 12px 0; font-family: var(--display); font-size: 18px; }
  .hero { padding-top: 46px; }
  .hero__stitch { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .hero__copy { padding-bottom: 0; }
  .hero h1 { font-size: clamp(46px,13.2vw,64px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__proof { gap: 10px 15px; margin-top: 28px; }
  .hero__visual { min-height: 490px; margin-top: 18px; }
  .hero__image-wrap { inset: 0; clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%); }
  .hero__stamp { right: 10px; top: 34px; width: 98px; height: 98px; padding: 15px 8px; }
  .hero__note { left: 12px; bottom: 16px; }
  .hero__footer { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; padding: 20px 0 22px; overflow: visible; white-space: normal; font-size: 11px; }
  .hero__footer i { display: none; }
  .hero__footer span { position: relative; padding-left: 12px; }
  .hero__footer span::before { content: ""; position: absolute; left: 0; top: .75em; width: 4px; height: 4px; background: var(--honey); transform: rotate(45deg); }
  .promise { padding: 76px 0; }
  .promise__items { grid-template-columns: 1fr; }
  .promise__item { min-height: 0; padding: 24px 0; display: grid; grid-template-columns: 70px 1fr; column-gap: 12px; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .promise__symbol { grid-row: 1/3; margin: 2px 0 0; }
  .promise__item p { grid-column: 2; }
  .section-heading, .club__heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .club__heading h2, .story h2, .testimonials h2, .faq h2 { font-size: 46px; }
  .products__layout { grid-template-columns: 1fr; gap: 44px; }
  .products__photo { position: relative; top: 0; }
  .products__photo img { height: 500px; }
  .product-row { grid-template-columns: 30px 1fr; gap: 12px; }
  .product-row__size { grid-column: 2; justify-self: start; }
  .route__line { margin-inline: 16.5%; }
  .route__steps small { max-width: 90px; line-height: 1.3; }
  .club__heading { margin-bottom: 34px; }
  .club__benefits { grid-template-columns: 1fr; gap: 9px; padding: 14px 0; }
  .plan { grid-template-columns: 24px 1fr auto; gap: 14px 10px; min-height: 0; padding: 28px 18px 20px; }
  .plan__index { align-self: start; padding-top: 6px; }
  .plan__identity h3 { font-size: 39px; }
  .plan__contents { grid-column: 1/-1; padding: 14px 0 4px; border-top: 1px solid var(--line); }
  .plan__contents li { padding: 0 6px; }
  .plan__contents li:first-child { border-left: 0; }
  .plan__contents strong { font-size: 16px; }
  .plan__contents span { font-size: 7px; }
  .plan__price { grid-column: 3; grid-row: 1; align-self: center; }
  .plan__price strong { font-size: 28px; }
  .plan__cta { grid-column: 1/-1; min-height: 46px; margin-top: 4px; }
  .story__grid { grid-template-columns: 1fr; gap: 54px; }
  .story__pictures { min-height: 600px; }
  .story__image-main { width: 83%; height: 520px; }
  .story__image-small { height: 260px; }
  .testimonials__top { align-items: start; }
  .quote-mark { font-size: 80px; }
  .reviews { grid-template-columns: 1fr; }
  .review { min-height: 230px; padding: 34px 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review:last-child { border-bottom: 0; }
  .faq { padding-top: 0; }
  .faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .faq__intro { position: static; }
  .accordion summary { font-size: 19px; }
  .contact { padding-bottom: 0; }
  .contact__card { width: 100%; min-height: 650px; }
  .contact__content > div { flex-direction: column; }
  .footer { padding-top: 70px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer__brand { grid-column: 1/-1; }
  .footer__bottom { gap: 20px; }
  .social-float { right: 16px; bottom: 82px; width: 48px; height: 48px; }
  .mobile-order { position: fixed; z-index: 90; bottom: 0; left: 0; right: 0; width: 100%; height: 67px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border: 0; background: var(--accent); color: white; font-size: 13px; font-weight: 700; cursor: pointer; }
  .mobile-order strong { font-family: var(--display); font-size: 19px; font-weight: 400; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 44px; }
  .hero__visual { min-height: 450px; }
  .hero__proof { font-size: 9px; }
  .section-heading h2, .club__heading h2, .story h2, .testimonials h2, .faq h2 { font-size: 40px; }
  .route__steps strong { font-size: 17px; }
  .route__steps small { font-size: 10px; }
  .story__pictures { min-height: 525px; }
  .story__image-main { height: 460px; }
  .story__image-small { height: 220px; }
  .contact h2 { font-size: 43px; }
}

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