:root {
  --green-950: #0e2d27;
  --green-900: #173f35;
  --green-800: #205347;
  --green-100: #dce8df;
  --honey-600: #c88716;
  --honey-500: #dfa526;
  --honey-300: #f1cd72;
  --cream-50: #fffdf7;
  --cream-100: #faf5e9;
  --cream-200: #f2ead8;
  --ink: #1c2925;
  --muted: #66736d;
  --white: #ffffff;
  --error: #a13c32;
  --success: #236949;
  --shadow-sm: 0 12px 30px rgba(28, 41, 37, 0.08);
  --shadow-lg: 0 30px 70px rgba(20, 48, 40, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 82px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

img { max-width: 100%; display: block; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 { font-family: "Playfair Display", serif; line-height: 1.12; }

h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -0.045em; }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -0.035em; }
h3 { font-size: 1.45rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 247, 0.94);
  border-color: var(--cream-200);
  box-shadow: 0 6px 22px rgba(14, 45, 39, 0.07);
  backdrop-filter: blur(12px);
}

.navbar { min-height: 80px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.15rem; text-decoration: none; }
.brand strong { color: var(--honey-600); }
.brand-mark { display: grid; width: 37px; height: 37px; place-items: center; color: var(--cream-50); background: var(--green-900); border-radius: 11px; font-size: 1.5rem; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; color: #344a43; font-size: 0.89rem; font-weight: 600; text-decoration: none; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--honey-500); transform: scaleX(0); transition: transform 180ms ease; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-900); }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--green-900); transition: 180ms ease; }

.hero { min-height: 790px; padding-top: 150px; overflow: hidden; background: radial-gradient(circle at 74% 44%, #f6e7bc 0, #f9f2df 20%, transparent 43%), linear-gradient(115deg, #fffdf7 8%, #f8f1e0 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 30px; }
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.hero h1 em { display: block; color: var(--honey-600); font-weight: 600; }
.hero-lead { max-width: 590px; color: var(--muted); font-size: 1.15rem; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--honey-600); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
.eyebrow.centered { justify-content: center; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 8px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--green-900); box-shadow: 0 10px 25px rgba(23, 63, 53, 0.18); }
.button-primary:hover { background: var(--green-800); box-shadow: 0 14px 28px rgba(23, 63, 53, 0.22); }
.button-secondary { color: var(--green-900); background: transparent; border-color: #9bac9f; }
.button-secondary:hover { background: rgba(255, 255, 255, 0.5); }
.button-full { width: 100%; margin-top: 22px; }

.trust-list { display: flex; flex-wrap: wrap; gap: 20px; margin: 0; padding: 0; color: #51625c; font-size: 0.82rem; list-style: none; }
.trust-list span { display: inline-grid; width: 20px; height: 20px; margin-right: 4px; place-items: center; color: var(--green-900); background: var(--green-100); border-radius: 50%; font-weight: 800; }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.jar-scene { position: relative; width: 330px; height: 430px; z-index: 2; }
.jar { position: absolute; bottom: 34px; left: 52px; width: 232px; height: 298px; overflow: hidden; background: linear-gradient(90deg, #c77805 0, #efb82d 28%, #e29a0e 66%, #a85703 100%); border: 8px solid rgba(255,255,255,.55); border-radius: 25px 25px 48px 48px; box-shadow: inset 0 -35px 45px rgba(119, 61, 0, .28), inset 18px 0 28px rgba(255,255,255,.25), 0 35px 50px rgba(98, 60, 10, .22); }
.jar::before { content: ""; position: absolute; top: 1px; right: 0; left: 0; height: 18px; background: rgba(111, 57, 2, .18); }
.jar-lid { position: absolute; top: 60px; left: 43px; z-index: 4; width: 250px; height: 58px; background: repeating-linear-gradient(90deg, #d4b46c 0 5px, #bc9445 5px 8px); border: 4px solid #9b7838; border-radius: 18px 18px 9px 9px; box-shadow: 0 9px 13px rgba(81, 50, 8, .2); }
.jar-shine { position: absolute; top: 40px; left: 24px; width: 28px; height: 180px; background: rgba(255,255,255,.21); border-radius: 50%; filter: blur(2px); }
.jar-label { position: absolute; top: 92px; left: 22px; width: 172px; min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--green-900); background: #f8eed2; border: 2px solid #e1c777; border-radius: 50%; box-shadow: 0 5px 16px rgba(67, 42, 0, .15); text-align: center; }
.jar-label small { font-family: "Playfair Display", serif; font-style: italic; }
.jar-label strong { font-family: "Playfair Display", serif; font-size: 2.1rem; line-height: 1; }
.jar-label span:last-child { margin-top: 4px; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.label-bee { color: var(--honey-600); }
.honey-dipper { position: absolute; right: -56px; bottom: 86px; width: 200px; height: 13px; background: #a87527; border-radius: 10px; transform: rotate(-35deg); box-shadow: 0 8px 16px rgba(73, 44, 6, .22); }
.honey-dipper span { position: absolute; right: -20px; top: -18px; width: 75px; height: 49px; background: repeating-linear-gradient(0deg, #bc7e13 0 7px, #f0bd51 7px 11px); border-radius: 22px; }
.leaf { position: absolute; bottom: 13px; width: 120px; height: 45px; background: var(--green-800); border-radius: 100% 0 100% 0; opacity: .95; }
.leaf-one { left: 2px; transform: rotate(20deg); }
.leaf-two { right: 3px; transform: rotate(155deg); }
.quality-badge { position: absolute; right: 3%; bottom: 65px; z-index: 5; width: 118px; height: 118px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--green-900); background: #fff9e9; border: 1px solid var(--honey-300); border-radius: 50%; box-shadow: var(--shadow-sm); text-align: center; transform: rotate(8deg); }
.quality-badge span { color: var(--honey-500); }
.quality-badge small { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-glow { position: absolute; border: 1px solid rgba(214, 163, 49, .15); border-radius: 50%; }
.hero-glow-one { width: 500px; height: 500px; right: -240px; top: 120px; }
.hero-glow-two { width: 220px; height: 220px; left: -130px; bottom: -70px; }
.honeycomb { position: absolute; width: 80px; height: 90px; opacity: .1; background: repeating-linear-gradient(60deg, var(--honey-600) 0 2px, transparent 2px 20px); }
.honeycomb-one { top: 35px; right: 8px; }.honeycomb-two { bottom: 20px; left: 15px; }

.section-heading { max-width: 700px; margin: 0 auto 54px; text-align: center; }
.section-heading > p:last-child { color: var(--muted); }
.products { background: var(--cream-50); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid #ebe4d6; border-radius: var(--radius-md); box-shadow: 0 8px 25px rgba(22, 53, 44, .05); transition: transform 220ms ease, box-shadow 220ms ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.product-art { position: relative; height: 225px; display: grid; place-items: center; overflow: hidden; }
.meadow-art { background: linear-gradient(145deg, #e4edcf, #f5ebc5); }
.linden-light-art { background: linear-gradient(145deg, #f8e7a8, #eed2a0); }
.linden-dark-art { background: linear-gradient(145deg, #c9b58b, #81613a); }
.propolis-art { background: linear-gradient(145deg, #d7be8d, #8b6f44); }
.art-jar { position: relative; z-index: 2; width: 105px; height: 140px; display: grid; place-items: center; padding-top: 16px; color: #f8eed2; border: 4px solid rgba(255,255,255,.55); border-radius: 13px 13px 25px 25px; font-family: "Playfair Display", serif; font-weight: 700; box-shadow: 0 18px 23px rgba(62, 40, 5, .18); }
.art-jar::before { content: ""; position: absolute; top: -18px; width: 112px; height: 25px; background: #b2914e; border: 2px solid #8d6d34; border-radius: 8px 8px 4px 4px; }
.light-honey { background: linear-gradient(90deg, #eabb38, #f8d568, #c78310); }
.gold-honey { background: linear-gradient(90deg, #c77608, #efb42a, #a85b06); }
.dark-honey { background: linear-gradient(90deg, #704018, #a9651d, #4d2a13); }
.flower { position: absolute; color: white; font-size: 2.4rem; text-shadow: 0 4px 10px rgba(49, 68, 30, .2); }.flower-one { left: 22px; bottom: 20px; }.flower-two { right: 18px; top: 30px; color: #efd16e; }
.leaf-sprig { position: absolute; right: 22px; bottom: 18px; color: #678244; font-size: 6rem; transform: rotate(-30deg); }.leaf-sprig.dark { color: #9aae76; }
.dropper { position: relative; width: 75px; height: 135px; display: flex; align-items: center; justify-content: center; color: #eee2c6; background: linear-gradient(90deg, #3b291c, #6c4426, #2d211a); border: 3px solid rgba(255,255,255,.2); border-radius: 10px 10px 16px 16px; box-shadow: 0 20px 25px rgba(38, 25, 13, .3); }
.dropper i { position: absolute; top: -37px; width: 48px; height: 45px; background: #202521; border-radius: 12px 12px 5px 5px; }
.dropper b { font-size: .63rem; letter-spacing: .08em; writing-mode: vertical-rl; transform: rotate(180deg); }
.propolis-drops { position: absolute; right: 28px; bottom: 24px; color: #5f3b1c; letter-spacing: 5px; }
.product-content { padding: 24px; }
.product-content h3 { min-height: 52px; margin-bottom: 12px; }
.product-content > p:not(.product-tag) { min-height: 78px; color: var(--muted); font-size: .9rem; }
.product-tag { margin-bottom: 8px; color: var(--honey-600); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link { padding: 0; color: var(--green-900); background: none; border: 0; font-size: .84rem; font-weight: 700; cursor: pointer; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform 180ms ease; }.text-link:hover span { transform: translateX(5px); }

.pricing { color: var(--white); background: var(--green-950); overflow: hidden; }
.pricing::before { content: ""; position: absolute; width: 500px; height: 500px; top: -300px; left: -230px; border: 1px solid rgba(223,165,38,.12); border-radius: 50%; }
.pricing-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.pricing-copy > p:not(.eyebrow) { max-width: 470px; color: #bacac4; }
.pricing-copy .button { margin-top: 18px; color: var(--green-950); background: var(--honey-500); }
.price-list { display: grid; gap: 12px; }
.price-row { position: relative; display: flex; min-height: 105px; align-items: center; justify-content: space-between; padding: 22px 30px; background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.price-row.featured { border-color: var(--honey-500); background: rgba(223,165,38,.1); }
.price-row > div { display: flex; align-items: center; gap: 18px; }
.price-row small { display: block; color: #9eb1aa; font-size: .78rem; }
.price-icon { display: grid; width: 43px; height: 43px; place-items: center; color: var(--honey-300); background: rgba(223,165,38,.12); border-radius: 50%; font-size: .76rem; font-weight: 700; }
.price-row > p { margin: 0; text-align: right; }.price-row > p strong { display: block; color: var(--honey-300); font-size: 1.4rem; }.price-row > p span { color: #9eb1aa; font-size: .76rem; }
.popular-label { position: absolute; top: -10px; right: 20px; padding: 3px 10px; color: var(--green-950); background: var(--honey-500); border-radius: 20px; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.propolis-price { border-style: dashed; }

.analysis { background: var(--cream-100); }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.analysis-preview { text-align: center; }
.analysis-preview > p { margin: 18px 0 0; color: var(--muted); font-size: .8rem; }
.document-card { position: relative; width: min(100%, 430px); aspect-ratio: .78; padding: 50px 40px; color: var(--ink); background: #fff; border: 10px solid #fff; outline: 1px solid #ddd3bd; box-shadow: var(--shadow-lg); cursor: zoom-in; transition: transform 200ms ease; }
.document-card:hover { transform: rotate(-1deg) scale(1.015); }
.document-card::before { content: ""; position: absolute; inset: 12px; border: 1px solid #d9c9a7; pointer-events: none; }
.document-top { display: flex; justify-content: space-between; }.document-top i { width: 55px; height: 38px; background: #d5d9d4; border-radius: 4px; }.document-top i:last-child { border-radius: 50%; }
.document-title { display: block; margin-top: 42px; font-family: "Playfair Display", serif; font-size: 1.2rem; font-weight: 700; }.document-subtitle { display: block; margin: 8px 0 35px; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .09em; }
.document-lines { display: grid; gap: 16px; }.document-lines i { display: block; height: 8px; background: #e6e7e3; }.document-lines i:nth-child(2) { width: 82%; }.document-lines i:nth-child(3) { width: 94%; }.document-lines i:nth-child(4) { width: 70%; }
.document-stamp { position: absolute; right: 52px; bottom: 70px; display: grid; width: 90px; height: 90px; place-items: center; color: rgba(161,60,50,.65); border: 4px double rgba(161,60,50,.5); border-radius: 50%; font-weight: 800; transform: rotate(-12deg); }
.document-note { position: absolute; bottom: 25px; left: 0; right: 0; color: #9a8f7c; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }
.analysis-copy > p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 22px; margin: 32px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 15px; align-items: flex-start; }.check-list li > span { display: grid; flex: 0 0 34px; height: 34px; place-items: center; color: var(--green-900); background: var(--green-100); border-radius: 50%; font-weight: 800; }.check-list strong,.check-list small { display: block; }.check-list small { margin-top: 3px; color: var(--muted); }

.order-section { color: var(--white); background: linear-gradient(140deg, var(--green-900), var(--green-950)); }
.section-heading.light > p:last-child { color: #b9cac4; }
.order-form { display: grid; grid-template-columns: 1fr 320px; gap: 38px; padding: 36px; color: var(--ink); }
.form-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
fieldset { margin: 0; padding: 0; border: 0; }
fieldset + fieldset { margin-top: 34px; padding-top: 30px; border-top: 1px solid #ebe7dc; }
legend { width: 100%; margin-bottom: 18px; font-family: "Playfair Display", serif; font-size: 1.18rem; font-weight: 700; }
.product-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.radio-card { position: relative; display: block; cursor: pointer; }.radio-card input { position: absolute; opacity: 0; }.radio-card span { display: block; padding: 14px 15px; border: 1px solid #dfe3de; border-radius: 9px; transition: 160ms ease; }.radio-card b,.radio-card small { display: block; }.radio-card b { font-size: .82rem; }.radio-card small { color: var(--muted); font-size: .7rem; }.radio-card input:checked + span { background: #f0f7f2; border-color: var(--green-800); box-shadow: inset 0 0 0 1px var(--green-800); }.radio-card input:focus-visible + span { outline: 3px solid rgba(200,135,22,.3); outline-offset: 2px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-row + .form-row { margin-top: 16px; }
.field { display: flex; flex-direction: column; }
.field label { margin-bottom: 7px; color: #33443e; font-size: .8rem; font-weight: 700; }.field label b { color: var(--honey-600); }.field label span { color: var(--muted); font-weight: 400; }
.field input,.field select,.field textarea { width: 100%; color: var(--ink); background: #fdfcf8; border: 1px solid #d8ded9; border-radius: 8px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.field input,.field select { height: 48px; padding: 0 13px; }.field textarea { padding: 12px 13px; resize: vertical; }
.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--honey-600); box-shadow: 0 0 0 3px rgba(200,135,22,.13); }
.field input.invalid,.field textarea.invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(161,60,50,.1); }
.field-hint { margin-top: 5px; color: var(--muted); font-size: .68rem; }.error-message { min-height: 17px; margin-top: 4px; color: var(--error); font-size: .68rem; }
.address-field { margin-top: 16px; }.address-field[hidden],#packaging-field[hidden] { display: none; }
.order-sidebar { position: sticky; top: 105px; align-self: start; }
.order-summary { padding: 28px; color: var(--white); background: var(--green-950); border-radius: 15px; }
.order-summary > p:first-child { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); font-family: "Playfair Display", serif; font-size: 1.15rem; font-weight: 700; }
.order-summary > div { display: flex; justify-content: space-between; gap: 15px; margin: 13px 0; font-size: .78rem; }.order-summary > div strong { max-width: 180px; color: #f4e8c7; text-align: right; }.order-summary hr { margin: 20px 0; border: 0; border-top: 1px solid rgba(255,255,255,.14); }.order-summary .summary-total { align-items: end; }.order-summary .summary-total strong { color: var(--honey-300); font-family: "Playfair Display", serif; font-size: 1.8rem; }.order-summary > small { display: block; color: #8fa69e; font-size: .67rem; }
.form-status { display: none; margin: 14px 0 0; padding: 10px 12px; color: var(--success); background: #e4f4e9; border-radius: 7px; font-size: .75rem; }.form-status.visible { display: block; }.order-summary .form-status { color: #d9f2e1; background: rgba(70,158,106,.22); }
.form-status.error { color: #8b2d25; background: #fbe3df; }
.order-summary .form-status.error { color: #ffdcd6; background: rgba(161,60,50,.28); }
.button:disabled { cursor: wait; opacity: .7; transform: none; }
.confirmation-note { margin: 16px 0 0; padding: 14px; color: #103c25; background: #c9f3d8; border: 1px solid #67c98a; border-left: 4px solid #21864a; border-radius: 8px; font-size: .76rem; font-weight: 600; line-height: 1.5; }
.order-feedback { margin-top: 16px; }
.order-feedback .confirmation-note { margin: 0; padding: 18px 20px; }
.order-feedback .form-status { margin-top: 12px; }

.inquiry { background: var(--cream-100); }
.inquiry-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: center; }
.inquiry-copy > p:not(.eyebrow) { color: var(--muted); }
.inquiry-note { display: flex; align-items: center; gap: 13px; margin-top: 35px; }.inquiry-note > span { display: grid; width: 45px; height: 45px; place-items: center; color: var(--green-900); background: var(--green-100); border-radius: 50%; font-weight: 800; }.inquiry-note p { margin: 0; }.inquiry-note strong,.inquiry-note small { display: block; }.inquiry-note small { color: var(--muted); }
.inquiry-form { padding: 34px; }.inquiry-form > .field { margin-top: 16px; }.inquiry-form .button { margin-top: 20px; }

.site-footer { padding-top: 80px; color: #d1dfda; background: #0a251f; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr .7fr; gap: 80px; padding-bottom: 60px; }
.light-brand { color: var(--white); }.light-brand .brand-mark { background: var(--honey-500); color: var(--green-950); }.footer-brand > p { max-width: 370px; margin-top: 22px; color: #92aaa2; }
.site-footer h2 { margin-bottom: 22px; color: var(--white); font-family: "DM Sans", sans-serif; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }.contact-list span { display: block; color: #789088; font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }.contact-list a,.contact-list address { color: #d1dfda; font-size: .87rem; font-style: normal; text-decoration: none; }.contact-list a:hover { color: var(--honey-300); }
.contact-list .contact-placeholder { color: #d1dfda; font-size: .87rem; letter-spacing: 0; text-transform: none; }
.social-links { display: flex; gap: 10px; }.social-links a { display: grid; width: 40px; height: 40px; place-items: center; color: var(--white); border: 1px solid #35534a; border-radius: 50%; font-weight: 700; text-decoration: none; }.social-links a:hover { color: var(--green-950); background: var(--honey-500); border-color: var(--honey-500); }.placeholder-note { margin-top: 18px; color: #6e8980; font-size: .68rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; border-top: 1px solid #28433b; color: #789088; font-size: .72rem; }.footer-bottom p { margin: 0; }.footer-bottom a { text-decoration: none; }

.analysis-modal { width: min(680px, calc(100% - 30px)); padding: 0; border: 0; border-radius: var(--radius-md); box-shadow: 0 30px 90px rgba(0,0,0,.35); }.analysis-modal::backdrop { background: rgba(7,27,22,.78); backdrop-filter: blur(4px); }.modal-close { position: absolute; top: 14px; right: 16px; z-index: 2; width: 40px; height: 40px; color: var(--green-900); background: var(--cream-200); border: 0; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }.modal-document { padding: 60px 50px 45px; text-align: center; }.modal-placeholder { display: grid; min-height: 350px; place-items: center; align-content: center; margin: 30px 0 20px; padding: 30px; color: #877b65; background: repeating-linear-gradient(-45deg,#f8f5ed,#f8f5ed 12px,#f1ecdf 12px,#f1ecdf 24px); border: 2px dashed #c7bda8; }.modal-placeholder span { font-family: "Playfair Display", serif; font-size: 1.35rem; font-weight: 700; }.modal-placeholder p { margin: 10px 0 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease, transform 600ms ease; }.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(200,135,22,.45); outline-offset: 3px; }

@media (max-width: 1020px) {
  .nav-links { gap: 17px; }.nav-links a { font-size: .78rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }.jar-scene { transform: scale(.85); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid,.analysis-grid { gap: 55px; }
  .order-form { grid-template-columns: 1fr 280px; padding: 28px; }
  .inquiry-grid { gap: 50px; }
}

@media (max-width: 800px) {
  .section { padding: 85px 0; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 24px; background: rgba(255,253,247,.98); transform: translateX(100%); transition: transform 220ms ease; }.nav-links.open { transform: translateX(0); }.nav-links a { font-family: "Playfair Display", serif; font-size: 1.6rem; }
  .hero { min-height: auto; padding-top: 130px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { text-align: center; }.hero .eyebrow,.hero-actions,.trust-list { justify-content: center; }.hero-lead { margin-inline: auto; }.hero-visual { min-height: 470px; }.jar-scene { transform: scale(.83); }
  .pricing-grid,.analysis-grid,.inquiry-grid { grid-template-columns: 1fr; }.pricing-grid { gap: 55px; }.pricing-copy { text-align: center; }.pricing-copy .eyebrow { justify-content: center; }.pricing-copy > p:not(.eyebrow) { margin-inline: auto; }
  .analysis-grid { gap: 65px; }.analysis-copy { max-width: 600px; margin: auto; }
  .order-form { grid-template-columns: 1fr; }.order-summary { position: static; }
  .inquiry-copy { text-align: center; }.inquiry-copy .eyebrow,.inquiry-note { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: 3.05rem; }.hero { padding-top: 112px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }.trust-list { align-items: flex-start; flex-direction: column; width: max-content; margin-inline: auto; }.hero-visual { min-height: 410px; }.jar-scene { transform: scale(.7); }.quality-badge { right: 0; bottom: 35px; transform: scale(.82) rotate(8deg); }
  .product-grid { grid-template-columns: 1fr; }.product-card { max-width: 390px; margin-inline: auto; }.product-content > p:not(.product-tag),.product-content h3 { min-height: auto; }
  .price-row { padding: 20px 16px; }.price-row > div { gap: 10px; }.price-icon { width: 36px; height: 36px; }.price-row > p strong { font-size: 1.15rem; }
  .document-card { padding: 45px 30px; }.document-stamp { right: 35px; bottom: 58px; width: 75px; height: 75px; }
  .order-form,.inquiry-form { padding: 20px; border-radius: 14px; }.product-options,.form-row { grid-template-columns: 1fr; }.form-row + .form-row { margin-top: 0; }.form-row .field + .field { margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }.footer-brand { grid-column: auto; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .modal-document { padding: 60px 20px 30px; }.modal-placeholder { min-height: 260px; }
}

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

/* Modern editorial redesign */
:root {
  --orange: #ff8a00;
  --orange-dark: #e87400;
  --paper: #f8f5ee;
  --paper-deep: #f1ece3;
  --black: #161510;
  --line: #e8e2d8;
  --green-950: #171710;
  --green-900: #202019;
  --green-800: #34342a;
  --honey-600: #f07e00;
  --honey-500: #ff920d;
  --honey-300: #ffc45d;
  --cream-50: #f8f5ee;
  --cream-100: #f4f0e8;
  --cream-200: #e9e3d9;
  --ink: #171610;
  --muted: #77736b;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-lg: 0 26px 70px rgba(37, 28, 16, 0.1);
}

body { background: #ffb64e; font-size: 17px; }

main,
.site-footer { width: min(1440px, calc(100% - 48px)); margin-inline: auto; }

main { overflow: hidden; background: var(--paper); border-radius: 18px 18px 0 0; }
main { margin-top: 24px; }

.site-header {
  top: 18px;
  right: 24px;
  left: 24px;
  width: min(1392px, calc(100% - 48px));
  margin-inline: auto;
  background: rgba(248, 245, 238, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(89, 54, 12, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.scrolled { background: rgba(248, 245, 238, 0.96); border-color: rgba(255,255,255,.9); }
.navbar { min-height: 70px; }
.brand { color: var(--black); font-size: .93rem; font-weight: 800; letter-spacing: -.03em; }
.brand strong { color: var(--black); }
.brand-mark { width: 30px; height: 30px; color: var(--black); background: transparent; font-size: 1.25rem; }
.nav-links { gap: 26px; }
.nav-links a { color: #3d3a34; font-size: .94rem; font-weight: 500; }
.nav-links a::after { bottom: -6px; background: var(--orange); }

h1,
h2,
h3 { font-family: "DM Sans", sans-serif; }
h2 { font-weight: 500; letter-spacing: -.055em; }
h3 { letter-spacing: -.035em; }

.section { padding: 105px 0; }
.eyebrow { color: var(--orange-dark); font-size: .75rem; letter-spacing: .12em; }
.button { min-height: 47px; padding: 11px 22px; border-radius: 9px; font-size: .86rem; }
.button-primary { color: white; background: linear-gradient(180deg, #ff9b23, #f37b00); box-shadow: 0 8px 20px rgba(240, 126, 0, .2); }
.button-primary:hover { background: var(--orange-dark); }
.button-secondary { color: var(--black); border-color: transparent; }

.hero {
  min-height: 750px;
  padding: 145px 0 90px;
  background: var(--paper);
}
.hero::after { content: ""; position: absolute; right: -130px; bottom: -150px; width: 480px; height: 480px; background: #ffd18d; border-radius: 50%; filter: blur(90px); opacity: .3; }
.hero-grid { grid-template-columns: .9fr 1.1fr; gap: 5px; }
.hero-copy { padding-left: 35px; }
.hero h1 { margin-bottom: 22px; font-family: "DM Sans", sans-serif; font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 600; line-height: .98; letter-spacing: -.075em; }
.hero h1 em { display: inline; color: var(--orange); font-style: normal; font-weight: 600; }
.hero-lead { max-width: 500px; font-size: 1.05rem; line-height: 1.55; }
.hero-actions { margin: 28px 0 28px; }
.trust-list { gap: 15px; font-size: .78rem; }
.trust-list span { color: white; background: var(--orange); }
.hero-visual { min-height: 510px; }
.hero-visual img { position: relative; z-index: 2; width: 112%; max-width: none; margin-left: -5%; mix-blend-mode: multiply; }
.quality-badge { right: 1%; bottom: 36px; width: 104px; height: 104px; color: var(--black); background: rgba(255,255,255,.92); border: 0; box-shadow: 0 12px 30px rgba(53,36,10,.12); }
.quality-badge strong { font-size: 1.2rem; }.quality-badge small { font-size: .58rem; }
.hero-glow { display: none; }

.section-heading { margin-bottom: 65px; }
.section-heading h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.section-heading > p:last-child { max-width: 560px; margin-inline: auto; font-size: .94rem; }

.products { background: #fbf9f4; }
.product-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
.product-card { overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; text-align: center; }
.product-card:hover { transform: translateY(-5px); box-shadow: none; }
.product-art { height: 245px; margin-bottom: 10px; background: #f5f1e8; border-radius: 12px; }
.product-art::after { content: ""; position: absolute; right: 15%; bottom: 17px; left: 15%; height: 16px; background: rgba(90,58,11,.12); border-radius: 50%; filter: blur(10px); }
.art-jar,.dropper { transform: scale(1.12); }
.product-content { padding: 12px 5px; }
.product-content h3 { min-height: auto; margin-bottom: 7px; font-family: "DM Sans", sans-serif; font-size: 1.1rem; font-weight: 500; }
.product-content > p:not(.product-tag) { min-height: 68px; margin-bottom: 12px; color: #89847c; font-size: .81rem; line-height: 1.5; }
.product-tag { margin-bottom: 6px; color: var(--orange-dark); font-size: .72rem; }
.text-link { color: var(--orange-dark); font-size: .82rem; font-weight: 600; }

.pricing { color: var(--black); background: var(--paper); }
.pricing::before { display: none; }
.pricing-grid { grid-template-columns: .72fr 1.28fr; gap: 80px; }
.pricing-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.order-form legend { font-size: 1.35rem; }
.radio-card b { font-size: .94rem; }
.radio-card small { margin-top: 3px; font-size: .8rem; }
.radio-card span { padding: 17px 17px; }
.field label { font-size: .96rem; }
.field input,
.field select,
.field textarea { font-size: 1rem; }
.field input,
.field select { height: 52px; padding-inline: 15px; }
.field-hint,
.error-message { font-size: .78rem; }
.order-summary > p:first-child { font-size: 1.35rem; }
.order-summary > div { font-size: .9rem; }
.order-summary > small { font-size: .76rem; }
.confirmation-note { font-size: .84rem; }
.order-summary .summary-total strong { font-size: 2rem; }
.form-status { font-size: .84rem; }
.inquiry-form .field label { font-size: .96rem; }
.pricing-copy .button { color: white; background: var(--orange); }
.price-list { gap: 8px; }
.price-row { min-height: 90px; padding: 18px 25px; background: rgba(255,255,255,.55); border-color: var(--line); border-radius: 10px; }
.price-row.featured { background: #fff5e5; border-color: #ffb54f; }
.price-row small { color: #8e8980; }
.price-icon { color: var(--orange-dark); background: #fff0d8; }
.price-row > p strong { color: var(--orange-dark); }.price-row > p span { color: #8e8980; }
.popular-label { color: white; background: var(--orange); }

.analysis { background: #f0ece4; }
.document-card { border-width: 6px; border-radius: 8px; box-shadow: 0 22px 55px rgba(37,28,16,.1); }
.document-stamp { color: rgba(232,116,0,.65); border-color: rgba(232,116,0,.4); }

.order-section { color: var(--black); background: #ffc66f; }
.section-heading.light > p:last-child { color: #685436; }
.order-form { box-shadow: 0 25px 70px rgba(104,64,8,.15); }
.order-summary { background: var(--black); }
.order-summary .button-primary { background: var(--orange); }

.inquiry { background: #fbf9f4; }
.inquiry-form { border: 1px solid var(--line); box-shadow: 0 16px 50px rgba(37,28,16,.07); }

.site-footer { background: var(--black); border-radius: 0 0 18px 18px; }
.site-footer { margin-bottom: 24px; }
.light-brand strong { color: var(--orange); }
.light-brand .brand-mark { color: var(--orange); background: transparent; }

@media (max-width: 1020px) {
  .hero-copy { padding-left: 0; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5rem); }
  .hero-visual img { width: 125%; margin-left: -12%; }
  .product-grid { gap: 18px; }
}

@media (max-width: 800px) {
  body { background: var(--paper); }
  main,.site-footer { width: 100%; border-radius: 0; }
  main { margin-top: 10px; }
  .site-footer { margin-bottom: 10px; }
  .site-header { top: 10px; right: 10px; left: 10px; width: calc(100% - 20px); }
  body.menu-open .site-header {
    bottom: 10px;
    height: calc(100dvh - 20px);
    background: rgba(248,245,238,.99);
  }
  body.menu-open .navbar { height: 100%; align-items: flex-start; padding-top: 18px; }
  .nav-links {
    position: absolute;
    inset: 72px 0 0;
    z-index: 1;
    justify-content: center;
    gap: 18px;
    padding: 20px 0 45px;
    overflow-y: auto;
    background: rgba(248,245,238,.99);
    border-radius: 0 0 16px 16px;
  }
  .nav-links a { color: var(--black); font-family: "DM Sans", sans-serif; font-size: 1.45rem; font-weight: 600; }
  .brand,
  .menu-toggle { position: relative; z-index: 2; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 620px; margin-inline: auto; }
  .hero-visual { min-height: 440px; }
  .hero-visual img { width: min(780px, 125%); margin-left: 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 45px; }
  .order-sidebar { position: static; }
  .pricing-copy { text-align: left; }.pricing-copy .eyebrow { justify-content: flex-start; }.pricing-copy > p:not(.eyebrow) { margin-inline: 0; }
}

@media (max-width: 560px) {
  body { font-size: 18px; }
  .brand { font-size: .88rem; }
  .hero .eyebrow { font-size: .8rem; }
  .hero-lead { font-size: 1.12rem; line-height: 1.6; }
  .hero-actions .button { font-size: .96rem; }
  .trust-list { gap: 18px; font-size: .9rem; }
  .section-heading > p:last-child { font-size: 1.05rem; line-height: 1.6; }
  .eyebrow { font-size: .82rem; }
  .product-tag { font-size: .8rem; }
  .product-content h3 { font-size: 1.08rem; }
  .text-link { font-size: .92rem; }
  .pricing-copy > p:not(.eyebrow),
  .analysis-copy > p:not(.eyebrow),
  .inquiry-copy > p:not(.eyebrow) { font-size: 1.05rem; line-height: 1.65; }
  .price-row strong { font-size: 1rem; }
  .price-row small { font-size: .85rem; }
  .price-row > p strong { font-size: 1.3rem; }
  .price-row > p span { font-size: .82rem; }
  .check-list strong { font-size: 1rem; }
  .check-list small { font-size: .9rem; }
  .radio-card b { font-size: 1rem; }
  .radio-card small { font-size: .88rem; }
  .field label { font-size: 1rem; }
  .field-hint,
  .error-message { font-size: .84rem; }
  .order-summary > div { font-size: .95rem; }
  .order-summary > small { font-size: .82rem; }
  .confirmation-note { font-size: .9rem; }
  .contact-list a,
  .contact-list address { font-size: 1rem; }
  .footer-brand > p,
  .placeholder-note,
  .footer-bottom { font-size: .88rem; }
  .hero h1 { font-size: 3.4rem; }
  .hero-visual { min-height: 330px; }
  .hero-visual img { width: 135%; }
  .quality-badge { right: -3px; bottom: 8px; }
  .pricing { padding-block: 78px; }
  .pricing-copy { max-width: 390px; }
  .pricing-copy > p:not(.eyebrow) { max-width: 340px; }
  .price-list { width: 100%; }
  .price-row { min-height: 96px; padding: 18px 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 34px 12px; }
  .product-art { height: 185px; }
  .art-jar,.dropper { transform: scale(.86); }
  .product-content > p:not(.product-tag) { display: none; }
}
