@charset "UTF-8";
:root {
  --font-sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-editorial: "Fraunces", Georgia, serif;
  --font-mono: "Geist", system-ui, sans-serif;
  --paper: #F4EFE3;
  --paper-2: #ECE5D2;
  --surface: #FFFFFF;
  --line: #E8E5DB;
  --line-2: #D6D2C5;
  --ink: #1A2E22;
  --ink-2: #4F5B52;
  --ink-3: #8A8E83;
  --green-1: #2C3D27;
  --green-2: #3D5630;
  --green-3: #4F6C3E;
  --green-4: #6B8A5A;
  --green-leaf: #4F6C3E;
  --sand: #E8DFC9;
  --sand-2: #D6C9A8;
  --terracotta: #C9876A;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-1: 0 1px 0 rgba(31,58,40,.04), 0 1px 2px rgba(31,58,40,.04);
  --shadow-2: 0 1px 0 rgba(31,58,40,.05), 0 12px 28px -14px rgba(31,58,40,.16);
  --shadow-3: 0 18px 60px -22px rgba(31,58,40,.24);
}

body#index #wrapper {
  padding: 0;
  background: transparent;
}
body#index #wrapper > .container {
  max-width: none;
  padding: 0;
}
body#index .breadcrumb {
  display: none;
}
body#index main {
  padding-top: 0;
}

body:not(#index) #wrapper {
  background: var(--paper);
}
body:not(#index) #wrapper > .container {
  max-width: 1280px;
}
body:not(#index) .breadcrumb {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
}
body:not(#index) .breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
body:not(#index) .breadcrumb li {
  display: inline;
}
body:not(#index) .breadcrumb li::before {
  content: "";
}
body:not(#index) .breadcrumb li + li::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--ink-3);
}
body:not(#index) .breadcrumb a {
  color: var(--ink-2);
}
body:not(#index) .breadcrumb a:hover {
  color: var(--green-3);
  text-decoration: none;
}
body:not(#index) .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  margin: 1.5rem 0 2rem;
  color: var(--ink);
  letter-spacing: -0.028em;
}
body:not(#index) #left-column, body:not(#index) #right-column {
  display: none;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--green-3);
}

h1, h2, h3, .h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.028em;
  margin: 0;
}

.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

.h-section .accent {
  color: var(--green-3);
  font-weight: 400;
}

.eyebrow,
.eco-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-3);
  font-weight: 600;
}

.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

.squiggle {
  display: block;
  width: 64px;
  height: 8px;
  margin: 14px 0 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 8' fill='none' stroke='%234A8A52' stroke-width='2' stroke-linecap='round'><path d='M2 4 Q 8 0 14 4 T 26 4 T 38 4 T 50 4 T 62 4'/></svg>") no-repeat;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.container--wide {
  max-width: 1440px;
}

.container--narrow {
  max-width: 980px;
}

.eco-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.row {
  display: flex;
}

.row.center {
  align-items: center;
}

.row.between {
  justify-content: space-between;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-48 {
  gap: 48px;
}

.eco-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

a:hover .eco-arrow,
.btn:hover .eco-arrow,
.eco-btn:hover .eco-arrow {
  transform: translateX(3px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn svg {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--green-3);
  color: #fff;
}

.btn--primary:hover {
  background: var(--green-2);
  color: #fff;
}

.btn--leaf {
  background: var(--green-leaf);
  color: #fff;
}

.btn--leaf:hover {
  background: var(--green-3);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  height: 44px;
  padding: 0 18px;
}

.btn--ghost:hover {
  color: var(--green-3);
  background: transparent;
}

.btn--outline {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 0 22px;
}

.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--green-3);
  height: auto;
  padding: 0;
  background: transparent;
  font-size: 14px;
}

.btn--inline:hover {
  color: var(--green-2);
}

.btn--inline svg {
  transition: transform 0.2s ease;
}

.btn--inline:hover svg {
  transform: translateX(2px);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: var(--paper-2);
}

.eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.eco-btn:hover {
  text-decoration: none;
}

.eco-btn--lg {
  padding: 15px 28px;
  font-size: 15px;
}

.eco-btn--dark {
  background: var(--green-1);
  color: #fff;
}

.eco-btn--dark:hover {
  background: var(--green-2);
  color: #fff;
}

.eco-btn--green {
  background: var(--green-3);
  color: #fff;
}

.eco-btn--green:hover {
  background: var(--green-2);
  color: #fff;
}

.eco-btn--ghost {
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  padding-inline: 4px;
}

.eco-btn--ghost:hover {
  color: var(--green-3);
}

.eco-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.eco-btn--outline:hover {
  background: var(--ink);
  color: #fff;
}

.eco-btn--primary {
  background: var(--green-3);
  color: #fff;
}

.eco-btn--primary:hover {
  background: var(--green-2);
  color: #fff;
}

.eco-icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco-icon--filled {
  fill: currentColor;
  stroke: none;
}

.eco-stars {
  color: var(--terracotta);
  letter-spacing: 1.5px;
}

.photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--line);
}

.pill--leaf {
  background: rgba(123, 175, 103, 0.14);
  color: var(--green-2);
  border-color: transparent;
}

.pill--sand {
  background: var(--sand);
  color: #6e5a2c;
  border-color: transparent;
}

.pill--terracotta,
.pill--terra {
  background: rgba(201, 135, 106, 0.16);
  color: #8a4a2e;
  border-color: transparent;
}

.duration-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 6px 12px 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(31, 58, 40, 0.1);
}

.duration-badge svg {
  color: var(--green-3);
}

.theme-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  display: grid;
  place-items: center;
  color: var(--green-3);
  box-shadow: 0 2px 8px rgba(31, 58, 40, 0.1);
}

.soft-icon {
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--green-3);
  flex-shrink: 0;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--green-3);
  flex-shrink: 0;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: var(--green-3);
  opacity: 0.25;
  animation: live-dot-pulse 1.8s ease-out infinite;
}

@keyframes live-dot-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}

.lang-switch a {
  color: var(--ink-2);
  font-weight: 500;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.lang-switch a:hover {
  color: var(--green-3);
}

.lang-switch a.active {
  color: var(--ink);
  font-weight: 600;
}

.info-bar {
  background: var(--paper-2);
  color: var(--ink-2);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-bar .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.info-bar .item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.info-bar .item .ico {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: rgba(74, 108, 62, 0.1);
  display: grid;
  place-items: center;
  color: var(--green-3);
  flex-shrink: 0;
}

.info-bar .item .lbl {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2px;
  font-weight: 500;
}

.info-bar .item .val {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 768px) {
  .info-bar .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--green-1);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .brand {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo-text .sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.site-nav {
  display: none;
  gap: 4px;
}

.site-nav a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-3);
}

.site-nav a.active,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.active::after,
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--green-3);
  border-radius: 2px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-burger {
  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.site-burger__bar {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  pointer-events: none;
}
.site-burger[aria-expanded=true] {
  background: var(--ink);
  border-color: var(--ink);
}
.site-burger[aria-expanded=true] .site-burger__bar {
  background: #fff;
}
.site-burger[aria-expanded=true] .site-burger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-burger[aria-expanded=true] .site-burger__bar:nth-child(2) {
  opacity: 0;
}
.site-burger[aria-expanded=true] .site-burger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1023px) {
  .site-header__actions .lang-switch,
  .site-header__actions .btn--primary {
    display: none;
  }
  .site-nav {
    display: flex;
    position: fixed;
    inset: 72px 0 0 0;
    flex-direction: column;
    background: var(--paper);
    padding: 2rem 1.5rem 3rem;
    gap: 0;
    transform: translateY(-110%);
    transition: transform 0.28s ease;
    z-index: 30;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    visibility: hidden;
  }
  .site-nav a {
    display: block;
    padding: 16px 4px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .site-nav a:last-of-type {
    border-bottom: none;
  }
  .site-nav a.active, .site-nav a.is-active {
    color: var(--green-3);
  }
  .site-nav a::after {
    display: none;
  }
  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  body.eco-nav-open {
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .site-nav {
    display: inline-flex;
  }
  .site-burger {
    display: none;
  }
}
.site-footer {
  background: var(--green-1);
  color: rgba(255, 255, 255, 0.85);
  padding: 96px 0 36px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(123, 175, 103, 0.18), transparent 70%);
  pointer-events: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  text-decoration: none;
}

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

.site-footer h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2.4fr;
  gap: 80px;
  position: relative;
}

.footer__signature {
  max-width: 360px;
}

.footer__signature .logo {
  color: #fff;
}

.footer__signature .logo-mark {
  color: var(--green-leaf);
}

.footer__signature .logo-text .brand {
  color: #fff;
}

.footer__signature .logo-text .sub {
  color: rgba(255, 255, 255, 0.5);
}

.footer__pull {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  margin: 28px 0 28px;
  letter-spacing: -0.005em;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.25s ease;
}

.footer__social a:hover {
  background: var(--green-leaf);
  border-color: var(--green-leaf);
  color: #fff;
  transform: translateY(-2px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer__letter {
  margin-top: 72px;
  padding: 40px 48px;
  background: #fff;
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: auto 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer__letter-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  color: var(--green-3);
  flex-shrink: 0;
}

.footer__letter-stamp-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

.footer__letter-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}

.footer__letter-text p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
  max-width: 48ch;
}

.footer__letter-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 12px;
  color: var(--ink-3);
}

.footer__letter-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__letter-meta li span {
  color: var(--green-3);
  font-weight: 700;
}

.footer__letter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__letter-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer__letter-field:focus-within {
  border-color: var(--green-3);
  background: #fff;
}

.footer__letter-field-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.footer__letter-field input {
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
}

.footer__letter-field input::placeholder {
  color: var(--ink-3);
}

.footer__letter-submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: var(--green-3);
  color: #fff;
  height: 48px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, gap 0.2s ease;
}

.footer__letter-submit:hover {
  background: var(--green-2);
  gap: 12px;
  color: #fff;
}

.site-footer .baseline {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
}

.baseline__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.baseline__sep {
  color: rgba(255, 255, 255, 0.25);
}

.baseline__right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.baseline__right a {
  font-size: 12.5px;
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer__letter {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 28px;
  }
  .site-footer .baseline {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-container--ps-hooks {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: transform, opacity;
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal=left] {
  transform: translateX(-32px);
}

[data-reveal=right] {
  transform: translateX(32px);
}

[data-reveal=zoom] {
  transform: scale(0.96);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger].is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

[data-reveal-stagger].is-visible > *:nth-child(2) {
  transition-delay: 0.15s;
}

[data-reveal-stagger].is-visible > *:nth-child(3) {
  transition-delay: 0.25s;
}

[data-reveal-stagger].is-visible > *:nth-child(4) {
  transition-delay: 0.35s;
}

[data-reveal-stagger].is-visible > *:nth-child(5) {
  transition-delay: 0.45s;
}

[data-reveal-stagger].is-visible > *:nth-child(6) {
  transition-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@keyframes ecoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.eco-float {
  animation: ecoFloat 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .eco-float {
    animation: none;
  }
}
.eco-home {
  position: relative;
  overflow-x: clip;
}

.eco-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.eco-decor__leaf {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
  transform-origin: center;
  max-width: none;
}

.eco-decor__leaf--hero-right {
  top: 60px;
  right: -40px;
  width: 200px;
  transform: rotate(-12deg);
}

.eco-decor__leaf--reassurance-left {
  top: 720px;
  left: -60px;
  width: 240px;
}

.eco-decor__leaf--organise-right {
  top: 1900px;
  right: -50px;
  width: 260px;
}

.eco-decor__leaf--jules-left {
  top: 2700px;
  left: -40px;
  width: 220px;
}

@media (max-width: 767px) {
  .eco-decor {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .eco-decor__leaf {
    width: auto;
    max-width: 140px;
  }
  .eco-decor__leaf--hero-right {
    right: -20px;
  }
  .eco-decor__leaf--reassurance-left {
    left: -30px;
  }
  .eco-decor__leaf--organise-right {
    right: -25px;
  }
  .eco-decor__leaf--jules-left {
    left: -20px;
  }
}
.hero {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0 100px;
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--green-3);
  position: relative;
}

.hero__eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: rgba(74, 138, 82, 0.3);
  animation: ecoPulse 2.4s ease-in-out infinite;
}

@keyframes ecoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
}

.hero h1 .green {
  color: var(--green-3);
  font-weight: 500;
}

.hero h1 .it {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  color: var(--green-2);
}

.hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 0 28px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}

.hero__badge svg {
  color: var(--green-3);
  flex-shrink: 0;
}

.hero__group-link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}

.hero__group-link svg {
  color: var(--ink-3);
  flex-shrink: 0;
}

.hero__group-link a {
  color: var(--green-1);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}

.hero__group-link a:hover {
  color: var(--green-leaf);
}

.hero__visual {
  position: relative;
  height: 620px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

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

.hero__chip {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 10px 18px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-2);
}

.hero__weather {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  box-shadow: 0 12px 32px -16px rgba(31, 58, 40, 0.32);
  color: var(--ink);
  z-index: 2;
  min-width: 230px;
}

.hero__weather-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFE9B8 0%, #FFD37A 100%);
  color: #B16A1A;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero__weather-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero__weather-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-3);
  font-weight: 600;
}

.hero__weather-dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: var(--green-3);
  position: relative;
  flex-shrink: 0;
}

.hero__weather-dot::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: var(--green-3);
  opacity: 0.35;
  animation: weather-pulse 1.8s ease-out infinite;
}

@keyframes weather-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.hero__weather-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__weather-temp {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.hero__weather-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.hero__weather-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.3;
}

.hero__weather-detail {
  font-size: 11.5px;
  color: var(--ink-3);
}

.hero__booking {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--r-md);
  box-shadow: 0 18px 44px -18px rgba(31, 58, 40, 0.45), 0 4px 12px -4px rgba(31, 58, 40, 0.18);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

.hero__booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hero__booking-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-3);
  font-weight: 600;
}

.hero__booking-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

.hero__booking-fields {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 8px;
  background: rgba(31, 58, 40, 0.04);
  padding: 6px;
  border-radius: var(--r-md);
}

.hero__booking-field {
  appearance: none;
  border: 1px solid rgba(31, 58, 40, 0.14);
  background: #fff;
  text-align: left;
  padding: 10px 12px 10px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 10px;
  min-width: 0;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  font-family: inherit;
}

.hero__booking-field .lbl,
.hero__booking-field .val {
  grid-column: 1;
}

.hero__booking-field .hero__booking-chev {
  grid-column: 2;
  grid-row: 1/span 2;
  align-self: center;
  color: var(--ink-3);
  flex-shrink: 0;
  transition: transform 0.18s ease, color 0.18s ease;
}

.hero__booking-field:hover {
  background: var(--paper);
  border-color: var(--green-3);
  box-shadow: 0 1px 0 rgba(31, 58, 40, 0.04);
}

.hero__booking-field:hover .hero__booking-chev {
  color: var(--green-1);
  transform: translateY(1px);
}

.hero__booking-field:focus-visible {
  outline: 2px solid var(--green-3);
  outline-offset: 2px;
}

.hero__booking-field .lbl {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.hero__booking-field .val {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__booking-field .val svg {
  color: var(--green-3);
  flex-shrink: 0;
}

.hero__booking-field .val .placeholder {
  color: var(--ink-3);
  font-weight: 400;
}

.hero__booking-cta {
  width: 100%;
  height: 48px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 64px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__visual {
    height: 480px;
  }
  .hero__weather {
    min-width: 0;
    padding: 10px 14px;
    gap: 10px;
  }
  .hero__weather-icon {
    width: 36px;
    height: 36px;
  }
  .hero__weather-temp {
    font-size: 24px;
  }
  .hero__booking {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }
  .hero__booking-fields {
    grid-template-columns: 1fr 1fr;
  }
  .hero__booking-field:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(40px, 9vw, 56px);
  }
  .hero__visual {
    height: 420px;
  }
  .hero__weather {
    right: 16px;
    top: 16px;
  }
  .hero__chip {
    left: 16px;
    top: 16px;
    padding: 8px 14px 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .hero__weather {
    display: none;
  }
  .hero__booking-fields {
    grid-template-columns: 1fr;
  }
}
.reassurance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: var(--paper);
}

.reassurance__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.reassurance__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reassurance__item .label {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

.reassurance__item .label strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .reassurance__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .reassurance__item:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .reassurance {
    padding: 24px 0;
  }
  .reassurance__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .reassurance__item {
    scroll-snap-align: start;
  }
  .reassurance__item:nth-child(n+4) {
    display: flex;
  }
}
section.block {
  padding: 120px 0;
}

section.block--tight {
  padding: 80px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}

.section-head__title {
  max-width: 720px;
}

.section-head__title .lede {
  margin-top: 18px;
}

.section-head__cta {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  section.block {
    padding: 72px 0;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
  }
}
.offers__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.offer {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
}

.offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.offer__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-2);
}

.offer__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer:hover .offer__photo img {
  transform: scale(1.04);
}

.offer__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.15;
}

.offer__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 16px;
  flex: 1;
}

.offer__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.offer__meta .price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.offer__meta .price small {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 400;
}

.offer--feature {
  grid-row: span 2;
}

.offer--feature .offer__photo {
  aspect-ratio: auto;
  flex: 1;
  min-height: 360px;
}

.offer--feature .offer__body {
  padding: 28px 30px 30px;
}

.offer--feature .offer__title {
  font-size: 32px;
}

.offer--feature .offer__desc {
  font-size: 15.5px;
}

.offer__pricing {
  margin: 18px 0 18px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.offer__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}

.offer__price-row strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.offer__price-row--alt {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  border-bottom: 0;
  color: var(--green-2);
  font-weight: 500;
}

.offer__price-row--alt strong {
  color: var(--green-2);
}

.offer__pricing--alt {
  margin-top: -6px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}

.offer__pricing--alt .offer__price-row {
  border-bottom: 0;
  padding: 6px 0;
  color: var(--ink-2);
  font-size: 13.5px;
}

.offer__pricing--alt .offer__price-row strong {
  font-size: 16px;
  color: var(--green-2);
}

.offer__pricing-label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 4px;
}

.offer__price-note {
  font-size: 12px;
  font-style: italic;
  color: var(--ink-3);
}

.price-soft {
  font-size: 13.5px;
  color: var(--ink-3);
  font-style: italic;
}

.offer-secondary {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  gap: 0;
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--green-3);
  box-shadow: 0 14px 36px -22px rgba(31, 58, 40, 0.22);
}

.offer-secondary__photo {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
}

.offer-secondary__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-secondary__body {
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.offer-secondary__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-secondary__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.offer-secondary__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 4px 0 0;
  max-width: 56ch;
}

.offer-secondary__price {
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-3);
  font-weight: 500;
  margin-top: 6px;
}

.offer-secondary__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-2);
  border-left: 1px solid var(--line);
  white-space: nowrap;
  transition: color 0.2s ease, gap 0.2s ease;
}

.offer-secondary:hover .offer-secondary__cta {
  color: var(--green-3);
  gap: 12px;
}

.offer-secondary__cta svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.offer-secondary:hover .offer-secondary__cta svg {
  transform: translateX(3px);
}

.offers__disclaimer {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-style: italic;
}

.offers__disclaimer svg {
  color: var(--green-3);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .offers__grid {
    grid-template-columns: 1fr 1fr;
  }
  .offer--feature {
    grid-column: span 2;
    grid-row: auto;
  }
  .offer--feature .offer__photo {
    min-height: 280px;
  }
}
@media (max-width: 768px) {
  .offers__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offer--feature {
    grid-column: auto;
  }
  .offer--feature .offer__title {
    font-size: 26px;
  }
  .offer-secondary {
    grid-template-columns: 1fr;
  }
  .offer-secondary__photo {
    height: 200px;
  }
  .offer-secondary__cta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 28px;
    justify-content: flex-end;
  }
}
.organise {
  background: var(--paper-2);
  color: var(--ink);
  position: relative;
}

.organise__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.organise__intro {
  padding-top: 8px;
  position: sticky;
  top: 96px;
}

.organise__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.organise__cta-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-style: italic;
}

.organise__sub {
  margin: 28px 0 28px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--green-leaf);
  border-radius: 6px;
}

.organise__sub-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.organise__sub-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.organise__audiences {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-row:hover {
  border-color: var(--green-3);
  transform: translateX(4px);
  box-shadow: 0 8px 24px -16px rgba(31, 58, 40, 0.25);
}

.audience-row:hover .audience-row__arrow {
  transform: translateX(4px);
  color: var(--green-1);
}

.audience-row__ico {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--paper-2);
  color: var(--green-1);
}

.audience-row__body {
  min-width: 0;
}

.audience-row__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.audience-row__desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

.audience-row__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 4px;
  white-space: nowrap;
}

.audience-row__price-label {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.audience-row__price strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.audience-row__price-sub {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
  font-style: italic;
}

.audience-row__arrow {
  color: var(--ink-3);
  transition: transform 0.2s ease, color 0.2s ease;
}

.audience-row--featured {
  background: linear-gradient(180deg, #fff 0%, color-mix(in oklab, var(--terracotta) 5%, #fff) 100%);
  border-color: color-mix(in oklab, var(--terracotta) 35%, var(--line));
}

.audience-row--featured .audience-row__ico {
  background: color-mix(in oklab, var(--terracotta) 14%, #fff);
  color: var(--terracotta);
}

.audience-row__pill {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 4px 10px;
  background: var(--terracotta);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
}

@media (max-width: 1024px) {
  .organise__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .organise__intro {
    position: static;
  }
}
@media (max-width: 768px) {
  .audience-row {
    grid-template-columns: 44px 1fr auto;
    grid-template-areas: "ico body arrow" "ico price arrow";
    gap: 12px;
    padding: 16px;
  }
  .audience-row__ico {
    width: 44px;
    height: 44px;
    grid-area: ico;
  }
  .audience-row__body {
    grid-area: body;
  }
  .audience-row__price {
    grid-area: price;
    text-align: left;
  }
  .audience-row__arrow {
    grid-area: arrow;
  }
}
.amiens {
  background: var(--paper);
  position: relative;
}

.amiens__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.amiens__content {
  max-width: 520px;
}

.amiens__pull {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.35;
  color: var(--green-2);
  margin: 28px 0 0;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.amiens__visual {
  position: relative;
  height: 540px;
}

.amiens__photo {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
}

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

.amiens__photo--main {
  top: 0;
  right: 0;
  width: 70%;
  height: 78%;
}

.amiens__photo--sec {
  bottom: 0;
  left: 0;
  width: 50%;
  height: 60%;
  border: 6px solid var(--paper);
}

.amiens__stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.amiens__stat .num {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--green-3);
  line-height: 1;
}

.amiens__stat .lbl {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .amiens__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .amiens__visual {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .amiens__visual {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amiens__photo {
    position: static;
    width: 100%;
    height: 240px;
  }
  .amiens__photo--sec {
    border: 0;
  }
  .amiens__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.jules {
  background: var(--paper-2);
}

.jules__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
}

.jules__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

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

.jules__photo-note {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(20, 20, 20, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-style: italic;
  padding: 6px 10px;
  border-radius: 100px;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
}

.jules__body {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jules__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 24px 0 32px;
  text-wrap: pretty;
}

.jules__quote::before {
  content: "« ";
  color: var(--green-3);
}

.jules__quote::after {
  content: " »";
  color: var(--green-3);
}

.jules__byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.jules__byline .name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.jules__byline .role {
  font-size: 13px;
  color: var(--ink-3);
}

.jules__cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .jules__card {
    grid-template-columns: 1fr;
  }
  .jules__photo {
    aspect-ratio: 3/2;
  }
  .jules__body {
    padding: 36px 32px;
  }
  .jules__quote {
    font-size: 24px;
  }
}
.locator {
  background: var(--paper);
  padding-top: 96px;
  padding-bottom: 110px;
}

.locator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.locator__note {
  margin: 28px 0 36px;
  padding: 18px 22px;
  background: rgba(74, 138, 82, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 2px solid var(--green-leaf);
}

.locator__note-ico {
  color: var(--green-3);
  flex-shrink: 0;
}

.locator__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.locator__list {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.locator__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.locator__filter {
  appearance: none;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-2);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.locator__filter:hover {
  color: var(--ink);
  border-color: var(--ink-3);
}

.locator__filter.is-active {
  background: var(--green-3);
  border-color: var(--green-3);
  color: #fff;
}

.partner-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  border-color: var(--green-3);
  box-shadow: 0 6px 20px -12px rgba(31, 58, 40, 0.18);
}

.partner-card.is-active {
  border-color: var(--green-2);
  background: #fff;
  box-shadow: 0 0 0 1px var(--green-2) inset, 0 8px 28px -16px rgba(31, 58, 40, 0.25);
}

.partner-card.is-hidden {
  display: none;
}

.partner-card__photo {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}

.partner-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.partner-card:hover .partner-card__photo img {
  transform: scale(1.05);
}

.partner-card__photo-num {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(31, 58, 40, 0.85);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.partner-card.is-active .partner-card__photo-num {
  background: var(--green-3);
}

.partner-card__body {
  flex: 1;
  min-width: 0;
}

.partner-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.partner-card__head h4 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.partner-card__body p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.partner-card__meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 12px;
  color: var(--ink-3);
}

.partner-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.partner-card__meta svg {
  color: var(--green-3);
}

.locator__more {
  margin-top: 10px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.locator__more:hover {
  border-color: var(--ink);
  background: var(--paper-2);
}

.locator__more svg {
  transition: transform 0.18s ease;
}

.locator__more:hover svg {
  transform: translateX(2px);
}

.locator__map {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.locator__map-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -20px rgba(31, 58, 40, 0.25);
}

.locator__map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.locator__map-bg .maplibregl-canvas-container,
.locator__map-bg .maplibregl-canvas {
  border-radius: var(--r-md);
}

.locator__map-bg .maplibregl-ctrl-attrib {
  font-size: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-3);
}

.locator__map-bg .maplibregl-ctrl-attrib a {
  color: var(--green-3);
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  appearance: none;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.map-pin > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100px 100px 100px 4px;
  rotate: -45deg;
  background: var(--surface);
  color: var(--green-1);
  font-size: 12px;
  font-weight: 700;
  border: 1.5px solid var(--green-1);
  box-shadow: 0 6px 14px -6px rgba(31, 58, 40, 0.45);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.map-pin > span > * {
  rotate: 45deg;
}

.map-pin:hover > span {
  transform: scale(1.08);
}

.map-pin.is-active > span,
.map-pin:focus-visible > span {
  background: var(--green-1);
  color: #fff;
  transform: scale(1.12);
}

.map-pin.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  background: var(--green-1);
  opacity: 0.12;
  transform: translate(-50%, -55%);
  animation: pinPulse 1.6s ease-out infinite;
  z-index: -1;
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -55%) scale(0.6);
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -55%) scale(1.6);
    opacity: 0;
  }
}
.map-pin--start {
  cursor: default;
}

.map-pin--start > span {
  rotate: 0deg;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: var(--terracotta);
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px -8px rgba(201, 135, 106, 0.7), 0 0 0 4px rgba(201, 135, 106, 0.18);
}

.map-pin--start > span > * {
  rotate: 0deg;
}

.map-pin__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.map-pin--producteur > span {
  background: #4A8A52;
  color: #fff;
  border-color: #fff;
}

.map-pin--resto > span {
  background: #C9876A;
  color: #fff;
  border-color: #fff;
}

.map-pin--pause > span {
  background: #D4A574;
  color: #fff;
  border-color: #fff;
}

.map-pin--atelier > span {
  background: #5C7A8C;
  color: #fff;
  border-color: #fff;
}

.locator__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.legend-dot--start {
  background: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 135, 106, 0.2);
}

.legend-dot--producteur {
  background: #4A8A52;
}

.legend-dot--resto {
  background: #C9876A;
}

.legend-dot--pause {
  background: #D4A574;
}

.legend-dot--atelier {
  background: #5C7A8C;
}

.locator__legend-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-3);
  font-style: italic;
}

.map-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-100% - 26px));
  width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px 14px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.25), 0 4px 12px -4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  pointer-events: auto;
}

.map-popup[hidden] {
  display: none;
}

.map-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.map-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: 4px;
}

.map-popup__close:hover {
  background: var(--paper-2);
  color: var(--ink);
}

.map-popup__cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--green-1);
  margin-bottom: 6px;
}

.map-popup__title {
  font-family: var(--font-editorial);
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}

.map-popup__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 12px;
}

@media (max-width: 1024px) {
  .locator__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .locator__map {
    position: static;
  }
  .locator__map-inner {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 768px) {
  .locator {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .locator__filters {
    gap: 6px;
  }
  .locator__filter {
    font-size: 12.5px;
    padding: 7px 12px;
  }
  .partner-card {
    padding: 14px;
  }
}
.families__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.family {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.family:hover {
  transform: translateY(-3px);
}

.family__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.family__body {
  padding: 20px 22px 24px;
}

.family__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--ink);
}

.family__desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 12px;
}

.family__pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .families__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .families__grid {
    grid-template-columns: 1fr;
  }
}
.eco-values {
  background: #fff;
  border-top: 1px solid #E8E5DB;
  padding: 36px 0 40px;
}

.eco-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .eco-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.eco-value {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  justify-content: center;
}

.eco-value__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #F4EFE3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eco-value__icon .eco-icon {
  width: 24px;
  height: 24px;
  color: #4F6C3E;
  stroke-width: 1.8;
}

.eco-value h3 {
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  margin: 4px 0 6px;
  color: #2C3D27;
}

.eco-value p {
  font-size: 13px;
  line-height: 1.55;
  color: #4F5B52;
  margin: 0;
  max-width: 240px;
}

.ecologik-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 32px);
  color: var(--ink);
}

.ecologik-page__hero {
  margin-bottom: clamp(32px, 5vw, 56px);
}
.ecologik-page__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 clamp(16px, 2vw, 24px);
}

.ecologik-page__intro {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}

.ecologik-page__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.ecologik-page__section h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 16px;
}
.ecologik-page__section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.ecologik-page__section p:last-child {
  margin-bottom: 0;
}

.ecologik-page__faq {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
.ecologik-page__faq > h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0 0 clamp(20px, 3vw, 32px);
}

.ecologik-page__faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ecologik-page__faq-entry {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ecologik-page__faq-entry[open] {
  border-color: var(--green-3);
  background: var(--paper);
}
.ecologik-page__faq-entry > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px 16px 48px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.ecologik-page__faq-entry > summary::-webkit-details-marker {
  display: none;
}
.ecologik-page__faq-entry > summary::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green-3);
  border-bottom: 2px solid var(--green-3);
  transform: translateY(-65%) rotate(-45deg);
  transition: transform 0.2s ease;
}
.ecologik-page__faq-entry > summary:hover {
  color: var(--green-2);
}
.ecologik-page__faq-entry[open] > summary::before {
  transform: translateY(-35%) rotate(45deg);
}
.ecologik-page__faq-entry > p {
  margin: 0;
  padding: 0 20px 18px 48px;
  color: var(--ink-2);
  line-height: 1.6;
  font-size: 15px;
}

.ecologik-page__cta {
  margin-top: clamp(40px, 5vw, 56px);
  text-align: center;
}
.ecologik-page__cta .btn {
  background: var(--green-2);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ecologik-page__cta .btn:hover {
  background: var(--green-1);
  transform: translateY(-1px);
}

.eco-page-list__editorial,
.eco-partners-page__editorial {
  background: var(--paper-2);
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.eco-page-list__editorial .ecologik-page__sections,
.eco-page-list__editorial .ecologik-page__faq,
.eco-partners-page__editorial .ecologik-page__sections,
.eco-partners-page__editorial .ecologik-page__faq {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 32px);
  padding-right: clamp(20px, 4vw, 32px);
}

.eco-stepper-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eco-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 12px 14px;
  background: #F4EFE3;
  border-radius: 12px;
  border: 1px solid #E8E5DB;
}
.eco-stepper__label strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1A2E22;
}
.eco-stepper__label small {
  display: block;
  font-size: 11.5px;
  color: #4F5B52;
  margin-top: 2px;
}
.eco-stepper__ctrls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.eco-stepper__ctrls button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #E8E5DB;
  color: #1A2E22;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  line-height: 1;
}
.eco-stepper__ctrls button:hover {
  background: #E8EEDF;
  border-color: #4F6C3E;
}
.eco-stepper__ctrls button:active {
  transform: scale(0.95);
}
.eco-stepper__ctrls input[type=number] {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #1A2E22;
  -moz-appearance: textfield;
}
.eco-stepper__ctrls input[type=number]::-webkit-outer-spin-button, .eco-stepper__ctrls input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.eco-map {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1rem;
  background: #e8efe5;
  border: 1px solid #E8E5DB;
  box-shadow: 0 2px 12px rgba(15, 58, 44, 0.06);
}
.eco-map .maplibregl-popup-content {
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.4;
}
.eco-map .maplibregl-popup-content strong {
  color: #1A2E22;
}
.eco-map .maplibregl-ctrl-attrib {
  font-size: 11px;
}

.eco-offer-page {
  background: #F4EFE3;
  --aside-w: 380px;
}

.eco-offer-hero {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.eco-offer-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 35, 0.05) 0%, rgba(31, 42, 35, 0.65) 65%, rgba(31, 42, 35, 0.85) 100%);
  z-index: 0;
}

.eco-offer-hero__inner {
  position: relative;
  z-index: 1;
  padding-block: 3rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eco-offer-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
  line-height: 1.05;
  color: #fff;
}

.eco-offer-hero__tagline {
  margin: 0;
  font-size: 17px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.eco-offer-hero__facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 1rem;
}

.eco-offer-hero__facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
}

.eco-offer-hero__facts li > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.eco-offer-hero__facts li strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.eco-offer-hero__fact-icon {
  font-size: 1.4rem;
  flex: none;
}

.eco-offer-hero__cta {
  align-self: flex-start;
}

.eco-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.eco-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.eco-breadcrumb a:hover {
  text-decoration: underline;
}

.eco-breadcrumb [aria-current=page] {
  color: #fff;
  font-weight: 600;
}

.eco-offer-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .eco-offer-body {
    grid-template-columns: minmax(0, 1fr) var(--aside-w);
    gap: 3rem;
    align-items: start;
  }
}
.eco-offer-body__main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.eco-offer-body__aside {
  position: relative;
}

@media (min-width: 1024px) {
  .eco-offer-body__aside {
    position: sticky;
    top: 1.5rem;
  }
}
.eco-offer-section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  margin: 0 0 1rem;
  color: #1A2E22;
}

.eco-prose {
  color: #4F5B52;
  line-height: 1.55;
  font-size: 1.05rem;
}

.eco-prose p {
  margin-block: 0 1rem;
}

.eco-prose ul, .eco-prose ol {
  padding-left: 1.2rem;
  margin-block: 0 1rem;
}

.eco-offer-highlights__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .eco-offer-highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eco-offer-highlights li {
  background: #F4EFE3;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eco-offer-highlights__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.eco-offer-highlights h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Fraunces", Georgia, serif;
  color: #1A2E22;
}

.eco-offer-highlights p {
  margin: 0;
  color: #4F5B52;
  font-size: 0.95rem;
}

.eco-meeting-point {
  background: #F4EFE3;
  border-left: 4px solid #2C3D27;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eco-meeting-point__name {
  margin: 0;
  font-size: 1.1rem;
}

.eco-meeting-point__address {
  margin: 0;
  color: #4F5B52;
}

.eco-meeting-point__note {
  margin: 0;
  font-size: 0.9rem;
  color: #4F5B52;
}

.eco-meeting-point__map {
  align-self: flex-start;
  color: #2C3D27;
  font-weight: 600;
  text-decoration: none;
}
.eco-meeting-point__map:hover {
  text-decoration: underline;
}

.eco-offer-partners__legal {
  background: rgba(79, 108, 62, 0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #4F5B52;
  margin-bottom: 1rem;
}

.eco-offer-partners__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .eco-offer-partners__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.eco-partner-card {
  background: #fff;
  border: 1px solid #E8E5DB;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eco-partner-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
}

.eco-partner-card p {
  margin: 0;
  color: #4F5B52;
  font-size: 0.95rem;
}

.eco-partner-card__note {
  font-style: italic;
  color: #2C3D27;
  font-size: 0.88rem;
}

.eco-booking-card {
  background: #fff;
  border: 1px solid #E8E5DB;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 12px 28px -14px rgba(31, 58, 40, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eco-booking-card__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
}

.eco-booking-card__price {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
}

.eco-booking-card__price strong {
  color: #2C3D27;
  font-weight: 700;
}

.eco-booking-card__price span {
  color: #4F5B52;
  font-size: 0.95rem;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
}

.eco-booking-card__price-child {
  display: block;
  font-size: 0.85rem;
  color: #4F5B52;
  margin-top: 0.25rem;
}

.eco-booking-card__empty {
  background: rgba(79, 108, 62, 0.15);
  padding: 1rem;
  border-radius: 14px;
  margin: 0;
  color: #4F5B52;
}

.eco-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.eco-booking-form__field {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eco-booking-form__field legend {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  color: #1A2E22;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.eco-booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.88rem;
  color: #4F5B52;
}

.eco-booking-form input[type=text],
.eco-booking-form input[type=email],
.eco-booking-form input[type=tel],
.eco-booking-form input[type=number],
.eco-booking-form textarea {
  border: 1px solid #E8E5DB;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  background: #fff;
  color: #1A2E22;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eco-booking-form input:focus,
.eco-booking-form textarea:focus {
  outline: none;
  border-color: #2C3D27;
  box-shadow: 0 0 0 3px rgba(44, 61, 39, 0.15);
}

.eco-booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.eco-booking-form__check {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.eco-booking-form__slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.eco-slot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #E8E5DB;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  flex-direction: row;
  font-size: 0.9rem;
}

.eco-slot:hover:not(.eco-slot--full) {
  border-color: #2C3D27;
  background: rgba(44, 61, 39, 0.04);
}

.eco-slot input[type=radio] {
  margin: 0;
}

.eco-slot__date {
  color: #1A2E22;
  font-weight: 500;
}

.eco-slot__avail {
  color: #4F5B52;
  font-size: 0.82rem;
}

.eco-slot--full {
  opacity: 0.55;
  cursor: not-allowed;
}

.eco-slot--full .eco-slot__avail {
  color: #c0392b;
}

.eco-slot input[type=radio]:checked + .eco-slot__date {
  color: #2C3D27;
}

.eco-booking-form__submit {
  width: 100%;
  font-size: 1rem;
  padding: 0.85rem 1rem;
}

.eco-booking-form__legal {
  margin: 0;
  font-size: 0.78rem;
  color: #4F5B52;
  text-align: center;
}

.eco-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid #E8E5DB;
  padding: 0.75rem 1rem;
  z-index: 50;
  display: flex;
  justify-content: stretch;
  box-shadow: 0 -8px 24px rgba(31, 42, 35, 0.08);
}

.eco-sticky-cta .eco-btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .eco-sticky-cta {
    display: none;
  }
}
.eco-page-list {
  padding-bottom: 4rem;
}

.eco-page-list__header {
  padding-block: 3rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eco-page-list__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2C3D27;
}

.eco-page-list__header h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  color: #1A2E22;
}

.eco-page-list__lead {
  margin: 0;
  font-size: 17px;
  color: #4F5B52;
  max-width: 65ch;
}

.eco-offers--list {
  padding-block: 0;
  background: transparent;
}

.eco-offer__title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
}

.eco-offer__title a {
  color: #1A2E22;
  text-decoration: none;
}

.eco-offer__title a:hover {
  color: #2C3D27;
}

.eco-offer__tagline {
  margin: 0;
  color: #2C3D27;
  font-style: italic;
  font-size: 0.95rem;
}

.eco-offer__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #4F5B52;
}

.eco-offer__meta li {
  background: #F4EFE3;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.eco-partners-page {
  background: #F4EFE3;
  padding-bottom: 6rem;
}

.eco-partners-page__header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
  max-width: 820px;
}
.eco-partners-page__header__eyebrow,
.eco-partners-page__header .eco-partners-page__eyebrow {
  display: block;
}

.eco-partners-page__eyebrow {
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #4F6C3E;
  margin-bottom: 0.75rem;
}

.eco-partners-page__header h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #2C3D27;
  margin: 0 0 1rem;
}

.eco-partners-page__lead {
  font-size: 17px;
  color: #1A2E22;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.eco-partners-page__legal {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #E8E5DB;
  border-left: 3px solid #4F6C3E;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 14px;
  color: #4F5B52;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
.eco-partners-page__legal strong {
  color: #2C3D27;
}

.eco-partners-page__map {
  margin-bottom: 3rem;
}
.eco-partners-page__map .eco-map {
  width: 100%;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px -14px rgba(31, 58, 40, 0.16);
}
@media (max-width: 768px) {
  .eco-partners-page__map .eco-map {
    height: 320px;
  }
}

.eco-partners-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.eco-partners-filter {
  appearance: none;
  border: 1px solid #E8E5DB;
  background: #FFFFFF;
  color: #1A2E22;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.eco-partners-filter__count {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 600;
  color: #4F5B52;
}
.eco-partners-filter:hover {
  border-color: #2C3D27;
}
.eco-partners-filter.is-active {
  background: #2C3D27;
  color: #FFFFFF;
  border-color: #2C3D27;
}
.eco-partners-filter.is-active .eco-partners-filter__count {
  color: rgba(255, 255, 255, 0.7);
}

.eco-partners-grid {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .eco-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .eco-partners-grid {
    grid-template-columns: 1fr;
  }
}

.eco-partner-card--full {
  background: #FFFFFF;
  border: 1px solid #E8E5DB;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(31, 58, 40, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.eco-partner-card--full:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -14px rgba(31, 58, 40, 0.16);
}
.eco-partner-card--full .eco-partner-card__media {
  position: relative;
  aspect-ratio: 16/10;
  background: #ECE5D2;
}
.eco-partner-card--full .eco-partner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.eco-partner-card--full .eco-partner-card__num {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2C3D27;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
}
.eco-partner-card--full .eco-partner-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.eco-partner-card--full .eco-partner-card__cat {
  margin: 0;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: #4F6C3E;
}
.eco-partner-card--full .eco-partner-card__name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  color: #2C3D27;
  margin: 0;
}
.eco-partner-card--full .eco-partner-card__commune {
  font-size: 14px;
  color: #4F5B52;
  margin: 0;
}
.eco-partner-card--full .eco-partner-card__distance {
  font-size: 12px;
  color: #4F5B52;
}
.eco-partner-card--full .eco-partner-card__desc {
  font-size: 15px;
  color: #1A2E22;
  line-height: 1.55;
  margin: 0;
}
.eco-partner-card--full .eco-partner-card__tags {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.eco-partner-card--full .eco-partner-card__tags li {
  font-size: 12px;
  padding: 0.25rem 0.5rem;
  background: #E8EEDF;
  color: #2C3D27;
  border-radius: 999px;
}
.eco-partner-card--full .eco-partner-card__links {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid #E8E5DB;
}
.eco-partner-card--full .eco-partner-card__links a {
  color: #2C3D27;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.eco-partner-card--full .eco-partner-card__links a:hover {
  color: #4F6C3E;
}

.eco-partners-page__cta {
  text-align: center;
  padding: 4rem 1rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E8E5DB;
  max-width: 800px;
}
.eco-partners-page__cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 46px);
  color: #2C3D27;
  margin: 0 0 0.75rem;
}
.eco-partners-page__cta p {
  color: #4F5B52;
  margin: 0 0 1.5rem;
}

.eco-stepper-nav {
  margin: 0 0 1.5rem;
}

.eco-stepper-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.eco-stepper-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #ECE5D2;
  border: 1px solid transparent;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #4F5B52;
  white-space: nowrap;
  flex: 0 1 auto;
}
.eco-stepper-pill__num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E8E5DB;
  font-weight: 600;
  font-size: 12px;
  color: #4F5B52;
}
.eco-stepper-pill__label {
  font-weight: 500;
  letter-spacing: 0;
}
.eco-stepper-pill.is-done {
  background: #E8EEDF;
  color: #2C3D27;
  border-color: #E8EEDF;
}
.eco-stepper-pill.is-done .eco-stepper-pill__num {
  background: #4F6C3E;
  border-color: #4F6C3E;
  color: #FFFFFF;
}
.eco-stepper-pill.is-current {
  background: #2C3D27;
  color: #FFFFFF;
  border-color: #2C3D27;
}
.eco-stepper-pill.is-current .eco-stepper-pill__num {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #2C3D27;
}
@media (max-width: 768px) {
  .eco-stepper-pill {
    padding: 0.25rem 0.5rem;
    gap: 0.25rem;
  }
  .eco-stepper-pill__label {
    display: none;
  }
  .eco-stepper-pill.is-current .eco-stepper-pill__label {
    display: inline;
  }
}

.eco-cal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eco-cal-day {
  border: 1px solid #E8E5DB;
  border-radius: 14px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 58, 40, 0.06);
}

.eco-cal-day__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0.75rem;
  background: #F4EFE3;
  border-bottom: 1px solid #E8E5DB;
}
.eco-cal-day__head__date {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  color: #2C3D27;
  text-transform: capitalize;
}
.eco-cal-day__head__count {
  font-size: 12px;
  color: #4F5B52;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eco-cal-day__slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.5rem;
  padding: 0.75rem;
  list-style: none;
  margin: 0;
}

.eco-cal-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0.25rem;
  border: 1px solid #E8E5DB;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease, transform 120ms ease;
}
.eco-cal-slot__time {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  color: #2C3D27;
}
.eco-cal-slot__avail {
  font-size: 11px;
  color: #4F5B52;
  text-align: center;
  line-height: 1.2;
}
.eco-cal-slot input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.eco-cal-slot:hover {
  border-color: #2C3D27;
}
.eco-cal-slot.is-selected {
  border-color: #4F6C3E;
  background: #E8EEDF;
  box-shadow: inset 0 0 0 1px #4F6C3E;
}
.eco-cal-slot.is-full {
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}
.eco-cal-slot.is-full:hover {
  border-color: #E8E5DB;
}

.eco-checkout {
  background: #F4EFE3;
  padding: 3rem 0 6rem;
}
.eco-checkout .eco-container > .row {
  align-items: flex-start;
  gap: 2rem;
}
.eco-checkout .step-title,
.eco-checkout .step.-current .step-title,
.eco-checkout h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #1A2E22;
  margin-bottom: 1rem;
}
.eco-checkout .checkout-step {
  background: #fff;
  border: 1px solid #E8E5DB;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}
.eco-checkout .checkout-step.-current {
  border-color: #4F6C3E;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.eco-checkout .form-control,
.eco-checkout input[type=text],
.eco-checkout input[type=email],
.eco-checkout input[type=tel],
.eco-checkout input[type=password],
.eco-checkout select,
.eco-checkout textarea {
  border-radius: 10px;
  border: 1px solid #E8E5DB;
  padding: 10px 14px;
  font-size: 15px;
  background: #fff;
}
.eco-checkout .form-control:focus,
.eco-checkout input[type=text]:focus,
.eco-checkout input[type=email]:focus,
.eco-checkout input[type=tel]:focus,
.eco-checkout input[type=password]:focus,
.eco-checkout select:focus,
.eco-checkout textarea:focus {
  border-color: #4F6C3E;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 86, 65, 0.15);
}
.eco-checkout .btn-primary,
.eco-checkout .continue.btn,
.eco-checkout button[name=confirm-addresses],
.eco-checkout #payment-confirmation .btn-primary {
  background: #1A2E22;
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
  transition: filter 0.2s;
}
.eco-checkout .btn-primary:hover:not(.disabled),
.eco-checkout .continue.btn:hover:not(.disabled),
.eco-checkout button[name=confirm-addresses]:hover:not(.disabled),
.eco-checkout #payment-confirmation .btn-primary:hover:not(.disabled) {
  filter: brightness(1.15);
}
.eco-checkout .btn-primary.disabled,
.eco-checkout .continue.btn.disabled,
.eco-checkout button[name=confirm-addresses].disabled,
.eco-checkout #payment-confirmation .btn-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.eco-checkout .cart-grid-right {
  position: sticky;
  top: 24px;
}
.eco-checkout .card,
.eco-checkout .card-block {
  border: 1px solid #E8E5DB;
  border-radius: 14px;
  background: #fff;
}
.eco-checkout .payment-options .payment-option {
  border: 1px solid #E8E5DB;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.eco-checkout .payment-options .payment-option:has(input:checked) {
  border-color: #4F6C3E;
  background: rgba(122, 152, 95, 0.06);
}

.eco-confirmation {
  padding: 3rem 0 6rem;
  background: #F4EFE3;
}
.eco-confirmation__hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.eco-confirmation__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #4F6C3E;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(122, 152, 95, 0.3);
}
.eco-confirmation__eyebrow {
  color: #4F6C3E;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.eco-confirmation h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px;
  line-height: 1.15;
  color: #1A2E22;
  margin: 0 0 0.75rem;
}
.eco-confirmation__lead {
  font-size: 16px;
  line-height: 1.55;
  color: #4F5B52;
  margin: 0;
}
.eco-confirmation__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .eco-confirmation__panel {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
  }
}
.eco-confirmation__card {
  background: #fff;
  border: 1px solid #E8E5DB;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(15, 58, 44, 0.04);
}
.eco-confirmation__card h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  color: #1A2E22;
}
.eco-confirmation__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: #F4EFE3;
  border-radius: 12px;
}
.eco-confirmation__meta dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4F6C3E;
  font-weight: 600;
  margin-bottom: 2px;
}
.eco-confirmation__meta dd {
  margin: 0;
  font-size: 16px;
  color: #1A2E22;
}
.eco-confirmation__meta code {
  font-family: Menlo, Monaco, monospace;
  font-size: 14px;
  background: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #E8E5DB;
}
.eco-confirmation__note {
  font-size: 14px;
  line-height: 1.6;
  color: #4F5B52;
  margin: 0.75rem 0 0;
}
.eco-confirmation__note a {
  color: #1A2E22;
}
.eco-confirmation__aside {
  background: #1A2E22;
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  align-self: flex-start;
}
.eco-confirmation__aside h3 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  color: #fff;
}
.eco-confirmation__aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.eco-confirmation__aside li {
  padding-left: 22px;
  position: relative;
}
.eco-confirmation__aside li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #4F6C3E;
}
.eco-confirmation__aside .eco-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.eco-confirmation__aside .eco-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
