:root{
  --green:#0b5a39;
  --beige:#efe7dd;
  --text:#111;
  --muted:#5a5a5a;
  --radius:18px;
  --shadow: 0 0px 15px rgba(0,0,0,.30);
  --line: rgba(0,0,0,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:#fff;
  overflow-x:clip;
}

a{color:inherit;text-decoration:none}
.container{
  width:min(1180px,92%);margin:0 auto
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 18px;border-radius:14px;border:1px solid transparent;
  font-weight:700;cursor:pointer;
}
.btn--primary{background:var(--green);color:#fff}
.btn--outline{background:transparent;border-color:var(--green);color:var(--green)}
.btn--white{background:#fff;color:var(--green)}
.btn--full{width:100%}

.section{padding:78px 0}
.section--beige{
  position: relative;
  background: transparent;
  overflow: hidden;
  z-index:1;
}
.section--beige.section--no-shadow{
  box-shadow:none;
}
.section--beige::before{
  content:"";
  position:absolute;
  left:0;right:0;top:-30%;bottom:-30%;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,0) 40%, rgba(0,0,0,.06) 100%),
    var(--beige);
  transform: translate3d(0, var(--beige-parallax, 0px), 0);
  will-change: transform;
  z-index:0;
}
.section--beige .container{
  transform: translate3d(0, var(--beige-content-parallax, 0px), 0);
  will-change: transform;
}
.section--beige > *{
  position: relative;
  z-index: 1;
}
.section--white{
  background:#fff;
  position:relative;
  z-index:3;
  box-shadow:0 16px 24px -16px rgba(0,0,0,.35);
}

.h2{
  font-size:56px;line-height:1.05;margin:0 0 12px;
  letter-spacing:-.02em;
}
.p{
  margin:0;color:var(--muted);line-height:1.55;font-size:16px;
}

.center{
  text-align:center
}
.sectionTitleRow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.sectionTitleRow .h2{
  margin:0;
}
.sectionTitleRow--split{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  width:100%;
}
.sectionTitleRow--split .h2{
  grid-column:2;
  text-align:center;
  width:auto;
}
.sectionTitleRow--split::before{
  content:"";
  grid-column:1;
}
.sectionTitleRow__btn{
  grid-column:3;
  justify-self:end;
}
@media (max-width: 820px){
  .sectionTitleRow--split{
    grid-template-columns:1fr;
    gap:14px;
  }
  .sectionTitleRow--split .h2,
  .sectionTitleRow--split::before,
  .sectionTitleRow__btn{
    grid-column:1;
    justify-self:center;
  }
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.ctaRow--center{
  justify-content:center;
}

.mt-24{
  margin-top:24px
}

.mt-32{
  margin-top:32px
}

.mt-48{
  margin-top:48px
}

.mt-4{
  margin-top:4px;
}

.sectionshadow{
  position: relative;
  z-index: 1;
}
.section--white.sectionshadow{
  z-index:3;
  box-shadow:
    0 -16px 24px -16px rgba(0,0,0,.35),
    0 16px 24px -16px rgba(0,0,0,.35);
}
.section--beige.sectionshadow{
  z-index:1;
  box-shadow:none;
}
.stats.sectionshadow{
  z-index:2;
  box-shadow: 0 18px 26px -16px rgba(0,0,0,.35);
}

/* HEADER */
.header{
  position:fixed;left:0;right:0;top:0;z-index:50;
  transition: background .25s ease, box-shadow .25s ease;
}
.header__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;
  gap:16px;
}
.brand{
  display:flex;align-items:center;gap:10px;
}
.brand__icon{
  width:100px;height:28px;display:inline-flex;align-items:center;justify-content:center;
  color:var(--green);
}
.brand__logo{
  width:100%;
  max-width:100%;
  height:28px;
  object-fit:contain;
  object-position:left center;
  display:block;
}
.brand__title{
  font-weight:800;
}
.brand__sub{
  font-size:12px;color:rgba(0,0,0,.6);margin-top:2px;
}
.brand__stack{display:flex;flex-direction:column;line-height:1}

.nav{display:flex;gap:22px;align-items:center}
.nav a{
  font-size:16px;font-weight:700;
  color:#fff;opacity:.95;
}
.nav a:hover{opacity:.75}
.nav > a + a{
  position:relative;
  padding-left:18px;
}
.nav > a + a::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:1px;
  height:22px;
  transform:translateY(-50%);
  background:transparent;
}

.social{
  display:flex;gap:12px;align-items:center;margin-left:8px;
}
.nav > .social{
  position:relative;
  margin-left:16px;
  padding-left:18px;
}
.nav > .social::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:1px;
  height:22px;
  transform:translateY(-50%);
  background:transparent;
}
.social a{
  width:34px;height:34px;border-radius:10px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid rgba(255,255,255,.35);
}
.social svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

.header--transparent{
  background:transparent;
}
.header--transparent .brand__title,
.header--transparent .brand__sub{color:#fff}
.header--transparent .brand__icon{color:#fff}
.header--transparent .brand__icon,
.header--transparent .brand__stack{
  opacity:0;
  transform:translateY(-4px);
  pointer-events:none;
}

.header--solid{
  background:#fff;
  box-shadow: var(--shadow);
}
.header--solid .nav a{color:var(--green)}
.header--solid .nav > a + a::before{
  background:rgba(11,90,57,.28);
}
.header--solid .nav > .social::before{
  background:rgba(11,90,57,.28);
}
.header--solid .social a{border-color:rgba(0,0,0,.12)}
.header--solid .brand__title{color:#111}
.header--solid .brand__sub{color:rgba(0,0,0,.6)}
.header--solid .brand__icon{color:var(--green)}

.menuBtn{
  display:none;
  width:42px;height:42px;border-radius:12px;
  border:1px solid rgba(255,255,255,.35);
  background:transparent;color:#fff;font-size:18px;cursor:pointer;
}
.header--solid .menuBtn{
  border-color:rgba(0,0,0,.12);
  color:#111;
}

.mobile{
  display:none;
  position:fixed;inset:0;background:rgba(0,0,0,.55);
  z-index:60;
}
.mobile__panel{
  position:absolute;right:0;top:0;height:100%;
  width:min(380px,88vw);
  background:
    linear-gradient(180deg, rgba(245,239,229,.92) 0%, #fff 42%, #f8f4eb 100%);
  padding:20px 18px 28px;
  border-left:1px solid rgba(11,90,57,.10);
  box-shadow:-18px 0 40px rgba(0,0,0,.18);
}
.mobile__top{
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(11,90,57,.10);
}
.mobile__brand{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--green);
}
.mobile__brandLogo{
  width:132px;
  height:36px;
  object-fit:contain;
  object-position:left center;
  display:block;
}
.mobile__eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(11,90,57,.70);
}
.mobile__close{
  width:42px;height:42px;border-radius:12px;border:1px solid rgba(0,0,0,.12);
  background:#fff;cursor:pointer;font-size:18px;
}
.mobile__nav{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
}
.mobile__nav a{
  font-weight:800;
  font-size:17px;
  color:var(--green);
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(11,90,57,.10);
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.mobile__nav a:hover{
  background:#fff;
}
.mobile.is-open{display:block}

/* HERO (INDEX) */
.hero{
  height:88vh;min-height:640px;
  background-image:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    var(--hero-bg, url("../img/mainview.jpg"));
  background-repeat:no-repeat,no-repeat;
  background-size:auto,cover;
  background-position:center center, center 0;
  display:flex;align-items:center;
}
.hero__inner{
  padding-top:0;
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero__logo{
  text-align:center;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:100%;
  will-change: transform;
}
.hero__word{
  height:30%;
  width:auto;
  max-width:80%;
  object-fit:contain;
  margin:0;
}
.hero__line{
  width:min(360px, 100%);height:1px;background:rgba(255,255,255,.65);
  margin:16px auto 18px;
}
.hero__sub{
  letter-spacing:.30em;
  font-weight:800;
  font-size: 25px;
  margin:0;
  opacity:.9;
}
.hero__place{
  margin-top:10px;
  opacity:.9;
  font-size:14px;
}

/* PAGE HERO (SUBPAGES) */
.pageHero{
  padding-top:90px;
  padding-bottom:18px;
  background:#fff;
  position:relative;
  z-index:6;
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.pageHero h1{
  margin:0;font-size:46px;letter-spacing:-.02em;
}
.pageHero__row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.assortmentInfoTrigger{
  flex-shrink:0;
}

.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:90;
}
.modal.is-open{
  display:block;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(10,16,12,.56);
  backdrop-filter:blur(8px);
}
.modal__dialog{
  position:relative;
  width:min(860px, calc(100% - 32px));
  max-height:min(88vh, 920px);
  margin:6vh auto;
  overflow:auto;
  border-radius:28px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.78), rgba(255,255,255,0) 32%),
    linear-gradient(180deg, #f7f2e8 0%, #fff 28%, #fbfaf6 100%);
  box-shadow:0 36px 80px rgba(0,0,0,.28);
  border:1px solid rgba(11,90,57,.10);
  padding:32px;
}
.modal__close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(11,90,57,.14);
  background:#fff;
  color:var(--green);
  font-size:18px;
  cursor:pointer;
}
.deliveryModal__eyebrow{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:900;
  color:var(--green);
}
.deliveryModal__title{
  margin:0;
  font-size:42px;
  line-height:1.04;
  letter-spacing:-.03em;
}
.deliveryModal__lead{
  margin:18px 0 0;
  max-width:720px;
  color:#2f362f;
  font-size:17px;
  line-height:1.7;
}
.deliveryModal__lead a{
  color:var(--green);
  font-weight:800;
}
.deliveryModal__contact{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:22px;
}
.deliveryModal__contactCard{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(11,90,57,.10);
  box-shadow:0 16px 28px -24px rgba(0,0,0,.32);
}
.deliveryModal__contactCard strong{
  font-size:20px;
  color:var(--green);
}
.deliveryModal__contactLabel{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(11,90,57,.72);
}
.deliveryModal__section{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid rgba(11,90,57,.10);
}
.deliveryModal__section h3{
  margin:0 0 16px;
  font-size:24px;
}
.deliveryModal__schedule{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.deliveryModal__scheduleItem{
  padding:18px 18px 16px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(11,90,57,.09);
  box-shadow:0 14px 28px -24px rgba(0,0,0,.30);
}
.deliveryModal__scheduleItem h4{
  margin:0 0 8px;
  font-size:18px;
}
.deliveryModal__scheduleItem p{
  margin:0;
  color:#4b4b4b;
  line-height:1.55;
}
.deliveryModal__facts{
  display:grid;
  gap:12px;
}
.deliveryModal__facts p{
  margin:0;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.84);
  color:#394139;
  line-height:1.6;
}
body.is-modal-open{
  overflow:hidden;
}

/* STATS */
.stats{
  padding:40px 0 44px;
  background:#fff;
}
.stats__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:22px;
  text-align:center;
}
.stat__icon{
  width:100px;height:100px;border-radius:999px;
  background:var(--beige);
  display:inline-flex;align-items:center;justify-content:center;
  margin:0 auto 10px;
  color:var(--green);
  border:1px solid rgba(0,0,0,.06);
}
.stat__icon img{
  width:50px;
  height:50px;
  object-fit:contain;
  display:block;
}
.stat__value{font-size:50px;margin:0;color:var(--green);font-weight:900}
.stat__label{margin:10px 0 0;font-size:12px;letter-spacing:.25em;color:#3d3d3d}

/* GRIDS / CARDS */
.grid-4{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:26px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:26px;
}
.card{
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
}
.card--click{
  cursor:pointer;
}
.card--click:focus-visible{
  outline:3px solid rgba(11,90,57,.45);
  outline-offset:2px;
}
.card__img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
  display:block;
}
.card__body{
  padding:18px 18px 20px;
}
.card__titleRow{
  display:flex;align-items:flex-start;justify-content:space-between;gap:10px;
}
.card__title{margin:0;font-weight:900}
.card__year{margin:3px 0 0;font-size:13px;color:var(--green);font-weight:800}
.card__type{
  margin:12px 0 0;
  font-size:12px;
  letter-spacing:.18em;
  color:var(--green);
  font-weight:900;
}
.card__text{margin:12px 0 16px;color:#444;line-height:1.55;font-size:14px}
.card__btn{
  border:1px solid var(--green);
  background:#fff;color:var(--green);
  border-radius:12px;
  padding:10px 14px;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-weight:800;
  width:100%;
}

.socialFeedLinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin:0 0 28px;
}

.socialFeedLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:180px;
  padding:13px 18px;
  border-radius:16px;
  border:1px solid rgba(11,90,57,.16);
  background:#fff;
  color:var(--text);
  box-shadow:0 10px 24px -18px rgba(0,0,0,.28);
  font-weight:800;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.socialFeedLink:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px -20px rgba(0,0,0,.32);
}

.socialFeedLink svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
  flex-shrink:0;
}

.socialFeedLink--facebook{
  border-color:rgba(24,119,242,.22);
  color:#1877f2;
}

.socialFeedLink--facebook:hover{
  background:rgba(24,119,242,.06);
}

.socialFeedLink--instagram{
  border-color:rgba(193,53,132,.18);
  color:#c13584;
}

.socialFeedLink--instagram:hover{
  background:rgba(193,53,132,.06);
}

.socialFeedFrame{
  margin-top:8px;
}

.socialFeedFrame--beige{
  padding:26px;
  border-radius:24px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(11,90,57,.08);
}

.socialFeedFrame--plain{
  padding:8px 0 0;
}

.embedConsent{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  min-height:220px;
  padding:24px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,242,232,.96));
  border:1px solid rgba(11,90,57,.10);
  box-shadow:0 12px 28px -22px rgba(0,0,0,.30);
}
.embedConsent.is-hidden,
.mapFrame.is-hidden,
[data-cookie-protected="hcaptcha"] .h-captcha.is-hidden,
[data-behold-id].is-hidden,
.cookieConsentBar.is-hidden{
  display:none !important;
}
[data-external-embed="behold"].is-blocked > :not(.embedConsent){
  display:none !important;
}
[data-external-embed="behold"].is-consented > .embedConsent{
  display:none !important;
}
.embedConsent__title{
  margin:0;
  font-size:24px;
}
.embedConsent__text{
  margin:0;
  max-width:680px;
  color:#464646;
  line-height:1.6;
}
.embedConsent__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* SORTIMENT LISTE */
.assortmentIntro{
  max-width:740px;
}
.assortmentStickyBar{
  position:sticky;
  top:var(--header-height, 76px);
  z-index:40;
  padding:0;
  margin-top:-1px;
  background:#fff;
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 24px -18px rgba(0,0,0,.38);
}
.assortmentStickyBar .container{
  position:relative;
}
.assortmentToolbar{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:10px 0 14px;
}
.assortmentToolbar__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}
.assortmentSearch{
  display:flex;
  flex-direction:column;
  gap:8px;
  max-width:620px;
  flex:1;
}
.assortmentToolbar__btn{
  min-height:52px;
  white-space:nowrap;
  flex-shrink:0;
}
.assortmentSearch__label{
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green);
}
.assortmentSearch__input{
  width:100%;
  min-height:52px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(11,90,57,.16);
  background:rgba(255,255,255,.92);
  color:var(--text);
  font:inherit;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}
.assortmentSearch__input:focus{
  outline:none;
  border-color:rgba(11,90,57,.42);
  box-shadow:0 0 0 4px rgba(11,90,57,.10);
}
.assortmentFilters{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.assortmentFilterGroup{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.assortmentChip{
  min-height:44px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(11,90,57,.18);
  background:rgba(255,255,255,.82);
  color:var(--green);
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.assortmentChip:hover{
  transform:translateY(-1px);
  border-color:rgba(11,90,57,.34);
}
.assortmentChip.is-active{
  background:var(--green);
  color:#fff;
  border-color:var(--green);
}
.assortmentSummary{
  margin-left:auto;
  color:rgba(0,0,0,.68);
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  line-height:1.2;
}
.assortmentList{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}
.assortmentItem{
  display:block;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 26px rgba(0,0,0,.10);
  scroll-margin-top:220px;
  min-height:210px;
}
.assortmentItem--target{
  box-shadow:0 0 0 3px var(--green), 0 14px 28px rgba(0,0,0,.14);
}
.assortmentItem__intro{display:contents}
.assortmentItem__media{
  position:relative;
  min-height:100%;
  overflow:hidden;
  align-self:stretch;
}
.assortmentItem__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .35s ease, transform .45s ease;
}
.assortmentItem__img--primary{
  opacity:1;
}
.assortmentItem__img--hover{
  opacity:0;
  transform:scale(1.04);
}
.assortmentItem:hover .assortmentItem__img--primary{
  opacity:0;
  transform:scale(1.03);
}
.assortmentItem:hover .assortmentItem__img--hover{
  opacity:1;
  transform:scale(1);
}
.assortmentItem__content{
  display:grid;
  grid-template-columns:168px minmax(0, 1fr);
  padding:0;
}
.assortmentItem__body{
  display:flex;
  flex-direction:column;
}
.assortmentItem__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 0;
}
.assortmentItem__media{
  grid-column:1;
  grid-row:1 / span 2;
}
.assortmentItem__head,
.assortmentItem__body{
  grid-column:2;
}
.assortmentItem__body{
  padding:14px 18px 16px;
}
.assortmentItem__head h2{
  margin:0;
  font-size:24px;
  line-height:1.08;
  letter-spacing:-.01em;
}
.assortmentItem__year{
  color:var(--green);
  font-weight:800;
  font-size:15px;
  margin-top:2px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(11,90,57,.08);
}
.assortmentItem__subtitle{
  margin:8px 0 0;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  color:var(--green);
  font-weight:900;
}
.assortmentItem__description{
  margin:14px 0 0;
  color:#3f3f3f;
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.assortmentItem__details{
  list-style:none;
  margin:14px 0 0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:6px 14px;
  color:rgba(0,0,0,.46);
}
.assortmentItem__details li{
  display:flex;
  align-items:baseline;
  gap:6px;
  font-size:12px;
  line-height:1.4;
}
.assortmentItem__details span{
  color:rgba(0,0,0,.42);
}
.assortmentItem__details strong{
  color:rgba(0,0,0,.50);
  font-weight:600;
}
.assortmentItem__bottom{
  margin-top:auto;
  padding-top:18px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  gap:16px;
}
.assortmentItem__price{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
}
.assortmentItem__priceBottle{
  color:var(--green);
  font-weight:800;
  font-size:22px;
  line-height:1.1;
}
.assortmentItem__priceCase{
  margin-top:4px;
  font-size:12px;
  color:rgba(0,0,0,.52);
}
.assortmentEmpty{
  grid-column:1 / -1;
  padding:42px 0;
  text-align:center;
}
.assortmentEmpty h2{
  margin:0;
  font-size:28px;
}
.assortmentEmpty p{
  margin:10px 0 0;
  color:var(--muted);
}

/* FAMILY + SUSTAINABILITY */
.eyebrow{
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  font-size:12px;
  color:var(--green);
}
.sectionHead{
  max-width:720px;
}
.storySplit{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.storySplit__media{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 24px rgba(0,0,0,.14);
}
.storySplit__media img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
}
.storySplit__figure{
  margin:0;
}
.storySplit__figure figcaption{
  padding:14px 16px 16px;
  font-size:14px;
  line-height:1.55;
  color:#3f3f3f;
  background:#fff;
}
.sustainabilityImage{
  width:100%;
  height:100%;
  margin:0;
  object-fit:contain;
  object-position:center;
  display:block;
}
.sustainabilityCard{
  background:#fff;
  padding:16px;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
}
.milestones{
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.milestoneCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:20px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}
.milestoneCard__year{
  color:var(--green);
  font-weight:900;
  font-size:22px;
}
.milestoneCard h3{
  margin:8px 0 8px;
  font-size:20px;
}
.milestoneCard p{
  margin:0;
  color:#444;
  line-height:1.55;
}
.profileCard{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
}
.profileCard__img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}
.profileCard__body{
  padding:18px;
}
.profileCard__body h3{
  margin:0;
}
.profileCard__role{
  margin:8px 0 10px;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:12px;
  color:var(--green);
  font-weight:800;
}
.profileCard__text{
  margin:0;
  color:#444;
  line-height:1.55;
}
.pillarCard{
  background:var(--beige);;
  border-radius:18px;
  box-shadow:0 10px 22px rgba(0,0,0,.20);
  padding:22px;
}
.pillarCard h3{
  margin:0;
}
.pillarCard p{
  margin:12px 0 0;
  color:#444;
  line-height:1.55;
}
.checkList{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.checkList li{
  position:relative;
  padding-left:18px;
  color:#333;
}
.checkList li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--green);
}
.metricsGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.metricCard{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 10px 22px rgba(0,0,0,.10);
  text-align:center;
}
.metricCard__value{
  margin:0;
  color:var(--green);
  font-weight:900;
  font-size:34px;
  line-height:1.1;
}
.metricCard__label{
  margin:8px 0 0;
  color:#444;
}

/* CONTACT */
.split{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:36px;
  align-items:start;
}
.kBlock{margin-top:28px}
.kItem{
  display:flex;gap:16px;align-items:flex-start;
  margin-top:18px;
}
.kIcon{
  width:48px;height:48px;border-radius:12px;background:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--green);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  flex-shrink:0;
  font-size:22px;
  line-height:1;
}
.kTitle{margin:0 0 8px;font-weight:900}
.kText{margin:0;color:#444;line-height:1.55}

.formCard{
  background:#fff;border-radius:20px;box-shadow:var(--shadow);
  padding:26px;
}
.formCard h3{margin:0 0 16px;font-size:22px}
.input{
  width:100%;padding:14px 14px;border-radius:12px;
  border:1px solid rgba(0,0,0,.18);
  outline:none;font:inherit;
  margin-bottom:14px;
}
.input:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(11,90,57,.15);
}
textarea.input{resize:vertical;min-height:130px}
.h-captcha{margin:0 0 14px}
.formNote{
  margin:0 0 14px;
  color:#5c5c5c;
  font-size:14px;
  line-height:1.5;
}
.formNote a{
  color:var(--green);
  font-weight:700;
  text-decoration:underline;
}
.formStatus{
  display:none;
  margin:0 0 14px;
  padding:12px 14px;
  border-radius:12px;
  font-size:14px;
  line-height:1.5;
}
.formStatus.is-visible{
  display:block;
}
.formStatus.is-success{
  background:rgba(11,90,57,.10);
  color:var(--green);
  border:1px solid rgba(11,90,57,.16);
}
.formStatus.is-error{
  background:rgba(149,25,25,.08);
  color:#8a1f1f;
  border:1px solid rgba(149,25,25,.16);
}
.btn.is-disabled,
.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}

.mapCard{
  background:#fff;
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:18px;
}
.mapCard__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
  flex-wrap:wrap;
}
.mapCard__title{
  margin:0;
  font-size:24px;
}
.mapFrame{
  width:100%;
  min-height:360px;
  border:0;
  border-radius:14px;
}

.cookieConsentBar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:95;
  padding:16px 0 calc(16px + env(safe-area-inset-bottom, 0px));
  background:rgba(10,16,12,.92);
  box-shadow:0 -16px 34px rgba(0,0,0,.28);
}
.cookieConsentBar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cookieConsentBar__text{
  margin:0;
  color:#fff;
  line-height:1.5;
  font-weight:600;
}
.cookieConsentBar__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
}
.cookieConsentBar .btn--outline{
  border-color:rgba(255,255,255,.36);
  color:#fff;
}
.cookieConsentBar .btn--outline:hover{
  background:rgba(255,255,255,.08);
}

/* FOOTER */
.footer{
  background:var(--green);color:#fff;
  padding:54px 0 28px;
  position:relative;
  z-index:4;
  box-shadow: 0 -18px 30px rgba(0,0,0,.28);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:28px;
}
.footer__logo{
  width:180px;
  max-width:100%;
  height:auto;
  display:block;
  margin:0 0 12px;
}
.footer a{color:#fff;opacity:.9}
.footer a:hover{opacity:1}
.footer__settingsLink{
  padding:0;
  border:0;
  background:none;
  color:#fff;
  opacity:.9;
  font:inherit;
  cursor:pointer;
  text-decoration:underline;
}
.footer__settingsLink:hover{
  opacity:1;
}
.footer__title{margin:0 0 14px;font-size:16px}
.footer__list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px}
.footer__hr{
  margin:34px auto 18px;
  height:1px;background:rgba(255,255,255,.25);
}
.footer__bottom{
  text-align:center;
  opacity:.9;
  font-size:13px;
}
.footer__bottom a{opacity:.9;text-decoration:underline}

/* RESPONSIVE */
@media (max-width: 1100px){
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .stats__grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .split{grid-template-columns:1fr}
  .storySplit{grid-template-columns:1fr}
  .milestones{grid-template-columns:repeat(2,minmax(0,1fr))}
  .metricsGrid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .assortmentSummary{
    align-self:flex-start;
  }
  .assortmentItem{
    grid-template-columns:150px minmax(0, 1fr);
  }
  .assortmentItem__media{
    min-height:100%;
  }
  .assortmentItem__content{
    padding:18px;
  }
}
@media (max-width: 820px){
  .nav{display:none}
  .menuBtn{display:inline-flex;align-items:center;justify-content:center}
  .section{
    padding:60px 0;
  }
  .container{
    width:min(1180px, 90%);
  }
  .h2{
    font-size:40px;
  }
  .pageHero{
    padding-top:84px;
  }
  .pageHero h1{
    font-size:36px;
  }
  .modal__dialog{
    width:min(100% - 24px, 720px);
    margin:5vh auto;
    padding:26px 20px 20px;
  }
  .deliveryModal__title{
    font-size:34px;
  }
  .deliveryModal__contact,
  .deliveryModal__schedule{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:560px;
    height:82vh;
  }
  .hero__word{
    max-width:88%;
  }
  .hero__sub{
    font-size:18px;
    letter-spacing:.18em;
    line-height:1.4;
    max-width:100%;
    text-align:center;
  }
  .stats{
    padding:32px 0 36px;
  }
  .grid-4{
    grid-template-columns:1fr;
  }
  .stats__grid{grid-template-columns:repeat(2, minmax(0,1fr));gap:16px}
  .grid-3{grid-template-columns:1fr}
  .footer__grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .footer{
    padding:40px 0 24px;
  }
  .milestones{grid-template-columns:1fr}
  .metricsGrid{grid-template-columns:1fr}
  .assortmentToolbar__top{
    flex-direction:column;
    align-items:stretch;
  }
  .assortmentToolbar__btn{
    width:100%;
  }
  .assortmentToolbar{
    gap:10px;
    padding:8px 0 12px;
  }
  .assortmentStickyBar{
    top:var(--header-height, 76px);
  }
  .assortmentStickyBar .container{
    width:min(1180px, calc(100% - 24px));
  }
  .assortmentFilters{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .assortmentFilterGroup{
    width:100%;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:8px;
    padding-bottom:2px;
    scrollbar-width:thin;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
  .assortmentFilterGroup::-webkit-scrollbar{
    display:none;
  }
  .assortmentList{
    grid-template-columns:1fr;
    gap:16px;
  }
  .assortmentItem{
    border-radius:18px;
    min-height:0;
  }
  .assortmentItem__content{
    display:block;
    padding:8px 12px 12px 8px;
  }
  .assortmentItem__intro{
    display:grid;
    grid-template-columns:100px minmax(0, 1fr);
    column-gap:12px;
    align-items:start;
  }
  .assortmentItem__media{
    min-height:150px;
    aspect-ratio:2 / 3;
    align-self:start;
    margin:0;
    border-radius:14px;
  }
  .assortmentItem__head{
    padding:4px 0 0;
    min-width:0;
  }
  .assortmentItem__body{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    grid-template-areas:
      "desc desc"
      "details price";
    column-gap:12px;
    row-gap:10px;
    padding:10px 0 0;
  }
  .assortmentItem__bottom{
    grid-area:price;
    margin:0;
    padding-top:0;
    gap:8px;
    align-self:start;
  }
  .assortmentItem__price{
    align-items:flex-start;
  }
  .assortmentItem__head h2{
    font-size:21px;
  }
  .assortmentItem__description{
    grid-area:desc;
    margin:0;
    -webkit-line-clamp:2;
  }
  .assortmentItem__details{
    grid-area:details;
    margin:0;
    flex-direction:column;
    flex-wrap:nowrap;
    align-items:flex-start;
    gap:6px;
  }
  .assortmentChip{
    flex:0 0 auto;
    min-width:max-content;
    min-height:38px;
    padding:8px 12px;
    font-size:13px;
    font-weight:600;
    justify-content:center;
    scroll-snap-align:start;
  }
  .assortmentSummary{
    margin-left:0;
    white-space:normal;
    width:100%;
    padding:8px 12px;
    border-radius:12px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(11,90,57,.10);
    font-size:13px;
    line-height:1.15;
  }
  .assortmentBottomCtas{
    margin-bottom:18px;
  }
  .mapFrame{
    min-height:300px;
  }
  .cookieConsentBar__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cookieConsentBar__actions{
    width:100%;
    justify-content:flex-start;
  }
}
@media (max-width: 560px){
  .container{
    width:min(1180px, calc(100% - 28px));
  }
  .header__inner{
    padding:12px 0;
  }
  .brand__icon{
    width:94px;
    justify-content:flex-start;
  }
  .mobile__panel{
    width:min(100vw, 360px);
  }
  .mobile__top{
    align-items:flex-start;
  }
  .mobile__brandLogo{
    width:118px;
    height:32px;
  }
  .modal__dialog{
    width:min(100% - 16px, 100%);
    max-height:90vh;
    margin:4vh auto;
    padding:22px 14px 16px;
    border-radius:22px;
  }
  .modal__close{
    top:12px;
    right:12px;
  }
  .deliveryModal__title{
    font-size:28px;
    padding-right:44px;
  }
  .deliveryModal__lead{
    font-size:15px;
  }
  .deliveryModal__contactCard strong{
    font-size:17px;
  }
  .deliveryModal__section h3{
    font-size:20px;
  }
  .h2{
    font-size:32px;
  }
  .hero{
    min-height:500px;
  }
  .hero__line{
    margin:14px auto 16px;
  }
  .hero__sub{
    font-size:15px;
    letter-spacing:.12em;
  }
  .btn{
    width:100%;
  }
  .ctaRow .btn,
  .center .btn{
    width:100%;
  }
  .homeWines .container.center{
    padding-top:18px;
  }
  .stats__grid{
    gap:12px;
  }
  .stat__icon{
    width:76px;
    height:76px;
    margin-bottom:8px;
  }
  .stat__icon img{
    width:38px;
    height:38px;
  }
  .stat__value{
    font-size:36px;
  }
  .stat__label{
    margin-top:8px;
    font-size:10px;
    letter-spacing:.14em;
  }
  .homeWines .center.mt-32{
    margin-bottom:24px;
  }
  .mapCard,
  .formCard{
    padding:16px;
  }
  .mapCard__head{
    align-items:flex-start;
  }
  .mapCard__head .btn{
    width:100%;
  }
  .assortmentChip{
    min-height:36px;
    padding:7px 11px;
    font-size:12px;
  }
  .assortmentToolbar{
    gap:8px;
    padding:6px 0 10px;
  }
  .assortmentSearch{
    gap:6px;
  }
  .assortmentSearch__label{
    font-size:11px;
    letter-spacing:.12em;
  }
  .assortmentSearch__input{
    min-height:44px;
    padding:10px 12px;
    border-radius:12px;
  }
  .assortmentToolbar__btn{
    min-height:44px;
    padding:10px 12px;
    border-radius:12px;
    font-size:14px;
  }
  .assortmentToolbar__top{
    gap:10px;
  }
  .assortmentFilterGroup{
    gap:6px;
  }
  .assortmentItem__media{
    min-height:136px;
  }
  .assortmentItem__content{
    padding:8px 10px 10px 8px;
  }
  .assortmentItem__intro{
    grid-template-columns:92px minmax(0, 1fr);
    column-gap:10px;
  }
  .assortmentItem__head{
    padding:2px 0 0;
  }
  .assortmentItem__body{
    column-gap:10px;
    row-gap:8px;
  }
  .assortmentItem__head h2{
    font-size:19px;
  }
  .assortmentItem__year{
    padding:6px 9px;
    font-size:14px;
  }
  .assortmentBottomCtas{
    margin-bottom:28px;
  }
}

@media (hover: none), (pointer: coarse){
  .assortmentItem__img--primary{
    opacity:0;
  }
  .assortmentItem__img--hover{
    opacity:1;
    transform:none;
  }
}
