:root {
  --ivory: #F7F3E8;
  --forest: #173D2B;
  --charcoal: #24312A;
  --honey: #D99B2B;
  --honey-dark: #B87814;
  --moss: #52734D;
  --sage: #DDE8D8;
  --white: #FFFEF9;
  --muted: #667069;
  --border: rgba(23, 61, 43, 0.15);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 18px 45px rgba(23, 61, 43, 0.11);
  --radius: 22px;
  --shell: 1180px;
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  transition: top .2s ease;
}

.skip-link:focus { top: 12px; }

.shell {
  width: min(100% - 36px, var(--shell));
  margin-inline: auto;
}

.narrow-shell { width: min(100% - 36px, 1080px); }

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

h1, h2, h3 {
  color: var(--forest);
  font-family: var(--serif);
  letter-spacing: -.025em;
  line-height: 1.08;
}

h1 { margin-bottom: 22px; font-size: clamp(2.55rem, 10vw, 4.85rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.1rem, 7vw, 3.35rem); }
h3 { margin-bottom: 12px; font-size: 1.45rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--moss);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span { color: var(--honey); font-size: .67rem; }
.eyebrow.light { color: #BFCFBE; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 61, 43, .09);
  background: rgba(247, 243, 232, .94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark { width: 39px; height: 39px; flex: 0 0 auto; }
.brand-mark svg { width: 100%; height: 100%; fill: var(--forest); }
.brand-mark .bee-line { fill: none; stroke: var(--honey); stroke-linecap: round; stroke-width: 2.1; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.25rem; line-height: 1.05; }
.brand small { display: block; margin-top: 3px; color: var(--moss); font-size: .67rem; line-height: 1.1; }

.desktop-nav { display: none; }
.desktop-nav a[aria-current="page"] { color: var(--forest); }

.mobile-nav {
  overflow-x: auto;
  border-top: 1px solid rgba(23, 61, 43, .08);
  background: rgba(255, 254, 249, .72);
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(max-content, 1fr));
  gap: 6px;
  padding-block: 8px 9px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #46544C;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-nav a[aria-current="page"] {
  background: var(--forest);
  box-shadow: 0 5px 15px rgba(23,61,43,.16);
  color: var(--white);
}

.header-actions { display: flex; align-items: center; gap: 7px; }
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
}

.header-contact svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-whatsapp { color: #1F6A3A; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 64px;
}

.hero-grid { display: grid; gap: 43px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 580px; margin-bottom: 28px; color: #4E5B54; font-size: 1.08rem; line-height: 1.7; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.button-primary { background: var(--honey); box-shadow: 0 10px 24px rgba(185, 121, 20, .22); color: #162C20; }
.button-primary:hover { background: #E3A83E; box-shadow: 0 13px 28px rgba(185, 121, 20, .28); }
.button-whatsapp { background: #247A45; box-shadow: 0 10px 24px rgba(31, 106, 58, .2); color: #fff; }
.button-whatsapp:hover { background: #1D693A; box-shadow: 0 13px 28px rgba(31, 106, 58, .26); }
.text-link { color: var(--forest); font-weight: 700; }
.micro-copy { margin: 20px 0 0; color: var(--muted); font-size: .8rem; }

.hero-visual { position: relative; }
.image-frame { position: relative; overflow: hidden; border-radius: 26px 26px 82px 26px; box-shadow: var(--shadow); }
.image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 64%, rgba(17, 39, 28, .15)); pointer-events: none; }
.image-frame img { width: 100%; height: 390px; object-fit: cover; object-position: 57% center; }

.image-note {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 14px;
  background: rgba(255, 254, 249, .93);
  box-shadow: 0 8px 24px rgba(23, 61, 43, .16);
  color: var(--charcoal);
  font-size: .78rem;
  line-height: 1.25;
  backdrop-filter: blur(8px);
}

.image-note strong { display: block; color: var(--forest); }
.note-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-weight: 800; }
.leaf-sprig { position: absolute; right: -24px; bottom: -38px; z-index: 3; width: 100px; overflow: visible; fill: var(--moss); stroke: var(--moss); stroke-linecap: round; stroke-linejoin: round; stroke-width: 3; transform: rotate(7deg); }

.honeycomb { position: absolute; width: 112px; height: 120px; opacity: .42; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='50' viewBox='0 0 58 50'%3E%3Cpath d='M14.5 1.4h14.3l7.2 12.4-7.2 12.4H14.5L7.3 13.8Z' fill='none' stroke='%23D99B2B' stroke-width='1'/%3E%3Cpath d='M43.5 25.1h14.3L65 37.5l-7.2 12.4H43.5l-7.2-12.4Z' fill='none' stroke='%23D99B2B' stroke-width='1'/%3E%3C/svg%3E"); }
.honeycomb-one { top: 35px; right: -25px; }

.trust-strip { border-block: 1px solid var(--border); background: rgba(255, 254, 249, .54); }
.trust-grid { display: grid; padding-block: 8px; }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 17px 6px; border-bottom: 1px solid var(--border); }
.trust-item:last-child { border-bottom: 0; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--forest); font-size: .93rem; }
.trust-item small { color: var(--muted); font-size: .77rem; }
.trust-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); }
.trust-icon.currency { font-family: var(--sans); font-size: 1.2rem; font-weight: 800; }
.trust-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.section { padding: 82px 0; }
.section-heading { max-width: 680px; margin-bottom: 39px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading.centred .eyebrow { justify-content: center; }
.section-heading > p:last-child { color: var(--muted); }

.feature-grid { display: grid; gap: 17px; }
.feature-card { position: relative; overflow: hidden; min-height: 300px; padding: 30px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 28px rgba(23, 61, 43, .05); }
.feature-card::after { content: ""; position: absolute; right: -35px; bottom: -48px; width: 110px; height: 110px; border: 1px solid rgba(217, 155, 43, .22); border-radius: 50%; }
.feature-number { position: absolute; top: 24px; right: 25px; color: rgba(23, 61, 43, .19); font-family: var(--serif); font-size: 1.15rem; font-weight: 700; }
.feature-icon { display: grid; width: 66px; height: 66px; margin-bottom: 25px; place-items: center; border-radius: 50%; background: var(--sage); }
.feature-icon svg { width: 40px; fill: none; stroke: var(--forest); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }
.species-note { max-width: 780px; margin: 28px auto 0; padding: 16px 19px; border-left: 4px solid var(--honey); border-radius: 0 12px 12px 0; background: rgba(217, 155, 43, .09); color: #5B645F; font-size: .87rem; }
.species-note strong { color: var(--forest); }

/* Honey-bee information page */
.guide-hero { position: relative; overflow: hidden; padding: 58px 0 62px; }
.guide-hero-grid { display: grid; gap: 40px; align-items: center; }
.guide-hero h1 { max-width: 740px; }
.guide-hero .image-frame img { object-position: 54% center; }
.hive-hero-photo .image-frame img { object-position: 67% center; }
.guide-intro { max-width: 650px; margin-bottom: 27px; color: #4E5B54; font-size: 1.08rem; }
.guide-section { padding: 76px 0; }
.guide-section.alt { background: rgba(221,232,216,.48); }
.guide-section-heading { max-width: 760px; margin-bottom: 34px; }
.guide-section-heading > p:last-child { color: var(--muted); }
.info-grid, .action-grid, .season-grid { display: grid; gap: 17px; }
.info-card, .action-card, .season-card { border: 1px solid var(--border); border-radius: 20px; background: var(--white); box-shadow: 0 9px 26px rgba(23,61,43,.05); }
.info-card { padding: 27px 24px; }
.info-card h3, .action-card h3, .season-card h3 { font-size: 1.3rem; }
.info-card p, .action-card p, .season-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.card-symbol { display: grid; width: 48px; height: 48px; margin-bottom: 19px; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-family: var(--serif); font-size: 1.25rem; font-weight: 700; }
.fact-strip { border-block: 1px solid var(--border); background: rgba(255,254,249,.62); }
.fact-grid { display: grid; padding-block: 10px; }
.fact-item { padding: 17px 7px; border-bottom: 1px solid var(--border); }
.fact-item:last-child { border-bottom: 0; }
.fact-item strong { display: block; color: var(--forest); font-family: var(--serif); font-size: 1.18rem; }
.fact-item span { color: var(--muted); font-size: .8rem; }
.action-card { position: relative; padding: 28px 24px 25px; }
.action-number { display: grid; width: 34px; height: 34px; margin-bottom: 18px; place-items: center; border-radius: 50%; background: var(--honey); color: #173326; font-size: .78rem; font-weight: 800; }
.season-card { overflow: hidden; }
.season-card h3 { margin: 0; padding: 19px 21px 16px; background: var(--forest); color: var(--white); }
.season-card p { padding: 20px 21px 22px; }
.guide-note { margin-top: 27px; padding: 19px 21px; border-left: 4px solid var(--honey); border-radius: 0 14px 14px 0; background: rgba(217,155,43,.1); color: #526058; font-size: .9rem; }
.guide-note strong { color: var(--forest); }
.bee-roles { display: grid; gap: 18px; }
.role-row { display: grid; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.role-row:last-child { padding-bottom: 0; border-bottom: 0; }
.role-row h3 { margin: 0; font-size: 1.25rem; }
.role-row p { margin: 0; color: var(--muted); font-size: .9rem; }
.source-panel { padding: 28px 24px; border-radius: 22px; background: var(--forest); color: #D9E4DA; }
.source-panel h2 { color: var(--white); font-size: clamp(1.8rem, 5vw, 2.45rem); }
.source-panel p { color: #C5D1C6; }
.source-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-top: 20px; }
.source-links a { color: #F4C66A; font-weight: 700; }
.guide-cta { padding: 50px 0; background: var(--moss); color: var(--white); }
.guide-cta-inner { display: grid; gap: 23px; align-items: center; }
.guide-cta h2 { margin-bottom: 8px; color: var(--white); }
.guide-cta p { margin: 0; color: #DCE6DC; }
.guide-cta-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.editorial-figure { margin: 32px 0 0; }
.editorial-figure img { width: 100%; height: 320px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.editorial-figure figcaption { margin: 10px 4px 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.editorial-split { display: grid; gap: 28px; align-items: center; }
.editorial-split .editorial-figure { margin: 0; }
.editorial-split .editorial-figure img { height: 390px; }
.editorial-copy h2 { margin-bottom: 15px; }
.editorial-copy p { color: var(--muted); }
.editorial-copy p:last-child { margin-bottom: 0; }

/* Honey guide page */
.honey-hero { position: relative; overflow: hidden; padding: 58px 0 64px; background: linear-gradient(145deg, var(--ivory) 0%, #F3E6C5 100%); }
.honey-hero-grid { display: grid; gap: 42px; align-items: center; }
.honey-hero-copy { position: relative; z-index: 2; }
.honey-hero-copy h1 { max-width: 720px; }
.honey-visual { position: relative; display: grid; min-height: 390px; place-items: center; overflow: hidden; border-radius: 28px 28px 84px 28px; background: radial-gradient(circle at 50% 36%, #FFE6A0 0 22%, #EFC564 46%, #C57A16 100%); box-shadow: var(--shadow); }
.honey-visual::before, .honey-visual::after { content: ""; position: absolute; width: 170px; height: 148px; opacity: .22; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='50' viewBox='0 0 58 50'%3E%3Cpath d='M14.5 1.4h14.3l7.2 12.4-7.2 12.4H14.5L7.3 13.8Z' fill='none' stroke='%23FFF9E8' stroke-width='1.5'/%3E%3C/svg%3E"); }
.honey-visual::before { top: 17px; left: 16px; }
.honey-visual::after { right: -28px; bottom: 8px; }
.honey-jar { position: relative; z-index: 2; width: 190px; height: 244px; border: 5px solid rgba(94,54,8,.48); border-radius: 24px 24px 42px 42px; background: linear-gradient(90deg, rgba(255,255,255,.42), transparent 20% 78%, rgba(116,64,3,.12)), linear-gradient(#F4B52A 0 18%, #D88613 65%, #B66B0E 100%); box-shadow: inset 0 0 0 7px rgba(255,245,200,.17), 0 25px 45px rgba(83,46,6,.28); }
.honey-jar::before { content: ""; position: absolute; top: -22px; left: 10px; width: 160px; height: 27px; border: 4px solid rgba(66,48,21,.62); border-radius: 8px 8px 4px 4px; background: repeating-linear-gradient(90deg,#26382D 0 8px,#4B5C4F 8px 13px); }
.honey-jar::after { content: ""; position: absolute; top: 19px; right: 25px; width: 25px; height: 110px; border-radius: 999px; background: rgba(255,255,255,.3); transform: rotate(-5deg); }
.jar-label { position: absolute; top: 89px; right: 15px; left: 15px; display: grid; min-height: 91px; place-items: center; border: 2px solid rgba(83,55,20,.24); border-radius: 9px; background: #FFF8DF; color: var(--forest); font-family: var(--serif); font-size: 1.45rem; font-weight: 700; letter-spacing: .02em; text-align: center; }
.jar-label small { display: block; color: var(--moss); font-family: var(--sans); font-size: .57rem; letter-spacing: .11em; text-transform: uppercase; }
.honey-drop { position: absolute; z-index: 3; top: 46px; right: 16%; width: 38px; height: 49px; border-radius: 58% 42% 65% 35% / 68% 42% 58% 32%; background: #F8BF35; box-shadow: 0 8px 18px rgba(100,53,4,.2); transform: rotate(28deg); }
.honey-drop.small { top: auto; right: auto; bottom: 43px; left: 13%; width: 23px; height: 31px; opacity: .75; }
.honey-process { counter-reset: honey-step; }
.honey-process .action-card { counter-increment: honey-step; }
.honey-process .action-number::before { content: counter(honey-step); }
.honey-process .action-number { font-size: 0; }
.honey-safety { display: grid; gap: 23px; padding: 28px 25px; border-radius: 24px; background: #F1D9A6; }
.honey-safety h2 { margin-bottom: 11px; font-size: clamp(1.8rem, 5vw, 2.55rem); }
.honey-safety p { margin-bottom: 0; color: #5E533D; }
.warning-badge { display: grid; width: 58px; height: 58px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--white); font-size: 1.4rem; font-weight: 800; }
.honey-myth { padding: 25px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); }
.honey-myth h3 { margin-bottom: 10px; }
.honey-myth p { margin-bottom: 0; color: var(--muted); }
.myth-heading { margin-top: 42px; }
.honey-storage-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.honey-storage-list li { display: flex; gap: 11px; align-items: flex-start; color: #526058; }
.honey-storage-list span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--sage); color: var(--forest); font-size: .75rem; font-weight: 800; }

.identify { padding-bottom: 40px; }
.safety { padding: 0 0 48px; }
.safety-card { display: grid; gap: 30px; padding: 34px 25px; border-radius: 27px; background: var(--sage); }
.safety-copy > p:not(.eyebrow) { max-width: 580px; color: #51624F; }
.tick-list { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.tick-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--forest); font-size: .91rem; font-weight: 600; }
.tick-list span { display: grid; width: 23px; height: 23px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--forest); color: var(--white); font-size: .72rem; }
.dont-card { padding: 28px 25px; border: 1px solid rgba(23, 61, 43, .10); border-radius: 20px; background: rgba(255, 254, 249, .77); }
.dont-icon { display: grid; width: 43px; height: 43px; margin-bottom: 20px; place-items: center; border-radius: 50%; background: #F1DBAF; color: #82530E; font-weight: 800; }
.dont-card p { color: #58645B; font-size: .88rem; }
.dont-card p:last-child { margin-bottom: 0; padding-top: 16px; border-top: 1px solid var(--border); }

.local-service { padding: 0 0 58px; }
.local-service-grid { display: grid; gap: 23px; padding: 32px 25px; border: 1px solid var(--border); border-radius: 24px; background: rgba(255,254,249,.72); }
.local-service h2 { margin-bottom: 0; font-size: clamp(1.9rem, 5vw, 2.8rem); }
.local-service-copy p { margin-bottom: 13px; color: #526058; font-size: .94rem; }
.local-service-copy p:last-child { margin-bottom: 0; }
.area-list { padding: 14px 16px; border-left: 4px solid var(--honey); border-radius: 0 10px 10px 0; background: rgba(217,155,43,.09); }
.area-list strong { color: var(--forest); }

.report { position: relative; overflow: hidden; margin-top: 0; background: var(--forest); color: #E6ECE5; }
.report .report-decoration { top: 22px; left: -40px; opacity: .14; }
.report-grid { position: relative; z-index: 2; display: grid; gap: 40px; }
.report-intro h2 { color: var(--white); }
.report-intro > p:not(.eyebrow) { color: #C4CFC5; }
.coordinator-card { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatar { display: grid; width: 56px; height: 56px; flex: 0 0 auto; place-items: center; border: 2px solid rgba(255,255,255,.16); border-radius: 50%; background: var(--moss); color: var(--white); font-family: var(--serif); font-weight: 700; }
.coordinator-card small, .coordinator-card strong { display: block; }
.coordinator-card small { color: #AEBEAF; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.coordinator-card strong { color: var(--white); font-family: var(--serif); font-size: 1.2rem; }
.coordinator-card a { color: #F5C565; font-weight: 700; }
.coordinator-links { display: flex; flex-wrap: wrap; gap: 3px 14px; }
.coverage-note { display: flex; gap: 13px; margin-top: 28px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.05); }
.coverage-note svg { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: var(--honey); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.coverage-note p { margin: 0; color: #C4CFC5; font-size: .84rem; }
.coverage-note strong { color: var(--white); }

.form-card { padding: 26px 20px; border-radius: 24px; background: var(--white); box-shadow: 0 24px 55px rgba(0,0,0,.18); color: var(--charcoal); }
.form-heading { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.form-heading span { color: var(--forest); font-family: var(--serif); font-size: 1.45rem; font-weight: 700; }
.form-heading small { color: var(--muted); font-size: .73rem; }
.field-row { display: grid; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--forest); font-size: .8rem; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #C8D1C9; border-radius: 9px; background: #FFF; color: var(--charcoal); }
.field input, .field select { min-height: 47px; padding: 10px 12px; }
.field textarea { padding: 11px 12px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #89928B; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--moss); outline: 3px solid rgba(82,115,77,.16); }
.field .invalid { border-color: #A43E32; }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: .72rem; line-height: 1.45; }
.error-message { display: block; min-height: 0; margin-top: 4px; color: #A43E32; font-size: .72rem; }
.photo-check { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; color: #4F5D54; cursor: pointer; font-size: .82rem; }
.photo-check input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--forest); }
.form-actions { display: grid; gap: 11px; }
.form-submit { width: 100%; }
.form-note { margin: 12px auto 0; max-width: 430px; color: #717A74; font-size: .7rem; line-height: 1.45; text-align: center; }
.form-status { margin-top: 10px; color: var(--forest); font-size: .8rem; font-weight: 600; text-align: center; }

.faq-shell { max-width: 820px; }
.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 2px; color: var(--forest); cursor: pointer; font-family: var(--serif); font-size: 1.1rem; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--honey-dark); font-family: var(--sans); font-size: 1.3rem; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -2px 36px 20px 2px; color: var(--muted); font-size: .9rem; }

.closing-cta { padding: 43px 0; background: var(--moss); color: var(--white); }
.closing-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.closing-inner h2 { margin-bottom: 7px; color: var(--white); font-size: clamp(1.75rem, 6vw, 2.6rem); }
.closing-inner p { margin: 0; color: #DBE5DA; }
.closing-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.button-light { background: var(--white); color: var(--forest); }
.button-light:hover { background: var(--ivory); }

.site-footer { padding: 50px 0 48px; background: #102D20; color: #C2D0C4; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand { color: var(--white); }
.footer-brand .brand-mark svg { fill: var(--white); }
.footer-brand small { max-width: 270px; color: #AABCAA; }
.footer-grid > div:first-child > p { max-width: 390px; margin: 17px 0 0; color: #9EB09F; font-size: .83rem; }
.footer-contact, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; font-size: .85rem; }
.footer-contact strong, .footer-links strong { margin-bottom: 6px; color: var(--white); font-family: var(--serif); font-size: 1.05rem; }
.footer-contact a, .footer-links a { color: #F0C46D; }
.footer-bottom { display: flex; flex-direction: column; gap: 3px; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: #849B87; font-size: .68rem; }

.reveal, .reveal-delay, .reveal-delay-two { opacity: 1; transform: none; }

@keyframes gentle-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 520px) {
  .hero-actions { flex-direction: row; align-items: center; }
  .form-actions { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 32px; }
  .field-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .closing-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .info-grid, .season-grid { grid-template-columns: 1fr 1fr; }
  .guide-cta-inner { grid-template-columns: 1fr auto; }
}

@media (min-width: 720px) {
  .shell { width: min(100% - 64px, var(--shell)); }
  .narrow-shell { width: min(100% - 64px, 1080px); }
  .header-inner { min-height: 82px; }
  .brand strong { font-size: 1.38rem; }
  .brand small { font-size: .71rem; }
  .header-contact { padding: 10px 14px; border: 1px solid rgba(23,61,43,.22); border-radius: 999px; font-size: .79rem; }
  .hero { padding: 78px 0 82px; }
  .image-frame img { height: 520px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item { justify-content: center; padding: 22px 18px; border-right: 1px solid var(--border); border-bottom: 0; }
  .trust-item:last-child { border-right: 0; }
  .fact-grid { grid-template-columns: repeat(3, 1fr); }
  .fact-item { padding: 20px 24px; border-right: 1px solid var(--border); border-bottom: 0; }
  .fact-item:last-child { border-right: 0; }
  .section { padding: 105px 0; }
  .identify { padding-bottom: 52px; }
  .safety { padding: 0 0 56px; }
  .report { margin-top: 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card { padding: 33px 28px; }
  .safety-card { grid-template-columns: 1.12fr .88fr; align-items: center; padding: 54px; }
  .local-service { padding-bottom: 64px; }
  .local-service-grid { grid-template-columns: .85fr 1.15fr; align-items: start; gap: 52px; padding: 40px 44px; }
  .report-grid { grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); align-items: start; gap: 60px; }
  .report-intro { position: sticky; top: 120px; }
  .footer-grid { grid-template-columns: 1.7fr .65fr .65fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .site-footer { padding-bottom: 38px; }
  .guide-section { padding: 96px 0; }
  .action-grid { grid-template-columns: repeat(3, 1fr); }
  .bee-roles { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .role-row { display: block; padding: 4px 26px; border-right: 1px solid var(--border); border-bottom: 0; }
  .role-row:first-child { padding-left: 0; }
  .role-row:last-child { padding-right: 0; border-right: 0; }
  .honey-safety { grid-template-columns: auto 1fr; align-items: center; padding: 35px 38px; }
  .editorial-figure img { height: 430px; }
  .editorial-split { grid-template-columns: 1fr 1fr; gap: 48px; }
  .editorial-split.reverse .editorial-figure { order: 2; }
  .editorial-split .editorial-figure img { height: 470px; }
}

@media (min-width: 980px) {
  html { scroll-padding-top: 90px; }
  .mobile-nav { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: 29px; }
  .desktop-nav a { position: relative; color: #46544C; font-size: .82rem; font-weight: 600; text-decoration: none; }
  .desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 2px; background: var(--honey); transform: scaleX(0); transition: transform .2s ease; }
  .desktop-nav a:hover::after { transform: scaleX(1); }
  .hero { padding: 48px 0 56px; }
  .hero-grid { grid-template-columns: minmax(0, 48fr) minmax(0, 52fr); align-items: start; gap: 62px; }
  .hero-lead { font-size: 1.12rem; }
  .image-frame img { height: 570px; }
  .honeycomb-one { right: 1.5%; }
  .leaf-sprig { right: -30px; bottom: -48px; width: 130px; }
  .form-card { padding: 38px; }
  .guide-hero { padding: 54px 0 62px; }
  .guide-hero-grid { grid-template-columns: minmax(0, 53fr) minmax(0, 47fr); gap: 65px; }
  .guide-hero .image-frame img { height: 500px; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .season-grid { grid-template-columns: repeat(4, 1fr); }
  .honey-hero { padding: 54px 0 62px; }
  .honey-hero-grid { grid-template-columns: minmax(0, 53fr) minmax(0, 47fr); gap: 68px; }
  .honey-visual { min-height: 520px; }
  .honey-jar { width: 220px; height: 282px; }
  .honey-jar::before { left: 11px; width: 188px; }
  .jar-label { top: 104px; min-height: 100px; font-size: 1.65rem; }
}

@media (max-width: 1099px) {
  .header-whatsapp span { display: none; }
}

@media (max-width: 519px) {
  .header-contact span { display: none; }
  .header-contact { padding: 8px; border: 1px solid rgba(23,61,43,.18); border-radius: 50%; }
  .brand small { max-width: 110px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-actions .text-link { text-align: center; }
}

@media (min-width: 1260px) {
  .hero-grid { gap: 82px; }
}

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