*,*::before,*::after{box-sizing:border-box}*:not(dialog){margin:0}@media (prefers-reduced-motion:no-preference){html{interpolate-size:allow-keywords}}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}p{text-wrap:pretty}h1,h2,h3,h4,h5,h6{text-wrap:balance}#root,#__next{isolation:isolate}

:root{
  --page-width: 1440px;
  --side-margin: 45px;
  
  --gutter: 20px;

  --grey-bg: #F7F7F7;
  --stripe-color: #E5E5E5;
  --grey-placeholder: #9a9a9a;
  --grey-placeholder-light: #c9c9c9;
  --black: #141414;
  --text-dark: #1a1a1a;
  --text-body: #2b2b2b;
  --white: #ffffff;

/* typo */
  --font-display: "broadacre-regular-1", sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  display: flex;
  justify-content: center;
  font-weight: 500;
}

.page {
  width: 100%;
  max-width: var(--page-width);
  min-width: 0;
}

a, button{ 
  font-family: inherit; 
  font-weight: 500;
}

/* ==========================================================
   SHARED BITS
   ========================================================== */
.pill-btn{
  font-family: var(--font-display);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: var(--black);
  color: var(--white);
  border:none;
  border-radius: 999px;
  width:127px;
  height:47px;
  font-size:14px;
  cursor:pointer;
  text-decoration: none;
}

/* .placeholder-box{
  background: var(--grey-placeholder);
} */

h1, h2{
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height:1.12;
  font-weight: 500;
}

/* ==========================================================
   SECTION 1 — HERO
   ========================================================== */
.hero {
  background-image: url('img/FOUFOU_hero.jpg');
  background-size: cover;
  background-position: 80% center;
  background-repeat: no-repeat;
  aspect-ratio: 1440 / 750;
  max-height: 750px;
  min-height: 550px;
  padding: 45px 0 0;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.hero-inner {
  width: 100%;
  max-width: var(--page-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--side-margin);
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 610px;
}

.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px var(--side-margin);

  background: transparent;
  transform: translateY(0);
  transition: transform 0.35s ease, background-color 0.3s ease;
}

.hero-header.hidden {
  transform: translateY(-100%);
}

.hero-header.scrolled {
  background: var(--white);
}

.hero-header .logo {
  background-image: url('img/FOUFOU_logo.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 174px;
  height: 61px;
}

/* .hero-copy {
  margin-top: 220px;
  max-width: 610px;
} */

.hero-copy h1 {
  font-size: 48px;
}

.hero-copy p {
  margin-top: 30px;
  max-width: 551px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 810px) {
  .hero {
    background-image: none; /* op mobiel neemt .hero-image de foto over */
    aspect-ratio: unset;
    max-height: none;
    min-height: 0;
    padding: 0;
  }

  .hero-image {
    width: 100%;
    aspect-ratio: 4 / 5; /* pas aan naar de gewenste mobiele verhouding */
    max-height: 550px;
    background-image: url('img/FOUFOU_hero.jpg');
    background-size: cover;
    background-position: 93% center;
    background-repeat: no-repeat;
  }

  .hero-image .hero-inner {
    padding-top: 45px;
  }

  .hero-copy {
    margin-top: 50px;
    max-width: 100%;
    padding: 40px var(--side-margin) 0px;
    padding-top: 0px !important; 
    padding-bottom: 0px !important; 
  }

  .hero-copy p {
    max-width: 100%;
  }

  .hero > .hero-inner:last-child {
    padding: 0;
  }
}

/* ==========================================================
   SECTION 2 — A TOUCH OF SUMMER
   ========================================================== */
.touch-summer{
  padding:100px var(--side-margin) 0 var(--side-margin);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  padding-bottom:160px;
}

.touch-summer .col-heading{
  width:437px;
}

.touch-summer .col-heading h2{
  font-size:40px;
}

.touch-summer .col-text{
  width:551px;
}

.touch-summer .col-text p{
  font-size:15px;
  line-height:1.6;
  margin-bottom:20px;
}

.touch-summer .col-text p:last-of-type{
  margin-bottom:0;
}

.touch-summer .pill-btn{
  margin-top:47px;
}

@media (max-width: 810px) {
  .touch-summer{
    flex-direction: column;
    gap: 40px;
    margin-top: 100px;
    padding-top: 0px !important; 
    padding-bottom: 0px !important; 
  }

  .touch-summer .col-heading,
  .touch-summer .col-text{
    width: 100%;
  }
}

/* ==========================================================
   IMAGE ROW
   ========================================================== */
.image-row{
  display:flex;
  justify-content:space-between;
  padding: 0 var(--side-margin);
  gap: var(--gutter);
  margin-bottom:100px;
}

.image-row .img-tile{
  width: calc((100% - 40px) / 3);
  aspect-ratio: 437 / 550;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--grey-placeholder-light);
  flex-shrink: 0;
  border-radius: 10px;
}

.img-tile--1{ background-image: url('img/FOUFOU_1.jpg'); }
.img-tile--2{ background-image: url('img/FOUFOU_2.jpg'); }
.img-tile--3{ background-image: url('img/FOUFOU_3.jpg'); }

@media (max-width: 810px) {
  .image-row {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    padding: 0 var(--side-margin) 10px;

    scroll-snap-type: x proximity;
    scroll-padding-left: var(--side-margin);
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;

    margin-top: 100px;
  }

  .image-row::-webkit-scrollbar {
    display: none;
  }

  .image-row .img-tile {
    width: 95%;
    height: auto;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* ==========================================================
   SECTION 3 — TASTING NOTES
   ========================================================== */
.tasting-notes{
  padding: 0 var(--side-margin) 100px var(--side-margin);
}

.tasting-notes > h2{
  font-size:40px;
}

.tasting-grid{
  display:flex;
  align-items: center;
  justify-content:space-between;
}

.tasting-col{
  width:437px;
  display:flex;
  flex-direction:column;
}

.tasting-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:65px;
  padding-bottom:10px;
  border-bottom:1px solid var(--stripe-color);
}

.tasting-row:last-child{
  margin-bottom:0;
}

.tasting-row .label{
  font-family: var(--font-body);
  font-size:22px;
  font-weight: 500;
  color: var(--text-dark);
}

.tasting-row .value{
  font-size:14px;
  text-align:right;
  max-width:220px;
  line-height:1.5;
}

.tasting-image{
  width:437px;
  height:527px;
  background-image: url('img/FOUFOU_4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px;
  flex-shrink:0;
}

@media (max-width: 1200px) {
  .tasting-grid{
    flex-direction: column;
    gap: 0px;
  }

  .tasting-col{
    width: 100%;
    order: 2;
  }

  .tasting-image{
    background-size: contain;
    width: 100%;
    height: 450px;
    margin: 25px 0 50px 0;
    order: 1;
  }

  .tasting-row:last-child{
  margin-bottom:65px;
}
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--grey-bg);
  padding: 60px 0 40px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.footer-inner {
  width: 100%;
  padding: 0 var(--side-margin);
  margin: 0;
}

.footer .logo {
  background-image: url('img/FOUFOU_logo.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 174px;
  height: 61px;
  margin-bottom: 70px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: var(--text-body);
}

.footer-bottom .disclaimer {
  font-size: 12px;
  color: var(--text-body);
}

.footer-bottom .right-group {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.footer-bottom .icon-box {
  background-image: url('img/nix18.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 80px;
  height: 22px;
}

@media (max-width: 810px) {
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-bottom .right-group{
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  
}

@media (max-width: 810px) {

  :root {

    --side-margin: 25px;

  }

    .hero-copy h1 {
  font-size: 40px;
  }

}

@media (max-width: 500px) {

  .logo {
    width: 140px !important; 
    height: 56px !important;
  }
}