@font-face {
  font-family: "AAAC Passion One";
  src: url("/assets/fonts/passion-one-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AAAC DM Sans";
  src: url("/assets/fonts/dm-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AAAC DM Sans";
  src: url("/assets/fonts/dm-sans-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AAAC DM Sans";
  src: url("/assets/fonts/dm-sans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AAAC DM Sans";
  src: url("/assets/fonts/dm-sans-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AAAC Lato Black";
  src: url("/assets/fonts/lato-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #252525;
  --muted: #6f6a5f;
  --honey: #e7af23;
  --honey-dark: #ca8f0b;
  --cream: #f6efdd;
  --paper: #fffdf7;
  --panel: #f7f5ef;
  --olive: #5d6d3e;
  --line: #e0d6c3;
  --shadow: 0 12px 34px rgba(0, 0, 0, .14);
  --font-body: "AAAC DM Sans", Arial, Helvetica, sans-serif;
  --font-heading: "AAAC Passion One", Impact, "Arial Black", sans-serif;
  --font-link-black: "AAAC Lato Black", "AAAC DM Sans", Arial, Helvetica, sans-serif;
  color: var(--ink);
  font-family: var(--font-body);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.48;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

strong,
b {
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  padding: .65rem 1rem;
  border: 2px solid var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 50px 0 50px;
  pointer-events: none;
}

.brand,
.site-nav,
.menú-toggle {
  pointer-events: auto;
}

.brand img {
  width: 145px;
  height: auto;
}

.site-nav {
  width: min(380px, calc(100vw - 245px));
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 8px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.site-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #1e1e1e;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--honey);
}

.menú-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
}

.menú-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #1f1f1f;
}

main {
  overflow: hidden;
}

section,
.post-detail {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 6vw, 80px);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.display,
.hero h1,
.top-banner h1,
section > h2,
.split h2,
.cta-band h2,
.legal h1,
.post-detail h1 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .95;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 140px 52px 80px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero > img {
  object-position: center center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 22, 15, .56), rgba(25, 22, 15, .22) 47%, rgba(25, 22, 15, .04) 70%);
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  transform: translateY(-44px);
  margin-left: min(8vw, 94px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .28);
}

.home-hero h1 {
  margin: 0 0 18px;
  max-width: 530px;
  font-size: clamp(50px, 6vw, 72px);
}

.home-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.22;
  font-weight: 700;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--honey);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--honey);
  border-radius: 999px;
  padding: .72rem 1.18rem;
  background: var(--honey);
  color: #1e1604;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.chip:hover,
.chip:focus-visible,
.chip.active {
  background: #f3c64c;
  border-color: #f3c64c;
}

.btn.ghost {
  background: #202020;
  border-color: #202020;
  color: #fff;
}

.btn.light {
  background: #fff;
  border-color: #fff;
  color: #1e1604;
}

.btn.disabled {
  background: #e9e4d8;
  border-color: #e9e4d8;
  color: #736b59;
  cursor: not-allowed;
}

.top-banner {
  position: relative;
  height: 365px;
  padding: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ddd5c8;
}

.top-banner img {
  position: absolute;
  inset: -18px;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  max-width: none;
  object-fit: cover;
  filter: blur(7px) saturate(.94);
}

.top-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .18);
}

.top-banner h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 148px 20px 0;
  text-align: center;
  color: #252525;
  font-size: clamp(46px, 5.8vw, 70px);
  text-shadow: none;
}

.mels-banner {
  height: 373px;
}

.mels-banner::after {
  background: rgba(255, 255, 255, .57);
}

.segell-banner {
  height: 452px;
}

.segell-banner h1 {
  max-width: 710px;
}

.segell-banner::after {
  background: rgba(255, 255, 255, .7);
}

.aaac-banner {
  height: 430px;
}

.aaac-page {
  background: #fff;
}

.aaac-page .aaac-banner {
  height: 440px;
}

.aaac-page .aaac-banner img {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
  object-position: center 49%;
}

.aaac-page .aaac-banner::after {
  background: rgba(255, 255, 255, .66);
}

.aaac-page .aaac-banner h1 {
  max-width: 760px;
  margin-top: 166px;
  font-size: clamp(50px, 5.7vw, 74px);
  line-height: .92;
}

.aaac-content {
  background: #fff;
  padding: 72px 24px 0;
}

.aaac-intro,
.aaac-organization {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: clamp(58px, 7vw, 82px);
}

.aaac-intro {
  grid-template-columns: 382px minmax(0, 1fr);
}

.aaac-organization {
  grid-template-columns: minmax(0, 1fr) 435px;
  margin-top: 118px;
}

.aaac-intro > img {
  width: 382px;
  height: 443px;
  object-fit: cover;
  border-radius: 0 22px 10px 10px;
}

.aaac-organization > img {
  width: 435px;
  height: 370px;
  object-fit: cover;
  border-radius: 11px;
}

.aaac-intro h2,
.aaac-organization h2 {
  margin: 0 0 30px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.aaac-intro p,
.aaac-organization p {
  margin: 0 0 24px;
  color: #252525;
  font-size: 18px;
  line-height: 1.36;
}

.aaac-intro strong,
.aaac-organization strong {
  font-weight: 700;
}

.aaac-intro a,
.aaac-organization a:not(.btn) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.aaac-organization .actions {
  margin-top: 36px;
}

.aaac-organization .btn {
  min-width: 140px;
  min-height: 40px;
  padding: .62rem 1.2rem;
  font-size: .9rem;
}

.aaac-partners {
  width: min(100%, 980px);
  min-height: 110px;
  margin: 84px auto 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 34px);
}

.aaac-partners img {
  width: auto;
  max-height: 58px;
  object-fit: contain;
}

.aaac-partners img:first-child {
  max-height: 66px;
  clip-path: inset(0 31% 0 0);
}

.aaac-join {
  position: relative;
  min-height: 370px;
  display: grid;
  place-items: center;
  padding: 82px 24px 72px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(25, 25, 25, .48), rgba(25, 25, 25, .48)),
    url("/assets/images/original/aaac-join-bg.jpg") center 48% / cover;
}

.aaac-join::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: -2px;
  height: 58px;
  background:
    radial-gradient(70% 22px at 38% 22px, #fff 48%, transparent 50%),
    linear-gradient(183deg, #fff 42%, transparent 45%),
    repeating-linear-gradient(-2deg, rgba(255, 255, 255, .9) 0 3px, transparent 4px 24px);
}

.aaac-join > div {
  position: relative;
  z-index: 1;
}

.aaac-join h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.aaac-join .actions {
  justify-content: center;
  margin-top: 38px;
}

.aaac-join .btn {
  min-width: 190px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
  background: #fff;
}

.home-seal {
  position: relative;
  padding: 112px 18px 118px;
  background: #252525;
  color: #fff;
  text-align: center;
}

.home-seal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 50px;
  background:
    radial-gradient(55% 20px at 60% 28px, #fff 48%, transparent 50%),
    linear-gradient(178deg, transparent 44%, #fff 45%),
    repeating-linear-gradient(2deg, transparent 0 18px, rgba(255, 255, 255, .78) 19px 21px);
}

.home-seal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.home-seal h2 {
  margin: 0 auto 26px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: .98;
}

.home-seal p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--honey);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}

.home-seal .object {
  width: min(360px, 52vw);
  margin: 0 auto 34px;
}

.home-seal .actions {
  justify-content: center;
}

.home-why {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(310px, 420px);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  justify-content: center;
  padding: 62px clamp(28px, 7vw, 116px) 76px;
  background: #fff;
}

.home-why-photo {
  width: 100%;
  height: min(600px, 58vw);
  object-fit: cover;
  object-position: 52% center;
  border-radius: 0;
}

.home-why h2 {
  max-width: 560px;
  margin: 0 0 54px;
  font-family: var(--font-heading);
  font-size: clamp(43px, 4.8vw, 62px);
  font-weight: 400;
  line-height: 1.02;
}

.home-why-copy {
  width: 100%;
  margin: 0;
}

.why-list {
  display: grid;
  gap: 48px;
}

.why-list article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.why-list img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  padding: 0;
  border-radius: 50%;
}

.why-list p {
  margin: 0;
  max-width: 540px;
  color: #191919;
  font-size: clamp(20px, 1.75vw, 24px);
  line-height: 1.33;
  font-weight: 400;
}

.split:nth-of-type(even) {
  background: var(--paper);
}

.split h2,
section > h2,
.cta-band h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 68px);
}

.split p,
section > p,
.cta-band p,
.legal p,
.post-detail p {
  font-size: 1.07rem;
}

.object {
  filter: drop-shadow(var(--shadow));
}

.cream {
  background: var(--cream);
}

.segell-intro {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(280px, 360px);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  background: #252525;
  color: #fff;
  padding-left: clamp(78px, 12vw, 150px);
}

.segell-intro h1,
.segell-intro h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(38px, 4.3vw, 52px);
}

.segell-intro p {
  max-width: 560px;
  color: var(--honey);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.23;
  font-weight: 700;
}

.seal-why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 412px);
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
  background: #fff;
}

.seal-why h2 {
  max-width: 520px;
  margin: 0 0 44px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.8vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}

.seal-why > img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border-radius: 14px;
}

.seal-why .why-list p {
  color: #252525;
  font-size: clamp(18px, 1.75vw, 23px);
}

.dark-band {
  background: #252525;
  color: #fff;
  text-align: center;
}

.dark-band .value-grid p {
  color: #252525;
}

.apicultors-hero {
  min-height: 510px;
  place-items: center;
  text-align: center;
  padding-top: 135px;
}

.apicultors-hero::after {
  background: rgba(255, 255, 255, .62);
}

.apicultors-hero .hero-copy {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100vw - 36px));
  margin: 0 auto;
  transform: translateY(54px);
}

.apicultors-hero h1 {
  margin: 0 auto;
  color: #6e6e6e;
  font-size: clamp(42px, 5.7vw, 66px);
  text-shadow: 0 2px 10px rgba(255, 255, 255, .7);
}

.apicultors-hero p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #484848;
  font-size: 1.18rem;
  font-weight: 700;
}

.apicultors-hero .actions {
  justify-content: center;
}

.feature-grid,
.news-grid,
.value-grid,
.producer-grid,
.steps {
  display: grid;
  gap: 22px;
}

.feature-grid,
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.news-card,
.producer-card,
.steps article,
.private-box,
.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid img {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.feature-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--honey-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid h2,
.value-grid p {
  margin: 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.home-benefits {
  padding: 74px 0 72px;
  background: #fff;
  text-align: center;
}

.home-benefits > h2 {
  margin: 0 0 76px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 400;
}

.home-benefits .value-grid {
  gap: 0;
  width: 100%;
}

.home-benefits .value-grid article {
  min-height: 282px;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 28px 44px 24px;
  border-right: 3px solid #252525;
}

.home-benefits .value-grid article:last-child {
  border-right: 0;
}

.home-benefits .value-grid img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  padding: 0;
  border-radius: 50%;
}

.home-benefits .value-grid h3 {
  max-width: 290px;
  margin: 28px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 400;
  line-height: 1.16;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  background: var(--olive);
  color: #fff;
}

.cta-band p {
  max-width: 700px;
}

.cta-band .btn.ghost {
  background: transparent;
  border-color: #fff;
}

.home-finder,
.home-support {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  text-align: center;
  background: #252525;
  color: #fff;
}

.home-finder {
  background:
    linear-gradient(rgba(32, 32, 32, .78), rgba(32, 32, 32, .78)),
    url("/assets/images/original/banner-mels.jpg") center / cover;
}

.home-finder::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2px;
  height: 56px;
  background:
    radial-gradient(70% 22px at 66% 36px, #fff 48%, transparent 50%),
    linear-gradient(177deg, transparent 40%, #fff 43%),
    repeating-linear-gradient(2deg, transparent 0 20px, rgba(255, 255, 255, .9) 21px 24px);
}

.home-finder > *,
.home-support > * {
  position: relative;
  z-index: 1;
}

.home-finder h2,
.home-support h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 60px);
  color: #fff;
}

.home-finder p {
  max-width: 850px;
  margin: 24px auto 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.34;
  font-weight: 600;
}

.home-finder .actions,
.home-support .actions {
  justify-content: center;
  margin-top: 26px;
}

.home-finder .btn,
.home-support .btn {
  min-width: 210px;
}

.home-support {
  min-height: 390px;
  background:
    linear-gradient(rgba(37, 37, 37, .18), rgba(37, 37, 37, .18)),
    url("/assets/images/original/support-bees.jpeg") center / cover;
}

.news-card {
  overflow: hidden;
  padding: 0;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card div {
  padding: 18px;
}

.news-card time {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.news-card h3,
.producer-card h3,
.steps h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: .4rem 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.news-card a,
.producer-card a,
.steps a {
  color: var(--honey-dark);
  font-weight: 700;
}

.home-news {
  padding: 58px clamp(24px, 7vw, 134px) 62px;
  background: #252525;
  color: #fff;
}

.home-news > h2 {
  margin: 0 0 58px;
  color: #fff;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(40px, 3.7vw, 46px);
  font-weight: 400;
}

.home-news .news-grid {
  width: min(100%, 918px);
  margin: 0 auto;
  gap: 24px;
}

.home-news .news-card {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #171717;
  box-shadow: none;
  height: 406px;
}

.home-news .news-card img {
  height: 163px;
  aspect-ratio: 1.78 / 1;
}

.home-news .news-card div {
  height: 243px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px 34px 36px;
}

.home-news .news-card time {
  color: #202020;
  font-size: .92rem;
  font-weight: 400;
}

.home-news .news-card h3 {
  margin: 24px 0 22px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.news-like {
  display: block;
  padding-top: 18px;
  border-top: 1px solid #d8d8d8;
  color: #f13333;
  font-size: 1.25rem;
  line-height: 1;
}

.directory {
  background: #fff;
  padding-top: 67px;
}

.directory-inner {
  max-width: 870px;
  margin: 0 auto;
}

.filter-panel {
  display: block;
  max-width: 595px;
  margin: 0 auto 28px;
}

.filter-panel h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.chip {
  min-height: 36px;
  padding: .45rem .9rem;
  background: #fff;
  border-color: #d6cab4;
  font-size: .92rem;
}

.producer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.directory .producer-grid {
  margin-top: 130px;
}

.apicultors-page .split h2 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 56px);
}

.apicultors-page .split {
  grid-template-columns: minmax(0, 640px) minmax(280px, 420px);
}

.producer-card {
  padding: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: #fbfaf7;
}

.producer-card img {
  width: 100%;
  aspect-ratio: 385 / 218;
  object-fit: cover;
  background: #eee9dc;
}

.producer-body {
  padding: 15px 18px 0;
}

.province {
  margin: 0 0 4px;
  color: var(--olive);
  font-weight: 700;
}

.producer-card h3 {
  margin-top: 0;
}

.producer-card a,
.producer-card span {
  display: inline-flex;
  margin: 12px 18px 0;
}

.faq details {
  max-width: 920px;
  margin: 10px auto;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apicultors-benefits {
  position: relative;
  background: #fff;
  text-align: center;
}

.apicultors-benefits::before {
  content: "";
  position: absolute;
  inset: -28px 0 auto;
  height: 54px;
  background:
    radial-gradient(55% 20px at 50% 32px, #fff 48%, transparent 50%),
    linear-gradient(178deg, transparent 43%, #fff 45%);
}

.apicultors-benefits h2 {
  margin: 0 auto 54px;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.05;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr .9fr .9fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.benefit-grid article {
  min-height: 220px;
  padding: 28px 30px;
  border-radius: 12px;
  background: #f0eee4;
  text-align: left;
}

.benefit-grid h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 400;
}

.benefit-grid p {
  margin: 0;
}

.benefit-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.steps > h2,
.steps > p,
.steps > .actions {
  grid-column: 1 / -1;
}

.steps article {
  padding: 22px;
}

.steps b {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  font-size: 1.35rem;
}

.form-section {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  background: #fff;
}

.local-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.local-form label,
.private-box label {
  font-weight: 700;
}

.local-form input,
.local-form select,
.local-form textarea,
.private-box input {
  width: 100%;
  margin-top: .35rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.wide,
.form-message {
  grid-column: 1 / -1;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.checkbox input {
  width: auto;
}

.form-message {
  font-weight: 700;
  color: var(--olive);
}

.private-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding-top: 160px;
  color: #fff;
  overflow: hidden;
}

.private-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}

.private-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(37, 37, 37, .74), rgba(37, 37, 37, .36));
}

.private-hero > div {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.private-hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  line-height: .95;
}

.private-hero p:not(.section-label) {
  max-width: 720px;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 700;
}

.private-notice {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #252525;
  color: #fff;
  padding-block: 24px;
}

.private-notice strong {
  color: var(--honey);
  font-size: 1.1rem;
}

.private-notice p {
  margin: 0;
}

.private-page {
  background:
    linear-gradient(180deg, rgba(246, 239, 221, .86) 0, rgba(255, 253, 247, .94) 360px),
    var(--paper);
}

.private-page .private-hero {
  min-height: 310px;
  padding-top: 104px;
  padding-bottom: 42px;
  opacity: 1;
  transform: none;
}

.private-page .private-notice {
  margin-bottom: 14px;
  opacity: 1;
  transform: none;
}

.role-access {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 0 clamp(18px, 6vw, 80px) 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(37, 37, 37, .07);
  opacity: 1;
  transform: none;
}

.role-access h2 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.role-access p {
  margin: 0;
}

.role-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.role-actions .btn {
  min-height: 40px;
  padding: .6rem 1rem;
}

.role-actions .btn.active {
  border-color: #252525;
  box-shadow: inset 0 0 0 2px #252525;
}

.role-access-denied {
  border-color: #c86f13;
  background: #fff8ec;
}

.admin-entry-dashboard {
  background: linear-gradient(180deg, #fffdf7 0, #fbfaf7 100%);
}

.admin-entry-dashboard .dashboard-top {
  align-items: center;
  margin-bottom: 10px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 175, 35, .18), rgba(37, 37, 37, .05) 48%, rgba(255, 255, 255, .96) 49%),
    #fff;
  box-shadow: 0 16px 34px rgba(37, 37, 37, .08);
}

.member-dashboard {
  background: #fff;
  padding-top: 28px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-top h2 {
  margin-bottom: 8px;
}

.simple-member-dashboard {
  background: linear-gradient(180deg, #fffdf7 0, #fbfaf7 100%);
}

.simple-member-dashboard .dashboard-top {
  align-items: center;
  margin-bottom: 10px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 175, 35, .16), rgba(93, 109, 62, .09) 48%, rgba(255, 255, 255, .96) 49%),
    #fff;
  box-shadow: 0 16px 34px rgba(37, 37, 37, .08);
}

.simple-member-dashboard .dashboard-top h2 {
  font-size: clamp(28px, 3.2vw, 40px);
}

.simple-member-dashboard [data-member-meta] {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: .65rem 1rem;
  background: #e7f2d6;
  color: #41531f;
  font-weight: 700;
  white-space: nowrap;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.summary-grid article,
.data-card,
.notice-card,
.order-form {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
}

.summary-grid article {
  padding: 22px;
}

.simple-summary article {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0, #fbfaf7 100%);
}

.simple-summary article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--honey);
}

.simple-summary article:nth-child(2)::before {
  background: var(--olive);
}

.simple-summary article:nth-child(3)::before {
  background: var(--ink);
}

.simple-summary article:nth-child(4)::before {
  background: var(--honey-dark);
}

.summary-grid span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.summary-grid strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
}

.private-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.member-section-menu {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 247, .94);
  box-shadow: 0 14px 34px rgba(37, 37, 37, .08);
  backdrop-filter: blur(12px);
}

.member-section-menu button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1rem;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.member-section-menu button.active,
.member-section-menu button[aria-selected="true"] {
  background: var(--honey);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(189, 129, 0, .18);
}

.member-section[hidden] {
  display: none;
}

.member-section.active {
  display: block;
}

.member-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 20px;
  margin-bottom: 22px;
}

.member-home-main,
.member-home-side,
.section-panel-head {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(37, 37, 37, .07);
}

.member-home-main {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(231, 175, 35, .18), rgba(255, 255, 255, .92) 48%),
    #fff;
}

.member-home-main h3,
.section-panel-head h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: .95;
}

.member-home-main p:not(.section-label) {
  max-width: 780px;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
}

.member-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.member-home-side {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 20px;
}

.member-home-side dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.member-home-side dt {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.member-home-side dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.member-home-summary article small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.section-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
  padding: 24px;
}

.private-panel {
  display: none;
}

.private-panel.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 22px;
  align-items: start;
}

.private-panel > h3,
.orders-layout > div > h3 {
  margin-top: 0;
}

.data-card,
.notice-card,
.order-form {
  padding: 24px;
}

.wide-card {
  grid-column: 1 / -1;
}

.data-card h3,
.notice-card h3,
.order-form h3,
.private-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
}

.data-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 0;
}

.data-card dt {
  color: var(--muted);
  font-weight: 700;
}

.data-card dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.panel-seal {
  width: min(100%, 360px);
  justify-self: center;
  filter: drop-shadow(var(--shadow));
}

.orders-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 22px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--cream);
  font-size: .9rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.order-form {
  display: grid;
  gap: 14px;
}

.order-form label {
  font-weight: 700;
}

.order-form .checkbox {
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 253, 247, .72);
}

.order-form .checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.profile-form,
.census-form {
  align-content: start;
}

.simple-census-panel {
  margin-top: 8px;
}

.simple-census-panel.active {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}

.simple-census-panel .data-card,
.simple-census-panel .order-form {
  background: #fff;
}

.simple-summary strong {
  overflow-wrap: anywhere;
}

.census-form input[type="file"] {
  background: #fff;
}

.quota-orders {
  margin-top: 28px;
}

.quota-orders.data-card {
  padding: 34px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quota-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 37, 37, .16);
}

.quota-head h3 {
  color: #fff;
}

.quota-head .section-label {
  color: var(--honey);
}

.quota-head .status-pill {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.quota-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.quota-grid article {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 37, 37, .05);
}

.quota-grid span,
.seal-type-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.quota-grid strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.seal-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seal-type-grid label {
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0, #fbfaf7 100%);
}

.seal-type-grid input {
  align-self: end;
  font-size: 1.15rem;
  font-weight: 900;
}

.seal-order-form {
  margin-bottom: 20px;
  background: #fff;
}

.order-total {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  background: #f6efdd;
}

.quota-meter {
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 37, 37, .05);
}

.quota-meter > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.quota-meter strong {
  color: var(--ink);
}

.quota-meter-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee9dc;
}

.quota-meter-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--olive), var(--honey));
  transition: width .35s ease;
}

.workflow-panel {
  margin-top: 28px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.public-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
}

.review-list,
.review-stack {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-item strong,
.review-item span {
  display: block;
}

.review-item span,
.review-item small {
  color: var(--muted);
  font-weight: 700;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.review-actions .btn {
  min-height: 36px;
  padding: .55rem .8rem;
  font-size: .78rem;
}

.directory-search {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 700;
}

.directory-search input {
  width: 100%;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

.producer-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .65rem;
  border-radius: 999px;
  background: #f5e5b3;
  color: #5a4300;
  font-weight: 700;
}

.badge.ok {
  background: #e7f2d6;
  color: #42551f;
}

.badge.waiting {
  background: #eee9dc;
  color: #645c4e;
}

.management-dashboard {
  background: #fff;
}

.management-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .8fr) minmax(180px, .8fr) auto;
  gap: 14px;
  align-items: end;
  margin: 0 0 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.management-actions .form-message {
  margin: 0;
}

.quota-config {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, .6fr));
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.quota-config label {
  font-weight: 700;
}

.quota-config input {
  width: 100%;
  margin-top: .35rem;
  padding: .78rem .82rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font: inherit;
}

.management-filters label {
  font-weight: 700;
}

.management-filters input,
.management-filters select {
  width: 100%;
  margin-top: .35rem;
  padding: .86rem .9rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font: inherit;
}

.management-layout {
  display: block;
}

.management-list,
.member-detail {
  min-width: 0;
}

.list-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 12px;
}

.list-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 400;
}

.list-head p {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.management-table {
  min-width: 980px;
}

.management-table td:first-child strong {
  display: block;
  font-size: 1.05rem;
}

.management-table small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}

.row-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.row-action:hover,
.row-action.active {
  background: var(--honey);
}

.member-detail {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.member-detail-page {
  background: linear-gradient(180deg, #fffdf7 0, #fbfaf7 100%);
}

.member-detail-page .dashboard-top {
  align-items: center;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.member-detail-full {
  position: static;
  max-width: 980px;
  margin: 0 auto;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
}

.detail-card h3,
.detail-card h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.detail-card h3 {
  font-size: 2rem;
}

.detail-card h4 {
  font-size: 1.45rem;
}

.detail-card p {
  margin: 0;
}

.detail-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.detail-stat {
  padding: 13px;
  border-radius: 8px;
  background: var(--cream);
}

.detail-stat span {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.detail-stat strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.detail-list div {
  display: grid;
  grid-template-columns: minmax(105px, .45fr) minmax(0, 1fr);
  gap: 10px;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 700;
}

.detail-list dd {
  margin: 0;
  font-weight: 700;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.compact-list strong {
  display: block;
}

.compact-list span {
  color: var(--muted);
  font-weight: 700;
}

.management-edit-form {
  display: grid;
  gap: 12px;
}

.management-edit-form label {
  font-weight: 700;
}

.management-edit-form input,
.management-edit-form select {
  width: 100%;
  margin-top: .35rem;
  padding: .78rem .82rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font: inherit;
}

.detail-empty {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfaf7;
  font-weight: 700;
}

.legal,
.post-detail {
  max-width: 980px;
  margin: auto;
  background: #fff;
}

.legal h1,
.post-detail h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.post-detail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer {
  background: #252525;
  color: #fff;
  padding: 68px 24px 34px;
}

.footer-inner {
  width: min(100%, 1222px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 854px) minmax(260px, 300px);
  gap: clamp(36px, 4vw, 68px);
  align-items: start;
}

.site-footer h2 {
  margin: -14px 0 12px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.site-footer p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
}

.site-footer a {
  color: #fff;
}

.footer-partner-card {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px 20px;
  overflow: hidden;
}

.footer-partner-card img {
  width: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-partner-card img:first-child {
  max-height: 66px;
  transform: translateY(3px);
  clip-path: inset(0 31% 0 0);
}

.footer-public-logos {
  width: min(100%, 699px);
  height: 70px;
  object-fit: contain;
  margin: 26px 0 18px;
}

.footer-rights {
  font-weight: 700;
}

.footer-links {
  font-family: var(--font-link-black);
  font-weight: 900;
  text-decoration-thickness: 1px;
}

.footer-links span {
  display: inline-block;
  margin: 0 10px;
  color: #fff;
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  text-align: center;
  font-weight: 700;
}

.footer-contact {
  padding-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

@media (max-width: 1280px) {
  .footer-inner {
    width: min(100%, 854px);
    grid-template-columns: 1fr;
  }

  .footer-contact {
    padding-top: 10px;
  }
}

.social-icon {
  width: 39px;
  height: 39px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .site-header {
    padding: 22px 18px 0;
    align-items: flex-start;
  }

  .brand img {
    width: 112px;
  }

  .menú-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    width: min(300px, calc(100vw - 36px));
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 40px;
  }

  .hero {
    min-height: 700px;
    padding: 120px 18px 60px;
  }

  .home-hero .hero-copy {
    margin-left: 0;
    padding-top: 42px;
  }

  .top-banner,
  .segell-banner,
  .aaac-banner {
    height: 330px;
  }

  .aaac-page .aaac-banner {
    height: 390px;
  }

  .aaac-page .aaac-banner h1 {
    max-width: 680px;
    margin-top: 130px;
    font-size: clamp(42px, 8vw, 62px);
  }

  .aaac-content {
    padding-top: 58px;
  }

  .aaac-intro,
  .aaac-organization {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
    gap: 34px;
  }

  .aaac-intro > img,
  .aaac-organization > img {
    width: min(100%, 435px);
    height: auto;
    aspect-ratio: 382 / 443;
    justify-self: center;
  }

  .aaac-organization {
    margin-top: 76px;
  }

  .aaac-organization > img {
    aspect-ratio: 435 / 370;
  }

  .aaac-partners {
    justify-content: center;
    flex-wrap: wrap;
    margin: 58px auto 62px;
  }

  .aaac-join {
    min-height: 330px;
  }

  .split,
  .segell-intro,
  .home-why,
  .seal-why,
  .form-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-top,
  .role-access,
  .private-notice {
    display: block;
  }

  .role-actions {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .simple-member-dashboard .dashboard-top {
    display: grid;
    gap: 16px;
  }

  .summary-grid,
  .private-panel.active,
  .orders-layout,
  .management-layout,
  .workflow-grid,
  .public-profile-form,
  .quota-grid,
  .seal-type-grid,
  .quota-config {
    grid-template-columns: 1fr 1fr;
  }

  .management-filters {
    grid-template-columns: 1fr 1fr;
  }

  .member-detail {
    position: static;
  }

  .panel-seal {
    justify-self: start;
  }

  .home-why-photo {
    height: 360px;
    border-radius: 0;
  }

  .feature-grid,
  .news-grid,
  .producer-grid,
  .steps,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-band {
    display: block;
  }

  .filter-panel {
    display: block;
  }

  .filters {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  section,
  .post-detail {
    padding: 46px 18px;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .home-hero p:not(.eyebrow) {
    font-size: 18px;
  }

  .home-seal {
    padding: 76px 18px 90px;
  }

  .home-seal .object {
    width: min(300px, 78vw);
  }

  .why-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .top-banner h1 {
    font-size: 42px;
  }

  .aaac-page .aaac-banner {
    height: 340px;
  }

  .aaac-page .aaac-banner h1 {
    max-width: 350px;
    margin-top: 112px;
    font-size: 43px;
  }

  .aaac-content {
    padding: 46px 28px 0;
  }

  .aaac-intro,
  .aaac-organization {
    gap: 26px;
  }

  .aaac-intro h2,
  .aaac-organization h2 {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .aaac-intro p,
  .aaac-organization p {
    font-size: 16px;
    line-height: 1.42;
  }

  .aaac-organization .actions {
    margin-top: 24px;
  }

  .aaac-partners {
    gap: 18px 24px;
  }

  .aaac-partners img {
    max-height: 48px;
  }

  .aaac-join {
    min-height: 300px;
    padding: 78px 22px 58px;
  }

  .aaac-join h2 {
    font-size: 38px;
  }

  .feature-grid,
  .news-grid,
  .producer-grid,
  .steps,
  .value-grid,
  .benefit-grid,
  .summary-grid,
  .private-panel.active,
  .orders-layout,
  .management-layout,
  .management-filters,
  .workflow-grid,
  .public-profile-form,
  .quota-grid,
  .seal-type-grid,
  .quota-config,
  .detail-grid,
  .footer-inner,
  .local-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 42px 18px 34px;
  }

  .footer-partner-card {
    min-height: 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px;
  }

  .footer-public-logos {
    height: auto;
  }

  .footer-credit {
    margin-top: 42px;
    text-align: left;
  }

  .member-section-menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .member-section-menu button {
    flex: 0 0 auto;
  }

  .member-home-grid {
    grid-template-columns: 1fr;
  }

  .member-quick-actions .btn {
    width: 100%;
  }

  .quota-head {
    display: block;
    padding: 20px;
  }

  .quota-orders.data-card {
    padding-top: 24px;
  }

  .quota-meter > div:first-child {
    display: block;
  }

  .seal-type-grid label {
    min-height: 0;
  }

  .private-page .private-hero {
    min-height: 380px;
    padding-top: 112px;
  }

  .private-tabs .chip {
    width: auto;
  }

  .data-card dl {
    grid-template-columns: 1fr;
  }

  .detail-list div {
    grid-template-columns: 1fr;
  }

  .management-table,
  .census-history-table,
  .seal-orders-table,
  .management-table tbody,
  .census-history-table tbody,
  .seal-orders-table tbody,
  .management-table tr,
  .census-history-table tr,
  .seal-orders-table tr,
  .management-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .census-history-table td,
  .seal-orders-table td {
    display: grid;
    width: 100%;
    min-width: 0;
  }

  .management-table thead,
  .census-history-table thead,
  .seal-orders-table thead {
    display: none;
  }

  .management-table tr,
  .census-history-table tr,
  .seal-orders-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .management-table tr:last-child,
  .census-history-table tr:last-child,
  .seal-orders-table tr:last-child {
    border-bottom: 0;
  }

  .management-table td,
  .census-history-table td,
  .seal-orders-table td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
    border-bottom: 0;
  }

  .management-table td::before,
  .census-history-table td::before,
  .seal-orders-table td::before {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    font-size: .72rem;
  }

  .management-table td:nth-child(1)::before {
    content: "Soci";
  }

  .management-table td:nth-child(2)::before {
    content: "Contacte";
  }

  .management-table td:nth-child(3)::before {
    content: "Ubicació";
  }

  .management-table td:nth-child(4)::before {
    content: "Cens";
  }

  .management-table td:nth-child(5)::before {
    content: "Estat";
  }

  .management-table td:nth-child(6)::before {
    content: "Comandes";
  }

  .management-table td:nth-child(7) {
    display: block;
  }

  .management-table td:nth-child(7)::before {
    content: "";
  }

  .management-table .row-action {
    width: 100%;
  }

  .census-history-table td:nth-child(1)::before {
    content: "Any";
  }

  .census-history-table td:nth-child(2)::before {
    content: "Arnes";
  }

  .census-history-table td:nth-child(3)::before {
    content: "Presentat";
  }

  .census-history-table td:nth-child(4)::before {
    content: "Estat";
  }

  .census-history-table td:nth-child(5)::before {
    content: "Document";
  }

  .seal-orders-table td:nth-child(1)::before {
    content: "Comanda";
  }

  .seal-orders-table td:nth-child(2)::before {
    content: "Data";
  }

  .seal-orders-table td:nth-child(3)::before {
    content: "Tipus";
  }

  .seal-orders-table td:nth-child(4)::before {
    content: "Unitats";
  }

  .seal-orders-table td:nth-child(5)::before {
    content: "Kg";
  }

  .seal-orders-table td:nth-child(6)::before {
    content: "Estat";
  }

  .census-form .btn {
    white-space: normal;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .aaac-page .actions {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }

  .aaac-page .btn {
    width: auto;
  }

  .aaac-join .actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Public page alignment pass */
.segell-intro {
  position: relative;
  min-height: 475px;
  padding-top: 88px;
  padding-bottom: 104px;
}

.segell-intro::after,
.apicultor-dark::after,
.support-steps::after,
.segell-finder::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 48px;
  background:
    radial-gradient(60% 18px at 55% 26px, #fff 48%, transparent 50%),
    linear-gradient(178deg, transparent 43%, #fff 45%),
    repeating-linear-gradient(2deg, transparent 0 18px, rgba(255, 255, 255, .82) 19px 21px);
}

.segell-intro .object {
  width: min(330px, 100%);
  justify-self: center;
}

.seal-why {
  padding: 86px clamp(26px, 8vw, 122px) 98px;
}

.seal-why > img {
  max-width: 410px;
  border-radius: 0;
  box-shadow: none;
}

.segell-value {
  padding: 96px clamp(28px, 8vw, 128px) 118px;
  background: #252525;
  color: #fff;
  text-align: center;
}

.segell-value h2 {
  margin: 0 auto 56px;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 58px);
}

.segell-value .value-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.segell-value .value-grid p {
  display: grid;
  place-items: center;
  min-height: 150px;
  margin: 0;
  padding: 26px;
  background: transparent;
  border: 0;
  border-left: 3px solid #fff;
  border-radius: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.08;
}

.segell-value .value-grid p:first-child {
  border-left: 0;
}

.segell-finder {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 86px 24px 112px;
  background:
    linear-gradient(rgba(22, 22, 22, .74), rgba(22, 22, 22, .74)),
    url("/assets/images/original/banner-mels.jpg") center / cover;
  color: #fff;
  text-align: center;
}

.segell-finder h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 54px);
}

.segell-finder p {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
}

.segell-finder .actions {
  justify-content: center;
  margin-top: 30px;
}

.segell-faq {
  padding: 96px 24px;
  background:
    linear-gradient(rgba(245, 244, 239, .78), rgba(245, 244, 239, .78)),
    url("/assets/images/original/support-bees.jpeg") center / cover;
}

.faq-panel {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
}

.faq-panel h2 {
  margin: 0 0 28px;
  text-align: center;
}

.mels-page .directory {
  padding: 58px 18px 86px;
}

.mels-page .directory-inner {
  max-width: 970px;
}

.mels-page .filter-panel {
  max-width: 560px;
  margin-bottom: 46px;
}

.mels-page .directory-search {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.mels-page .directory .producer-grid {
  margin-top: 0;
  gap: 34px 28px;
}

.mels-page .producer-card {
  display: grid;
  grid-template-columns: 48% 1fr;
  min-height: 235px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #f2eee4;
  box-shadow: none;
}

.mels-page .producer-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.mels-page .producer-body {
  display: grid;
  align-content: start;
  padding: 28px 26px 10px;
}

.mels-page .producer-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
}

.mels-page .producer-card a,
.mels-page .producer-card span {
  align-self: end;
  width: fit-content;
  margin: 8px 26px 28px;
  color: #111;
  font-weight: 900;
  text-decoration: underline;
}

.apicultor-intro {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(280px, 380px);
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 96px);
  padding: 78px clamp(28px, 8vw, 126px);
  background: #fff;
}

.apicultor-intro h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.8vw, 62px);
}

.apicultor-intro p {
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.32;
  font-weight: 700;
}

.apicultor-intro .object {
  width: min(360px, 100%);
}

.apicultor-dark {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  gap: 32px;
  align-items: end;
  padding: 86px clamp(28px, 9vw, 136px) 112px;
  background: #252525;
  color: #fff;
}

.apicultor-dark h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 4.5vw, 58px);
}

.apicultor-dark p {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 700;
  line-height: 1.28;
}

.apicultor-dark .actions {
  justify-content: flex-end;
}

.apicultors-benefits {
  padding-top: 90px;
}

.benefit-grid {
  max-width: 1030px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-grid article,
.benefit-grid img {
  min-height: 250px;
  border-radius: 0;
}

.benefit-grid article {
  display: grid;
  align-content: center;
  background: #efede4;
}

.benefit-grid img:nth-of-type(1) {
  grid-row: span 2;
  min-height: 520px;
}

.apicultor-steps-intro {
  padding: 76px 24px 42px;
  background: #fff;
  text-align: center;
}

.apicultor-steps-intro h2 {
  margin: 0 auto 26px;
  max-width: 760px;
  font-size: clamp(42px, 5vw, 62px);
}

.apicultor-steps-intro .actions {
  justify-content: center;
}

.timeline-panel {
  max-width: 1060px;
  margin: 0 auto 52px;
  padding: 50px clamp(22px, 5vw, 56px);
  border-radius: 18px;
  background: #f1eee5;
}

.timeline-panel h2 {
  margin: 0 0 44px;
  text-align: center;
  font-size: clamp(36px, 4vw, 52px);
}

.timeline-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.timeline-steps.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #222;
}

.timeline-steps article {
  position: relative;
  padding: 0 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.timeline-steps b {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  font-size: 1.45rem;
}

.timeline-steps h3 {
  margin: 18px 0 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
}

.timeline-steps p {
  margin: 0 auto;
  max-width: 210px;
  font-size: 14px;
  font-weight: 700;
}

.timeline-panel .actions {
  justify-content: center;
  margin-top: 36px;
}

.apicultor-final {
  min-height: 250px;
}

.news-page {
  background: #252525;
}

.news-listing {
  min-height: 100vh;
  padding: 190px 18px 76px;
  background:
    linear-gradient(rgba(36, 36, 36, .84), rgba(36, 36, 36, .84)),
    url("/assets/images/original/support-bees.jpeg") center / cover fixed;
  color: #fff;
}

.news-listing-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.news-listing h1 {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.news-listing p {
  margin: 0 auto 52px;
  max-width: 520px;
  color: #fff;
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 34px;
}

.news-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 170px;
  background: #fff;
  color: #111;
  text-align: left;
}

.news-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-row > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 0 12px;
  padding: 28px 34px 18px;
}

.news-row time,
.news-row a,
.news-row .news-like {
  font-size: 13px;
}

.news-row h2 {
  grid-column: 1 / -1;
  margin: 20px 0 24px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.news-row a {
  padding-top: 12px;
  border-top: 1px solid #d8d8d8;
  color: #111;
  font-weight: 700;
}

.news-row .news-like {
  align-self: end;
  padding-top: 12px;
  border-top: 1px solid #d8d8d8;
  color: #f13333;
  font-size: 22px;
}

.support-banner {
  height: 360px;
}

.support-banner img {
  filter: saturate(.78) contrast(.96);
}

.support-banner::after {
  background: rgba(255, 255, 255, .52);
}

.support-banner h1 {
  max-width: 690px;
  margin-top: 98px;
  text-align: left;
  font-size: clamp(42px, 4.6vw, 58px);
}

.support-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 470px);
  justify-content: center;
  gap: 60px;
  padding: 64px 24px 78px;
  background: #fff;
}

.support-intro img {
  width: 280px;
  height: 205px;
  object-fit: cover;
  border-radius: 10px;
}

.support-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.2vw, 42px);
}

.support-intro p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.support-steps {
  position: relative;
  padding: 72px 24px 116px;
  background:
    linear-gradient(rgba(36, 36, 36, .82), rgba(36, 36, 36, .82)),
    url("/assets/images/original/aaac-join-bg.jpg") center / cover;
  color: #fff;
  text-align: center;
}

.support-steps h2 {
  margin: 0 0 58px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 48px);
}

.support-step-line {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.support-step-line::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #fff;
}

.support-step-line article {
  position: relative;
}

.support-step-line b {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--honey);
  color: #1c1609;
  font-size: 24px;
}

.support-step-line h3 {
  margin: 20px auto 12px;
  max-width: 210px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
}

.support-step-line p {
  max-width: 235px;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.support-collab {
  padding: 90px 24px;
  background: #fff;
  text-align: center;
}

.support-collab h2 {
  max-width: 690px;
  margin: 0 auto 38px;
  font-size: clamp(34px, 4vw, 48px);
}

.signup-banner {
  height: 170px;
}

.signup-banner img {
  filter: none;
  object-position: center 38%;
}

.signup-banner::after {
  background: rgba(23, 23, 23, .42);
}

.signup-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 126px;
  background: #fff;
  text-align: center;
}

.signup-content h1 {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.8vw, 46px);
  font-weight: 400;
}

.signup-alert {
  margin: 0 auto 42px;
  max-width: 430px;
  font-size: 14px;
  line-height: 1.5;
}

.signup-alert p {
  margin: 0 0 10px;
}

.signup-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 76px 72px;
  background: #f0eee5;
  text-align: left;
}

.signup-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
}

.signup-card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.4;
}

.signup-card small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

@media (max-width: 900px) {
  .segell-value .value-grid,
  .benefit-grid,
  .timeline-steps,
  .timeline-steps.four,
  .support-step-line {
    grid-template-columns: 1fr 1fr;
  }

  .apicultor-intro,
  .apicultor-dark,
  .support-intro {
    grid-template-columns: 1fr;
  }

  .apicultor-dark .actions {
    justify-content: flex-start;
  }

  .news-row,
  .mels-page .producer-card {
    grid-template-columns: 1fr;
  }

  .news-row img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .segell-intro,
  .seal-why,
  .apicultor-intro,
  .apicultor-dark,
  .support-steps,
  .support-collab {
    padding-left: 18px;
    padding-right: 18px;
  }

  .segell-value .value-grid,
  .benefit-grid,
  .timeline-steps,
  .timeline-steps.four,
  .support-step-line {
    grid-template-columns: 1fr;
  }

  .segell-value .value-grid p {
    min-height: 110px;
    border-left: 0;
    border-top: 2px solid #fff;
  }

  .timeline-steps::before,
  .support-step-line::before {
    display: none;
  }

  .support-banner h1 {
    text-align: center;
  }

  .signup-card {
    padding: 38px 24px;
  }
}

/* ═══════════════════════════════════════════════════════
   Fallback: si JS no carrega, les seccions han de ser visibles
   (FIX: [data-reveal] no pot deixar contingut invisible)
═══════════════════════════════════════════════════════ */
@media (scripting: none) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   Pàgina de login
═══════════════════════════════════════════════════════ */
.login-page .site-header {
  position: relative;
  background: var(--cream);
  padding: 24px 40px;
}

.login-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 6vw, 80px) clamp(18px, 6vw, 80px);
  min-height: 60vh;
  background: var(--panel);
}

.login-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(32px, 5vw, 52px);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}

.login-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.login-form label {
  font-weight: 600;
  font-size: .875rem;
  color: var(--ink);
}

.login-form input {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  transition: border-color .2s;
  width: 100%;
}

.login-form input:focus {
  outline: none;
  border-color: var(--honey);
}

.login-form .btn {
  width: 100%;
  margin-top: .5rem;
}

.login-form .btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.login-form .form-message.error {
  color: #b91c1c;
}

.login-links {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .875rem;
  color: var(--muted);
  text-align: center;
}

.login-links a {
  color: var(--honey-dark);
  text-decoration: none;
  font-weight: 600;
}


