html { scroll-behavior: smooth; }

:root{
  --navH: 72px;
  --navPadX: clamp(18px, 4vw, 54px);
  --navBg: #985398;

  --homeY: 110px;
  --homeScale: 2.0;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--navBg);
  color: #fff;
}

@font-face{
  font-family: "headerfont";
  src: url("./assets/fonts/AMORIA.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.card{
  border-radius: 28px;
  padding: 28px 16px;
  display: grid;
  place-items: center;
  font: 400 24px/1.1 system-ui;
  font-weight: 700;
  color: #985398;
  background: #ffffff; 
  text-align: center;
}


.contact{
  --wm:rgba(255,255,255,.22);
  --fieldBorder:rgba(255,255,255,.55);
  --fieldBg:#ffffff;
  --text:#ffffff;

  position:relative;
  overflow:hidden;
  background:var(--bg);
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 56px);
}
.contact, .contact * { box-sizing: border-box; }

.contact-checkbox{
  margin: 24px 0 32px;
}

.contact-checkbox label{
  display: flex;
  align-items: center;
  gap: 12px;

  color: rgba(255,255,255,.9);
  font-size: 20px;
  line-height: 1.4;
  cursor: pointer;
}

/* checkbox styling */
.contact-checkbox input[type="checkbox"]{
  width: 16px;
  height: 16px;
  accent-color: #ffffff; /* modern browsers */
  cursor: pointer;
}


/* flower asset on the right */
.contact-flower{
  position:absolute;
  right:-120px;
  top: clamp(10px, 10vh, 90px);
  width: clamp(320px, 38vw, 560px);
  aspect-ratio: 1 / 1;
  background: url("./assets/flower-outline.png") center/contain no-repeat; /* <-- change */
  opacity:.55;
  pointer-events:none;
  filter:saturate(0) brightness(1.8); /* remove if flower already light */
}

.contact-inner{
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* big watermark title */
.contact-title{
  margin: 0 0 clamp(22px, 4vw, 44px);
  text-align: center;
  font-family:"Amoria","Didot","Bodoni Moda",serif;
  font-weight:500;
  color: var(--wm);
  font-size: clamp(72px, 8vw, 150px);
  line-height: .85;
  letter-spacing: .4px;
}

/* form sizing/placement to match mock */
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;                 /* vertical spacing between rows */
}

/* two inputs row */
.contact-row{
  display: flex;
  gap: 18px;                 /* space between Name and Email */
  margin: 0;                 /* remove your margin-bottom; we use gap now */
}

.contact-row input{
  flex: 1 1 0;
  min-width: 0;              /* prevents overflow on small widths */
}

.contact-form input,
.contact-form textarea{
  background: var(--fieldBg);
  border: 2px solid var(--fieldBorder);
  border-radius: 10px;
  padding: 14px 18px;        /* slightly tighter like your mock */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  color: #222;
  outline: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
  width: 100%;               /* OK for textarea + any single-line fields */
}

/* match the tall message box */
.contact-form textarea{
  min-height: 150px;
  resize: none;              /* matches your mock (no resize handle) */
}

/* placeholders similar to screenshot */
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: rgba(0,0,0,.6);
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 0 0 4px rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.16);
}

/* send button as full-width thin bordered pill */
.contact-btn{
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
}

.contact-btn:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.85);
  transform: translateY(-1px);
}

.contact-btn:active{
  transform: translateY(0);
}

.expect{
  --title: rgba(170, 120, 175, .35);
  --ink: #1f1f1f;
  --paper: #ffffff;

  background: var(--paper);
  overflow: hidden;
}

.expect-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr; 
  min-height: clamp(420px, 60vh, 620px);
}

/* LEFT image (from assets) */
.expect-photo{
  background-image: url("./assets/imgs/DSC09408.jpg"); /* <-- change filename */
  background-size: cover;
  background-position: 40% 50%;
  min-height: 360px;
}

/* RIGHT content */
.expect-content{
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.2vw, 26px);
}

/* big watermark title */
.expect-title{
  margin: 0;
  color: var(--title);
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: clamp(64px, 6.5vw, 120px);
  line-height: .82;
  letter-spacing: .5px;
}

/* bullets */
.expect-list{
  margin: 0;
  padding-left: 18px; /* default bullet indent */
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.45;
  max-width: 46ch;
}

.expect-list li{ margin: 10px 0; }
.expect-note{ opacity: .85; }

/* decorative flower (from assets) */
.expect-flower{
  position: absolute;
  left: clamp(-120px, -8vw, -60px);
  bottom: clamp(-120px, -9vw, -70px);
  width: clamp(320px, 38vw, 520px);
  aspect-ratio: 1 / 1;
  background-image: url("./assets/flower-outline.png"); /* <-- change filename */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: .45;
  pointer-events: none;

  /* If your flower asset is already light/pastel, remove this filter */
  filter: saturate(0) brightness(1.7);
}

.featured-producers{
  font-weight: 300;
  font-size: 23px;
  margin-inline: 50px;
}

.flower-deco{
  display: grid;
  place-items: center;
}

.flower-deco img{
  width: clamp(78px, 10vw, 140px);
  height: auto;
  display: block;
}

.flower-deco img{
  width: 160px;
  height: auto;
} 

.footer-inner{
  /* max-width: 1120px; */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top content */
.footer-cols{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 44px;
  align-items: start;
}

.footer-col--right{
  justify-self: end;
  text-align: right;
  display: none;
}

.footer-title{
  margin: 0 0 12px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-title--spaced{
  margin-top: 22px;
}

.footer-line{
  margin: 6px 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.footer-line a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.footer-line a:hover{
  border-bottom-color: rgba(255,255,255,.8);
}

.footer-links{
  display: grid;
  gap: 6px;
}

.footer-links a{
  color: var(--muted);
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
}

.footer-links a:hover{
  color: var(--text);
}

.footer-links--right{
  justify-items: end;
}

/* Big watermark phrase (bottom-left) */
.footer-mark{
  position: absolute;
  /* left: clamp(-800px, -10vw, -60px);
  bottom: clamp(-70px, -8vw, -400px); */
  line-height: .78;
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: clamp(90px, 10vw, 170px);
  color: var(--wm);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  transform: translateY(80px);
}

.get-involved{
  position: relative;
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 70px);
  overflow: hidden;
}

.get-involved .gi-left{
  position: absolute;
  left: clamp(-10px, -2vw, 0px);
  top: clamp(10px, 3vw, 40px);
  width: 120%;
  z-index: 0;
  pointer-events: none;
}

.get-involved .gi-title{
  line-height: 0.80;
  color: rgba(183, 135, 183, .55);
  letter-spacing: 0.02em;
  user-select: none;
  font-family: "headerfont", ui-serif, Georgia, serif;
}

.get-involved .gi-text,
.get-involved .gi-involved{
  display:block;
  font-size: clamp(120px, 10vw, 240px);
}

.get-involved .gi-wrap{
  position: relative;
  z-index: 1;

  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(22px, 3.5vw, 60px);
  align-items: start;

  padding-top: clamp(70px, 8vw, 130px);
}

.get-involved .gi-tabs{
  display: flex;
  flex-direction: column;

  border-top: 2px solid rgba(255,255,255,.75);
}

.get-involved .gi-tab{
  appearance: none;
  border: 0;
  background: transparent;

  color: #fff;
  text-align: left;
  width: 100%;

  font: 700 clamp(22px, 2.1vw, 34px) ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  padding: clamp(18px, 2vw, 22px) 14px;
  cursor: pointer;

  border-bottom: 2px solid rgba(255,255,255,.75);

  transition: background 220ms ease, transform 220ms ease, opacity 220ms ease;
  opacity: .92;
  position: relative;
}

.get-involved .gi-tab:hover{
  background: rgba(234, 222, 234, .22);
  transform: translateX(6px);
  opacity: 1;
}

.get-involved .gi-tab.is-active{
  background: rgba(234, 222, 234, .28);
  opacity: 1;
}

.get-involved .gi-tab::after{
  content:"↗";
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  font-size: 18px;
}

.get-involved .gi-tab:hover::after,
.get-involved .gi-tab.is-active::after{
  opacity: .9;
  transform: translateY(-50%) translateX(0);
}

.get-involved .gi-tab:focus-visible{
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.get-involved .gi-panels{
  position: relative;
  min-height: clamp(280px, 38vh, 520px);
}

.get-involved .gi-panel{
  position: absolute;
  inset: 0;

  opacity: 0;
  pointer-events: none;

  transform: translateY(10px);
  filter: blur(2px);

  transition: opacity 280ms ease, transform 320ms cubic-bezier(.2,.8,.2,1), filter 320ms ease;
}

.get-involved .gi-panel.is-active{
  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);
  filter: blur(0);
}

.get-involved .gi-copy{
  max-width: 70ch;
}

.get-involved .gi-copy p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.95);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(18px, 1vw, 14px);
  line-height: 1.4;
}

.get-involved .gi-lead{
  font-style: italic;
  font-weight: 700;
}

.get-involved .gi-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  background: #ffffff25;
  padding: 20px;
  border-radius: 20px;
  border-style: solid;
  border-color: #ffffff;

  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;

  text-decoration: none;
  opacity: .95;
  /* border-bottom: 1px solid rgba(255,255,255,.65); */

  transition: opacity 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.get-involved .gi-cta:hover{
  opacity: 1;
  transform: translateX(4px);
  background: #ffffff55;
  border-color: rgba(255,255,255,.95);
}

/* =========================
   GET INVOLVED — tabs like reference
   Lines always, active row breaks line, arrows always visible
   ========================= */

   .get-involved .gi-wrap{
    grid-template-columns: minmax(380px, 560px) 1fr;
    gap: clamp(34px, 5vw, 90px);
    padding-top: clamp(140px, 12vw, 210px);
  }
  
  /* LEFT RAIL */
  .get-involved .gi-tabs{
    position: relative;
    border-top: 0;
    padding-left: clamp(36px, 4vw, 64px); /* inset like ref */
  }
  
  /* Top rule (always visible) */
  .get-involved .gi-tabs::before{
    content:"";
    position:absolute;
    /* left: clamp(36px, 4vw, 64px); */
    right: 0;
    top: 0;
    height: 2px;
    background: rgba(255,255,255,.75);
    left: 20px;   /* ← extend line to the left */

    
  }
  
  /* TAB ROW */
  .get-involved .gi-tab{
    position: relative;
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
  
    font-weight: 800;
    font-size: clamp(26px, 2.5vw, 44px);
    letter-spacing: 0.01em;
    color: #fff;
  
    padding: clamp(18px, 2.2vw, 26px) 0;
    padding-right: 56px; /* space for arrow */
  
    /* important: keep text above line + mask */
    z-index: 1;
  }
  
  /* Arrow always visible (right side) */
  .get-involved .gi-tab::after{
    content:"↗";
    position:absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255,255,255,.95);
    opacity: .95;
  }
  
  /* Separator line under each tab (always visible) */
  .get-involved .gi-tab::before{
    content:"";
    position:absolute;
    bottom: 0;
    height: 2px;
    background: rgba(255,255,255,.75);
    opacity: .9;
    left: -40px;   
  right: 0;
  
    z-index: 0;
  }
  
  /* Subtle hover */
  .get-involved .gi-tab:hover{
    background: rgba(255,255,255,.06);
  }
  
  /* Active: slight highlight like reference */
  .get-involved .gi-tab.is-active{
    background: rgba(255,255,255,.10);
  }
  
  /* ---- THE KEY PART ----
     Prevent the separator from crossing active text by "masking" behind the text.
     We do this by placing a pseudo element behind the text area, matching the section bg.
  */
  .get-involved .gi-tab.is-active{
    /* make sure the background highlight stays */
    box-shadow: none;
  }
  
  /* Mask strip: covers the line only in the middle where the text sits */
  .get-involved .gi-tab.is-active .gi-tab-label{ display:inline; } /* safe if you wrap label, optional */
  

  .get-involved .gi-tab.is-active::before{
    /* keep the separator line */
    background: rgba(255,255,255,.75);
  }
  
  .get-involved .gi-tab.is-active{
    background-size: 72% 6px;
  
    /* position it on the separator line */
    background-position: left 0 bottom -2px;
  }
  
  /* If you want the break to be centered (like ref), change the position: */
  .get-involved .gi-tab.is-active{
    background-position: center bottom -2px;
  }
  
  /* keep focus */
  .get-involved .gi-tab:focus-visible{
    outline: 3px solid rgba(255,255,255,.9);
    outline-offset: 6px;
  }

/* lock background scroll when any modal is open */
body.gi-modal-open{
  overflow: hidden;
}

/* modal wrapper */
.gi-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;

  /* position the box a bit lower + keep safe space bottom */
  padding-top: 12vh;
  padding-bottom: 6vh;

  /* allow the modal content to be centered horizontally */
  padding-left: clamp(14px, 3vw, 32px);
  padding-right: clamp(14px, 3vw, 32px);
}

.gi-modal.active{
  display: block;
}

/* dimmed background */
.gi-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* the dialog box */
.gi-modal-content{
  position: relative;
  z-index: 1;

  width: min(760px, 100%);
  margin: 0 auto;

  background: #fff;
  border-radius: 18px;

  /* internal spacing */
  padding: clamp(22px, 2.6vw, 36px);

  /* IMPORTANT: scroll inside the popup */
  max-height: calc(100vh - 18vh); /* accounts for padding-top/bottom above */
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  /* animation */
  transform-origin: top center;
  animation: giModalIn 260ms cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
}

/* close button stays reachable while scrolling */
.gi-modal-close{
  position: sticky;
  top: 0;
  margin-left: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  cursor: pointer;

  font-size: 26px;
  line-height: 1;

  /* sits above form content */
  z-index: 2;
}

.gi-modal-close:hover{
  background: rgba(0,0,0,0.10);
}

/* HubSpot container */
.hs-form-frame{
  width: 100%;
}

/* HubSpot often injects an iframe — ensure it fits */
.hs-form-frame iframe,
iframe.hs-form-iframe{
  width: 100% !important;
  border: 0 !important;
  display: block;
}

/* if HubSpot renders a long form, give it breathing room */
.gi-modal-content .hs-form-frame{
  margin-top: 10px;
}

/* animation */
@keyframes giModalIn{
  from{
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.grow-video{
  height: 260vh;             
  background: var(--navBg);
}

.grow-video .is-full .vid{
  border-radius: 0px;
  transition: border-radius 200ms linear;
}

.grow-video .sticky{
  position: sticky;
  top: var(--navH);
  height: calc(100vh - var(--navH));
  width: 100vw;              
  overflow: hidden;          
  display: grid;
  place-items: center;
  background: var(--navBg);
}

.gs-cities{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  transform: translateY(200px);
}

/* each city block: watermark code behind + white city text */
.gs-city{
  position: relative;
  min-height: 110px;
}

.gs-city-code{
  position: absolute;
  inset: auto auto auto 0;
  left: 0;
  top: 10px;
  color: rgba(255,255,255,.22);
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: clamp(54px, 7vw, 86px);
  letter-spacing: 1px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gs-city-main{
  position: relative;
  padding-top: 38px;
  padding-left: 6px;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.gs-city-name{
  font-style: italic; /* like your screenshot */
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.05;
}

.gs-city-date{
  margin-top: 4px;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: .95;
}

/* Positioning similar to screenshot */
.gs-city--london{ grid-column: 3 / span 4; }
.gs-city--hcmc { grid-column: 7 / span 4; justify-self: center; }
.gs-city--cdmx { grid-column: 5 / span 5; margin-top: clamp(14px, 2vw, 26px); }


.global-series{          
  --wm: rgba(255,255,255,.22);    
  --text: #ffffff;
  --flower: rgba(255,255,255,.35);

  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(48px, 7vw, 90px) clamp(22px, 5vw, 64px);
  min-height: 600px;

}

.gs-flower{
  position: absolute;
  width: clamp(180px, 28vw, 320px);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  opacity: .55;
  filter: saturate(0) brightness(2); 
}

.gs-flower--tl{
  top: -50px;
  left: -60px;
  background-image: url("./assets/graphics/Group 133.svg");
}

.gs-flower--br{
  right: -60px;
  bottom: -70px;
  background-image: url("./assets/graphics/Group 142.svg");
}

.gs-title{
  position: relative;
  z-index: 1;
  text-align: right;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.gs-kicker{
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: .2px;
  transform: translateY(55px);
}

.gs-watermark{
  position: absolute;
  right: 0;
  top: -6px;
  line-height: .9;
  text-align: right;
  color: var(--wm);
  font-family: "headerfont", ui-serif, Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.hero-frame{
  position: relative;
  width: 100vw;              
  height: 100%;              
  display: grid;
  place-items: center;
}

.hero-frame .vid{
  z-index: 2;    
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  border-radius: 28px;

  transform: scale(0.55);
  transform-origin: center;
  will-change: transform;
}

.hero-side{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 16vw, 260px);
  height: auto;

  pointer-events: none;
  user-select: none;

  z-index: 1;
  opacity: 0.95;
}

.hero-side--left{
  left: clamp(10px, 2vw, 24px);
}
.hero-side--right{
  right: clamp(10px, 2vw, 24px);
}


.hero-nav{
  position: sticky;     
  top: 0;              
  z-index: 50;         
  display: flex;
  align-items: center;
  gap: 44px;

  padding: 18px clamp(22px, 4vw, 54px);
  background: #985398;  
}
  
.hn-right{ margin-left: auto; }
  
.hn-link{
  color: #985398;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: opacity 160ms ease;
}
.hn-link:hover{ opacity: 0.75; }

/* If you want a subtle underline on hover */
.hn-link{
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 6px;
}
.hn-link:hover{
  text-decoration-color: #E0CBE0;
}

.hero-title{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  z-index: 60;
  pointer-events: none;
}
  
.ht-big{
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.85;
}

.ht-sub{
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: clamp(28px, 5vw, 72px);
  line-height: 0.9;
  opacity: 0.85;
}

.half-carousel{
  margin-top: 160px;
  /* margin-inline: 100px; */
  margin-block: 40px;
}

.hc-wrap{
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 4vw, 60px);
}

/* left content */
.hc-title{
  margin: 0 0 10px;
  /* font: 700 clamp(22px, 2.4vw, 40px) ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
  color: #fff;
  font-family: "headerfont", ui-serif, Georgia, serif;
  opacity: 20%;
  font-size: 80px;
  position: absolute;
}

.hc-place{
  margin: 0 0 10px;
  /* font: 700 clamp(22px, 2.4vw, 40px) ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; */
  color: #fff;
  font-family: "headerfont", ui-serif, Georgia, serif;
  opacity: 100%;
  font-size: 48px;
  margin-top: 40px;
  margin-left: 40px;
}

.hc-copy{
  margin: 0 0 18px;
  color: rgba(255,255,255,.9);
  font: 400 clamp(23px, 7.05vw, 16px)/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 50ch;
}

.hc-cta{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 4px;
  opacity: .95;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}
.hc-cta:hover{
  transform: translateX(4px);
  opacity: 1;
  border-color: rgba(255,255,255,.95);
}

/* right carousel */
.hc-right{
  position: relative;
}

/* optional arrows */
/* .hc-controls{
  top: 450px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
} */
.hc-controls{
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  transform: translateY(-50%);

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

  z-index: 5;

  /* make overlay not block swipe/scroll except on buttons */
  pointer-events: none;
}

/* .hc-btn{
  width: 55px;
  height: 55px;
  border: none; 
  background: none; 
  color: #fff;
  font-size: 72px;
  cursor: pointer;
  z-index: 3;
} */

.hc-btn{
  pointer-events: auto; /* buttons still clickable */
  width: 55px;
  height: 55px;
  border: none;
  background: none;
  color: #fff;
  font-size: 72px;
  cursor: pointer;
  z-index: 6;
}
/* .hc-btn:hover{ transform: translateY(-1px); } */
.hc-btn:disabled{ opacity: .35; cursor: default; transform: none; }

/* scroll area */
.hc-viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  /* hide scrollbar */
  scrollbar-width: none;
  border-radius: 18px;
}
.hc-viewport::-webkit-scrollbar{ display: none; }

.hc-track{
  display: grid;
  grid-auto-flow: column;

  /* change this to control image width */
  grid-auto-columns: minmax(72%, 1fr);
  gap: 14px;

  padding: 0; /* clean edge */
}

/* each slide */
.hc-item{
  margin: 0;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  height: clamp(260px, 32vw, 520px); /* the carousel height */
}

/* image fits nicely (no stretching) */
.hc-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-wrap.is-reversed{
  grid-template-columns: 1fr 1fr;
  padding-top: 150px;
}

.hc-wrap.is-reversed .hc-right{
  grid-column: 1;
  grid-row: 1;
}

.hc-wrap.is-reversed .hc-left{
  grid-column: 2;
  position: relative;
  grid-row: 1;
}

.media{
  max-width: 100%;
  height: auto;
  border-radius: 28px;
}

.mission-banner{
  background: #fff;
  padding: clamp(26px, 3.5vw, 44px) clamp(18px, 5vw, 70px);
  margin-top: 50px;

  display: grid;
  grid-template-columns: 160px 1fr 160px;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.mission-text{
  margin: 0;
  text-align: center;
  color: #7A3C7A; /* slightly darker purple for readability */
  font: 700 clamp(18px, 2.1vw, 28px)/1.25 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mission_banner{
  display: flex;
  background-color: #ffffff;
  padding: 56px;
  justify-content: center;
}

.mission-text{
  display:flex;
  color: #985398;
  max-width: 800px;
  margin-inline: 80px;
  font-size: 20px;
  align-items: center;
}

.nav-home{
  position:absolute;
  left:50%;
  top:-120px;

  /* translate only */
  transform: translate(-50%, var(--homeY));
  transform-origin: center top;

  z-index:1000;
  will-change: transform;
}

.nav-home-big{
  display: block;
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: 34px;
}

.nav-inner{
  height: 100%;
  position: relative;
  padding: 0 var(--navPadX);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left, .nav-right{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link{
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 160ms ease;
}
.nav-link:hover{ opacity: .75; }

#navHomeLogo{
  transform: scale(var(--homeScale));
  transform-origin: center top;

  image-rendering: auto;
  will-change: transform;
}

.nav-home-sub{
  display: block;
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: 16px;
  opacity: 0.85;
}


.press{
  --wm: rgba(255,255,255,.22);
  --text: #ffffff;

  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 56px);
  margin-block: 64px;
}

/* decorative flowers from assets */
.press-flower{
  position: absolute;
  width: clamp(260px, 34vw, 460px);
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .55;
  pointer-events: none;

  /* remove if your flower is already light */
  filter: saturate(0) brightness(1.8);
}

.press-flower--tl{
  top: -120px;
  left: -130px;
  background-image: url("./assets/flower-outline.png"); /* <-- change */
}

.press-flower--br{
  bottom: -140px;
  right: -140px;
  background-image: url("./assets/flower-outline.png"); /* <-- change */
}

.press-inner{
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.press-title{
  margin: 0 0 clamp(26px, 4vw, 40px);
  text-align: right;
  font-family: "Amoria", "Didot", "Bodoni Moda", serif;
  font-weight: 500;
  line-height: .82;
  letter-spacing: .4px;
  color: var(--wm);
  font-size: clamp(64px, 7vw, 124px);
}

.press-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
}

.press-card{
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  outline: none;
}

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

.press-card-logo{
  min-height: 170px; 
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
}

.press-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(0,0,0,.32);
}

.press-card:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,255,255,.9), 0 0 0 7px rgba(0,0,0,.25);
}

.press-note{
  margin: clamp(22px, 4vw, 38px) auto 0;
  max-width: 70ch;
  text-align: center;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.25;
}

.press-note em{ font-style: italic; }
.press-note strong{ font-weight: 800; }

.pe-row{
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: end;
}

.pe-text-2025{
  flex-grow: 1;
  padding: 50px;
}

.pe-title{
  font-family: "headerfont", ui-serif, Georgia, serif;
  font-size: 100px;
  opacity: 30%;
  margin-bottom: 48px;
}

.past-featured-producers{
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding-inline: 300px;
  padding-block: 100px;
  margin-block: 100px;
  align-items: center;
  justify-content: center;
}

.past-featured-producers h1{
  color: #7A3C7A;
  font-size: 5vh;
}

.past-featured-producers p{
  color: #7A3C7A;
  font-size: 4vh;
  text-align: center;
}

.pe-video{
  width: 100%;
  height: auto;
}

.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.row[data-from="left"]  .slide{ --from-x: -80px; }
.row[data-from="right"] .slide{ --from-x:  80px; }

.row.in-view .slide{
  opacity: 1;
  transform: translateX(0);
}

.row.in-view .slide:nth-child(1){ transition-delay: 0ms; }
.row.in-view .slide:nth-child(2){ transition-delay: 120ms; }

.site-footer{
  --text:#ffffff;
  --muted:rgba(255,255,255,.85);
  --wm:rgba(255,255,255,.18);

  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  padding: clamp(44px, 6vw, 80px) clamp(18px, 5vw, 56px);
  min-height: clamp(540px, 55vh, 560px);
}

.site-nav{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navBg);
  height: var(--navH);
}

.slide{
  opacity: 0;
  transform: translateX(var(--from-x, 0px));
  transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms ease;
  will-change: transform, opacity;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.top_menu_link{
  height: 175px;
  width: auto;
}


.tri-viewport{
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.tri-controls{
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  gap: 12px;
}

.tri-track{
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 32px;
}

.tri-item{
  margin: 0;
  flex: 0 0 auto;
  width: 260px;
  height: 340px;
  overflow: hidden;
  border-radius: 18px;
  /* transition: width 420ms ease, height 420ms ease; */
  transition: transform 420ms ease;
}

/* Featured (first visible) */
.tri-item.is-focused{
  width: 360px;
  height: 460px;
}

/* Images */
.tri-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Buttons (match your style) */
.tri-btn{
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tri-btn:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.85);
}

.wiws-intro{
  background: #985398; 
  overflow: hidden;
}

.video-container{
  display: flex;
  margin: auto;
  max-width: 95%;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.wiws-wrap{
  position: relative;
  margin: 0 auto;

  display: flex;
  flex-direction:row;
  grid-template-columns: 1.25fr 0.75fr; 
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  background: #ffffff;
}
  
.wiws-copy{
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  max-width: 820px;

  column-count: 2;
  column-gap: clamp(22px, 4vw, 52px);

  color: #7A3C7A;
  font: 400 16px/1.45 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding-block: 50px;
  padding-inline: 50px;
}

.wiws-row{
  display:flex;
  flex-direction: row;
}
  
.wiws-copy p{
  margin-inline: 28px;
  font-size: 1.25vw;
  flex-grow: 1;
}
  
.wiws-media{
  position: relative;
  z-index: 2;
  margin: 0;

  justify-self: end;
  align-self: center;
}

.wiws-media img{
  width: min(560px, 44vw);
  height: auto;
  display: block;

  border-radius: 18px; 
}

.wiws-wm{
  left: 0;
  bottom: 0;

  width: 100%;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
  
.wiws-wm span{
  bottom: clamp(8px, 1.4vw, 34px);
  font-family: "headerfont", ui-serif, Georgia, serif;
  line-height: .9;
  letter-spacing: 0.01em;

  color: #985398;
  opacity: 30%;
  white-space: nowrap;
}
  
.wiws-wm .wm-left{
  font-size: clamp(60px, 2vw, 80px);
}
  
.wiws-wm .wm-mid{
  font-size: clamp(70px, 4vw, 150px);
}

.wws-grid{
  display: grid;
  gap: 28px;
  max-width: 1100px;
  margin: 100px auto;
}


.wm-2026{
  display: block;
  font-size: clamp(54px, 8vw, 96px);
}

.wm-series{
  display: block;
  font-size: clamp(74px, 10vw, 120px);
  margin-top: -8px;
}
  
  @media (prefers-reduced-motion: reduce){
    .hero-frame .vid{ transform: scale(1) !important; }
  
    .get-involved .gi-tab,
    .get-involved .gi-panel{ transition: none !important; }
  
    .get-involved .gi-panel{ transform: none !important; filter: none !important; }
  
    .vid{ transform: scale(1) !important; }
  
    *{ scroll-behavior: auto !important; }
  
    .slide{ transition: none; opacity: 1; transform: none; }
  }

  @media (max-width: 1024px){
    .hero-side{ display:none; }

    .get-involved .gi-wrap{
      grid-template-columns: 1fr;
      gap: 18px;
      padding-top: clamp(40px, 7vw, 80px);
    }
  
    .get-involved .gi-tabs{
      border-top: 0;
    }
  
    .get-involved .gi-tab{
      text-align: center;
    }
  
    .get-involved .gi-tab:hover{
      transform: none;
    }
  
    .get-involved .gi-panels{
      min-height: 0;
    }
  
    .get-involved .gi-panel{
      position: relative;
      inset: auto;
    }
  
    .get-involved .gi-panel:not(.is-active){
      display: none;
    }

    .get-involved .gi-tabs{ padding-left: 0; }
    .get-involved .gi-tabs::before{ left: 0; }

    .wiws-wrap{
      grid-template-columns: 1fr;
      gap: 22px;
      padding: 44px 0 50px;
    }
  
    .wiws-media{
      justify-self: start;
    }
  
    .wiws-media img{
      width: min(720px, 92vw);
    }
  
    /* stop columns on smaller screens */
    .wiws-copy{
      column-count: 1;
      max-width: 70ch;
    }
  
    /* reposition the watermark so it doesn’t collide */
    .wiws-wm .wm-left{
      left: 0;
    }
  
    .wiws-wm .wm-mid{
      left: clamp(220px, 45vw, 520px);
      bottom: clamp(40px, 7vw, 90px);
    }
  
    .mission-banner{
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .flower-deco{
      order: 2;
    }
    .mission-text{
      order: 1;
    }

    .pe-row{
      grid-template-columns: 1fr;
    }


  .wws-grid{
    display: grid;
    gap: 0px;
    max-width: 1100px;
    margin: 0px auto;
  }

    .row{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0px;
      align-items: stretch;
    }

    .card{
      border-radius: 0px;
    }
  
    .media{
      border-radius: 0px;
    }

    .mission-banner{
      margin-top: 0px;
      padding-top: 150px;
    }

    .tri-item{
      width: 220px;
      height: 300px;
    }
  
    .tri-item.is-focused{
      width: 300px;
      height: 380px;
    }

    .footer-cols{ grid-template-columns: 1fr; }
    .footer-col--right{ justify-self: start; text-align: left; }
    .footer-links--right{ justify-items: start; }
    .footer-mark{
      left: -40px;
      bottom: -30px;
      font-size: clamp(64px, 12vw, 120px);
      white-space: normal;
    }

    .press-title{ text-align: left; }
    .press-cards{ grid-template-columns: 1fr; }
    .press-card{ border-radius: 22px; }

    .expect-grid{ grid-template-columns: 1fr; }
    .expect-photo{ min-height: 320px; }
    .expect-title{ font-size: clamp(54px, 12vw, 92px); }
    .expect-list{ max-width: 60ch; }
    .expect-flower{
      left: -80px;
      bottom: -110px;
      width: 420px;
    }

    .gs-title{ text-align: left; }
    .gs-watermark{ right: auto; left: 0; text-align: left; }
    .gs-cities{ grid-template-columns: 1fr; }
    .gs-city--london,
    .gs-city--hcmc,
    .gs-city--cdmx{ grid-column: auto; justify-self: start; margin-top: 0; }

    .wiws-wrap{
      display: flex;
      flex-direction: column;          /* ✅ important */
      gap: 18px;
      padding: 50px;
      justify-content: center;
    }

    .wiws-copy{
      max-width: none;
      width: 100%;
      column-count: 1;                 /* kill columns */
      padding: 22px 18px 50px;        /* bottom padding = room for watermark */
      position: relative;              /* anchor watermark */
    }

    .wiws-row{
      display: flex;
      flex-direction: column;          
      gap: 24px;
    }

    .wiws-copy p{
      margin: 0;                       /* remove big inline margins */
      flex-grow: 0;
      font-size: 16px;                 /* override 1.25vw */
      line-height: 1.55;
    }
  
    .wiws-media{
      width: 100%;
      padding: 0 18px 18px;
      align-self: stretch;
    }
  
    .wiws-media img{
      width: 100%;
      height: auto;
      border-radius: 18px;
    }

    .wiws-wm{
      /* position: absolute; */
      left: 18px;
      right: 18px;
      bottom: 14px;
      z-index: 0;                      
      pointer-events: none;
      user-select: none;
      margin-top: 50px;
  
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
  
    /* Put the text above the watermark */
    .wiws-row{
      position: relative;
      z-index: 1;
    }
  
    .wiws-wm span{
      white-space: normal;             /* ✅ allow wrapping */
      opacity: 0.18;                   /* softer */
      line-height: 0.8;
      /* letter-spacing: 0.6em; */
      color: #985398;
    }
  
    .wiws-wm .wm-left{
      font-size: clamp(42px, 12vw, 76px);
    }
  
    .wiws-wm .wm-mid{
      font-size: clamp(44px, 13vw, 84px);
    }

    .video-container{
      display: flex;
      margin: auto;
      max-width: 95%;
      align-items: center;
      justify-content: center;
      margin-top: 100px;
    }
  
    .pe-video{
      width: 100%;
      height: auto;
    }

    .site-footer{
      --text:#ffffff;
      --muted:rgba(255,255,255,.85);
      --wm:rgba(255,255,255,.18);
    
      position: relative;
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
      padding: clamp(44px, 6vw, 80px) clamp(18px, 5vw, 56px);
      min-height: clamp(240px, 35vh, 560px);
    }

    .footer-mark{
      position:relative;
      line-height: .75;
      font-family: "headerfont", ui-serif, Georgia, serif;
      font-size: clamp(65px, 2vw, 170px);
      color: var(--wm);
      pointer-events: none;
      user-select: none;
      z-index: 0;
      white-space: nowrap;
      transform: translateX(30px);
    }
  }
  

  @media (max-width: 768px){
    :root{ --navH: 64px; }
    .nav-inner{ gap: 16px; }
    .nav-home-big{ font-size: 10px; }
    .nav-home-sub{ font-size: 14px; }

    .nav-home{
      display:flex;
      top:-120px;
    }
    
    #navHomeLogo{
      position:static;
    }

    .half-carousel{
      margin-inline: 40px;
      margin-block: 40px;
    }

    .hc-wrap{
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }

    .hc-item{
      height: clamp(220px, 55vw, 420px);
    }
    .hc-controls{
      top: 8px;
      right: 8px;
    }

    .contact-title{ text-align:left; }
    .contact-form{ width: min(680px, 92vw); }
    .contact-row{ grid-template-columns: 1fr; }
    .contact-flower{ right:-180px; opacity:.4; }

    .video-container{
      display: flex;
      margin: 0px;
      max-width: 100%;
      align-items: center;
      justify-content: center;
      margin-top: 50px;
    }
  
    .pe-video{
      width: 100%;
      height: auto;
    }
  }
  
  /* =========================
     SMALL PHONES (<=480px) optional
     ========================= */
  @media (max-width: 480px){

    .gi-modal{
      padding-top: 7vh;
      padding-bottom: 4vh;
    }
    .gi-modal-content{
      border-radius: 14px;
      padding: 18px;
      max-height: calc(100vh - 11vh);
    }

    .wiws-copy{
      padding: 20px 16px 110px;
    }
  
    .wiws-copy p{
      font-size: 16px;
      line-height: 1.6;
    }
  
    .wiws-wm{
      left: 16px;
      right: 16px;
      bottom: 12px;
    }
  
    .wiws-wm .wm-left{
      font-size: clamp(40px, 13vw, 70px);
    }
  
    .wiws-wm .wm-mid{
      font-size: clamp(42px, 14vw, 76px);
    }

    /* .hc-left{
      display: flex;
      padding: 50px; 
    }

  .hc-wrap.is-reversed{
    padding-top: 0;           
  }

  .hc-wrap.is-reversed .hc-left,
  .hc-wrap.is-reversed .hc-right{
    grid-column: 1 / -1;      
    grid-row: auto;           
  }

  .hc-wrap.is-reversed .hc-left{ order: 0; }
  .hc-wrap.is-reversed .hc-right{ order: 1; } */

  .hc-wrap,
  .hc-wrap.is-reversed{
    grid-template-columns: 1fr !important;
    gap: 18px;
    align-items: start;
  }

  .hc-wrap.is-reversed{
    padding-top: 0;
  }

  .hc-wrap.is-reversed .hc-right,
  .hc-wrap.is-reversed .hc-left{
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .hc-wrap.is-reversed .hc-left{ order: 0; }
  .hc-wrap.is-reversed .hc-right{ order: 1; }

}