/* ========================================
   The Power of Slow - Expo West 2026
   Mobile-first responsive styles
   ======================================== */

/* CSS Custom Properties */
:root {
  /* Earthy/Organic Color Palette */
  --color-forest: #2d4a3e;
  --color-forest-dark: #1e3329;
  --color-sage: #7d9b8a;
  --color-sage-light: #a8c4b5;
  --color-sand: #e8dfd0;
  --color-sand-light: #f5f1eb;
  --color-terracotta: #c17f59;
  --color-terracotta-dark: #a86942;
  --color-cream: #faf8f5;
  --color-charcoal: #2c2c2c;
  --color-charcoal-light: #4a4a4a;

/*====== SLOW BRANDING COLORS ======*/
  --forest:#1F4E3A;
  --sand:#F3EEDC;
  --peach-sand:#FCF3E5;
  --orange:#E6761D;
  --chartreuse: #d4f04a;
  --pistachio: #8baa00e3;
  --ink: rgba(243, 238, 220, 0.92);
  --ink-soft: rgba(243, 238, 220, 0.78);
  /*==============================*/

  /* Functional Colors */
  --color-success: #4a7c59;
  --color-error: #b85450;
  --color-text: var(--color-charcoal);
  --color-text-muted: var(--color-charcoal-light);
  --color-bg: var(--color-cream);

  /*====== Typography======*/
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Bricolage Grotesque", system-ui, sans-serif;
  --font-headline: "Righteous", system-ui, sans-serif;
  --font-poppins: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /*==============================*/

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  
  /*====BASE: SLOW FONT====*/
  font-size: 19px; 

} /* end root*/

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-forest);
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/*=========TYPOGRAPHY HIERARCHY============*/
h1,
h2,
h3 {
  font-family: var(--font-headline);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.25rem;
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-primary {
    background: var(--orange);
    font-size: 1.2rem;
    border-radius: 999px;
    font-family: 'Poppins';
    color: #fff;
}

.btn-primary .ph i{
    font-size: 1.2rem;
    color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-terracotta-dark);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  background-color: var(--color-sage);
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
}

.btn-secondary:hover {
  background-color: var(--color-forest);
  color: white;
}

.btn-full {
  width: 100%;
}

.btn .btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}


/*========== + NAV + ===========*/
/* NAV ONLY — uses root tokens:
*/

.nav--wrap{
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(14px);
  /*-webkit-backdrop-filter: blur(14px);
  background: rgba(31, 78, 58, 0.72); /* forest w/ transparency */
  background-color: var(--forest);
  border-bottom: 1px solid rgba(243, 238, 220, 0.14);
}

/* bar */
.nav--bar{
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

/* brand */
.nav--brand{
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
}

.nav--brand-text{
  font-family: var(--font-headline);
  font-size: 1.3em;
  text-transform: uppercase;
}

.nav--brand-accent{
  color: var(--orange);
}

/* links */
.nav--links{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav--link{
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav--link i{
  font-size: 18px;
  color: var(--ink-soft);
}

.nav--link:hover{
  color: var(--ink);
  background: rgba(243, 238, 220, 0.08);
  transform: translateY(-1px);
}

/* actions */
.nav--actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* button */
.nav--btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border: 2px solid var(--orange);
  background: rgba(243, 238, 220, 0.08);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.nav--btn i{ font-size: 1.3rem }

.nav--btn:hover{
  background: rgba(243, 238, 220, 0.12);
  border-color: rgba(243, 238, 220, 0.24);
  transform: translateY(-1px);
}

/* primary button */
.nav--btn-primary{
  background: rgba(230, 118, 29, 0.04);
  border-color: var(--orange);
  border: 2px solid;
}

.nav--btn-primary:hover{
   border-color: rgba(230, 118, 29, 0.9);
  background: rgba(230, 118, 29, 0.05);
}

/* icon button (hamburger) */
.nav--icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 238, 220, 0.18);
  background: rgba(243, 238, 220, 0.07);
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.nav--icon-btn:hover{
  background: rgba(243, 238, 220, 0.11);
  border-color: rgba(243, 238, 220, 0.26);
  transform: translateY(-1px);
}

.nav--icon-btn i{ font-size: 20px; }

/* drawer (mobile menu) */
.nav--drawer{
  display: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 16px;
  gap: 10px;
}

.nav--drawer[data-open="true"]{
  display: grid;
}

.nav--drawer-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(243, 238, 220, 0.06);
  border: 1px solid rgba(243, 238, 220, 0.14);
}

.nav--drawer-link i{
  font-size: 18px;
  color: var(--ink-soft);
}

.nav--drawer-btn{
  background: rgba(212, 240, 74, 0.14); /* chartreuse tint */
  border-color: rgba(212, 240, 74, 0.34);
}

/* responsive rules */
@media (max-width: 820px){
  .nav--brand-text{ font-size: var(--space-md) }
  .nav--link-text{ display: none; } /* desktop links become icon-only */
  .nav--links{ gap: 10px; }
  .nav-updates-btn {display: block;}
}

@media (max-width: 640px){
  .nav--links{ display: none; }    
  .nav--toggle{ display: inline-flex; }
  .nav-updates-btn {display: none;}
}

@media (min-width: 641px){
  .nav--toggle{ display: none; } /* no hamburger on desktop */
  .nav--drawer{ display: none !important; }
}


/*end of nav*/


/* ===================== Hero Section================== */


/* HERO BACKDROP  */
.hero{
  min-height:98vh;
  height: 100%;
  display:flex;
  overflow: hidden;
  align-items:stretch;
  justify-content:center;
  padding: 40px 24px 0px;
  position:relative;
  /* deep green, slightly vignetted */
  background:
  radial-gradient(1400px 700px at 50% 45%, rgba(255, 255, 255, 0.07), transparent 62%),
  radial-gradient(1100px 800px at 50% 70%, rgba(0, 0, 0, 0.16), transparent 70%),
  linear-gradient(180deg, #1b4a38 0%, #183f31 100%);

}

/* subtle texture overlay */


.hero-inner{
  width:min(900px, 100%);
  text-align:center;
  position:relative;
  justify-content: space-between;
  display: flex;
  z-index: 2;
  flex-direction: column;

}

/* Countdown */
.countdown{
  color:var(--sand);
}
.countdown-time{
  font-family:"Righteous";
  font-size:28px;
  letter-spacing:0.20em;
  display:flex;
  justify-content:center;
  align-items:baseline;
  gap:14px;
}
.countdown-time .num{
  min-width:2ch;
}
.countdown-time .dot{
  opacity:0.8;
}
.countdown-labels{
  margin-top:2px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
  font-size:12px;
  letter-spacing:0.22em;
  color:rgba(243,238,220,0.5);
}

/*container-headline-cta*/
.container--headline-bucket{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

/* Title */
.hero-title{
  /* good across sizes */
  font-size: clamp(18px, 3.6vw, 34px);
  text-shadow: 2px 2px 4px #000, -2px -2px 4px #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  z-index: 4;
  color: var(--sand);
  max-width: 22ch;
  margin-inline: auto;
  text-wrap: balance; /* modern browser fix */
}


.hero-title,
.hero-headline,
.hero h1 {
  text-shadow:
    0 1px 0 rgba(0,0,0,.28),
    0 6px 18px rgba(0,0,0,.28),
    0 18px 44px rgba(0,0,0,.22);
}



@media (max-width: 640px){
  .hero-title{
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.08;
    max-width: 20ch;
  }
}



.accent{ color:var(--orange); }

.eyebrow-topmost-countdown-title {
font-size:14px;
  letter-spacing:0.22em;
  color:rgba(243,238,220,0.75);
  text-transform: uppercase;
}

/*big SLOW logo*/
.big-hero-image-logo{
  opacity: .25;
  transform: scale(1.4);
  padding: 0 1rem;
}


/* Can image */
.hero-visual{
    margin: 0;
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* above background text, below nav if needed */
}
.hero-visual img{
    max-height: 90vh;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.35));
}

/* HERO — mobile override */
@media (max-width: 640px){
  .hero-visual{
    left: 50%;
    bottom: 0;              
    transform: translateX(-50%);
    width: 100%;
    pointer-events: none;      /* block tap */
  }

  .hero-visual img{
    width: clamp(320px, 95vw, 520px);  /* <-- bigger on mobile */
    max-height: 95vh;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}



  
/*--OPTION 1 END-*/

.btn{
  padding:14px 22px;
  border-radius:999px;
  text-decoration:none;
  text-align: center;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
}


/* CTA ROW SLIDING BUTTONS OPTION */
.cta-row{
position: relative;
display: inline-flex;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
z-index: 999;
gap: 8px;
padding: 0.5rem;
border-radius: 999px;
background: rgba(243, 238, 220, .7);
backdrop-filter: blur(6px);
}

@media (width <= 600px){
  .cta-row{
    position:relative;
    display:flex;
    flex-direction: row;
    align-items:center;
    justify-content: center;
    z-index: 999;
    gap:8px;
    padding: 0.5rem;
    border-radius:999px;
    background: rgba(243,238,220,0.8);
    backdrop-filter: blur(6px);
  }



a.btn.btn-hero-secondary i,
a.btn.btn-primary i{
  font-size: 1rem;
}
.cta-item-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

}


.cta-item-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* Sliding highlight */
.cta-highlight{
  position:absolute;
  top:6px;
  bottom:6px;
  left:1px;
  width:0;
  border-radius:999px;
  background: var(--orange);
  z-index:0;
  will-change: transform, width;
}

/* Buttons above highlight */
.cta-row .btn,
.cta-row .btn-hero-secondary.is-active,
.cta-row .btn-hero-secondary .btn:not(hover){
  flex-direction: row;
  gap: 6px;
  position:relative;
  z-index:1;
  background: transparent;
  border:none;
  padding:12px 20px;
  color: #173a2a;
  font-weight:600;
  font-size: clamp(1rem, 1vw, 2rem);
  line-height: 1rem;
  transition: color 0.2s ease;
  font-family: var(--font-poppins);
  text-align: left;
}

/* Active + hover state */
.cta-row .btn.is-active,
.cta-row .btn:hover,
.cta-row .btn-hero-secondary:hover{
  color:#fff;
   font-size: clamp(1rem, 1vw, 2rem);
}

a.btn.btn-hero-secondary i,
a.btn.btn-primary i{
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.cta-row .btn:not(hover),
.cta-row .btn-hero-secondary:not(hover){
color: var(--forest);

}

/* ========== CTA ROW ================ */

/* Container */
.cta-row{
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 10px;
  border-radius: 999px;
  background: rgba(240, 236, 223, 0.92); /* your sand-ish */
  backdrop-filter: blur(6px);
}

/* Highlight sits behind buttons */
.cta-highlight{
  position: absolute;
  inset: 10px auto 10px 0px; /* will be moved by JS */
  width: 50%;
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
  background: #E77C1F; /* orange highlight */
}

/* Buttons above highlight */
.cta-row .btn,
.cta-row .btn-hero-primary,
.cta-row .btn-hero-secondary{
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  min-width: 0; /* key for wrapping in flex */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  padding: 14px 16px;
  min-height: 58px; /* stable height for highlight */
  border-radius: 999px;

  text-align: center;
  line-height: 1.15;
  font-weight: 700;

  /* RESPONSIVE TYPE */
  font-size: clamp(14px, 3.6vw, 18px);

  /* Allow wrapping */
  white-space: normal;
  overflow: hidden;
  text-wrap: balance;
}


.cta-row .btn .btn-text,
.cta-row .btn-hero-primary .btn-text,
.cta-row .btn-hero-secondary .btn-text{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cta-row svg{
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

@media (max-width: 700px){
  .cta-row{
    flex-direction: column;
    border-radius: 2rem;
    padding: 12px;
  }

  .cta-highlight{
    /* highlight movement; allow full width */
    inset: 0px 12px auto 12px;
    width: auto;
    height: auto; /* match button min-height */
    border-radius: 999;
  }

  .cta-row .btn,
  .cta-row .btn-hero-primary,
  .cta-row .btn-hero-secondary{
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
  }
}


/* ===========CTA SLIDER — ULTRAWIDE PATCH (>1400px) Only activates on very large screens=================== */
@media (min-width: 1400px){
  .cta-row{
    width: min(920px, 72vw);
    margin-inline: auto;
    overflow: hidden;        
    border-radius: 999px;
  }

  /* keep highlight behind buttons and clipped */
  .cta-highlight{
    z-index: 0;
    border-radius: 999px;
  }

  /* ensure buttons stay above highlight */
  .cta-row .btn,
  .cta-row .btn-hero-primary,
  .cta-row .btn-hero-secondary{
    position: relative;
    z-index: 1;
    white-space: nowrap;    
  }
}





/* END OF SLIDING BUTTONS ANIMATION */

.btn-primary{
  background:var(--orange);
  color:#fff;
}
.btn-secondary{
  background:rgba(243,238,220,0.88);
  color:#173A2A;
}
.btn-outline{
  background:transparent;
  border:2px solid var(--orange);
  color:var(--orange) !important;

/* ----------- Modal shell -------------- */

#modal-dialog {
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modal-dialog-general {
  border-radius: 2rem;
}

dialog {
  border-radius: 5rem;
}

/* bg */
#modal-dialog::backdrop {
    background-color: rgba(0, 0, 0, .9);
    backdrop-filter: blur(6px) 
}

/* ----------- END OF Modal shell -------------- */



}
.hero-footnote{
  padding: 1rem 0;
  align-self: center;
  font-size: .8rem;
  max-width: 600px;
  color: rgba(243, 238, 220, 0.80);
  z-index: 4;
}





/*==============WAVE SEPARATOR =====================*/

.sep--wrap{
  position: relative;
  height: clamp(90px, 12vw, 180px); /* controls separator thickness */
  margin-top: -1px; /* prevents tiny seam lines */
  overflow: hidden;
  background-color: white;
}

/* The wave itself */
.sep--wave{
  position: absolute;
  inset: 0;
  background: url("assets/images/wave-haikei2.svg") center top / cover no-repeat;
  pointer-events: none;
}

.sep--color-sand {
  position: absolute;
  inset: 0;
  background: url("assets/images/wave-haikei3.svg") center bottom / cover no-repeat;
  pointer-events: none;
}


/* =========TRUST MARKERS (SECTION)========== */

.trust--wrap{
  background-color: var(--chartreuse);
  padding: clamp(26px, 4.5vw, 56px) 20px;
}


.trust--wrap::before{
  content: "";
  position: fixed;
  inset: 0;
  background: url("assets/images/Slow-lines-b5-chartreuse.svg") center top / cover no-repeat;
  opacity: .11;          /* control strength here */
  pointer-events: none;
  z-index: -1;
}


.trust--container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.trust--container::before {
  background: url("assets/images/Slow-lines-a1-forest.svg") center top / cover no-repeat;
  content:"";
  position: fixed;
  z-index: 0;
}

.trust--header{
  display: grid;
  gap: 10px;
  margin-bottom: clamp(16px, 2.8vw, 24px);
}

.trust--title{
text-align: center;
  margin: 0;
  /* font-weight: 700; */
  padding: 2rem 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  /* font-size: clamp(22px, 2.6vw, 34px); */
  /* color: rgba(0, 0, 0, 0.88); */
}

.trust--desc{
  margin: 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,0.66);
}

/* Semantic list reset + grid */
.trust--grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  flex: 1;
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Card */
.trust--item{
  display: flex;
  flex-direction: row;
  gap: .5rem;
  max-width: 220px;
  flex-shrink: 1;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  border-radius: 1.3rem;
  background: white;
}

/* Wide item spans 2 columns on larger layouts */
.trust--item-wide{
  grid-column: span 2;
  max-width: 300px;
  width: 100%;
}

.trust--item-wide .trust--item-wide-icon {
  width: 80%!important;
  height: 100%;
  align-items: center;
  align-self: center;
}

/* Icon pill */
.trust--icon{
  width: 7.5rem;
  height: 100%;
  align-self: flex-end;
  /*margin-top: -2rem;*/ /*hidden for now*/
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust--icon i{
  font-size: 3rem;
  color: var(--forest);
}

/* Text stack */
.trust--text{
  display: flex;
  flex-direction: column;
  min-width: 0; /* prevents overflow in grid cards */
}

.trust--label{
  font-weight: 600;
  font-family: var(--font-poppins);
  font-size: 1rem;
  flex-wrap: wrap;
  max-width: 80%;
  text-transform: capitalize;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: rgba(0,0,0,0.86);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: .2rem;
}

.trust--sub{
  font-size: .8rem;
  line-height: 1.35;
  color: rgba(0,0,0,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Trust On Hover */
.trust--item{
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust--item:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* Micro-accent on hover (optional) */
.trust--item:hover .trust--icon{
  border-color: rgba(230, 118, 29, 0.45);
  transform: scale(1.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust--item:hover .trust--icon i{
  color: var(--orange);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1020px){
  .trust--grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .trust--item-wide{
    grid-column: span 1;
  }
}

@media (max-width: 720px){
  .trust--grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust--item-wide{
    grid-column: span 2;
  }
}

@media (max-width: 420px){
  .trust--grid{
    grid-template-columns: 1fr;
  }
  .trust--item-wide{
    grid-column: auto;
  }
}

/*END OF TRUST MARKER*/



/* ========== REUSABLE SECTION ========== */

.section--wrap{ padding: clamp(34px, 6vw, 72px) 20px; }
.section--container{ max-width: 1400px; margin: 0 auto; }

.section--header{
  text-align: center;
  display: grid;
  gap: 10px;
  margin-bottom: clamp(18px, 3vw, 26px);
}

.section--title{
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-forest);
  font-size: clamp(2rem, 3vw, 5rem);
  padding: 2rem 0 1rem;
}

.section--desc{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(0,0,0,0.62);
  line-height: 1.6;
  font-size: 16px;
}

/*SECTION TYPES ACCDG TO BG*/
.section--white {background: white;}
.section--sand{ background: var(--sand); }
.section--peach-sand{ background: var(--peach-sand); }
.section--chartreuse{ background: var(--chartreuse); }


/* =========================
   REUSABLE CARD GRID
   ========================= */

.grid--cards{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}
.grid--cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }


/*==USP SEC===*/




/* =========================
   REUSABLE CARD
   ========================= */

.card{
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  min-height: 500px;
  flex: 90% 1fr;
  flex-direction: column;
}

#usp3-title{
  color: var(--forest);
  padding-top: 4rem 0 4rem;
}

.card--lift{
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card--lift:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 68px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.12);
}

/* Media button (clickable image) */
.card--mediaBtn{
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

/* Image */
.card--mediaImg{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
  filter: saturate(1.02) contrast(1.02);
  overflow: hidden;
}
.card--mediaImg > .usp-1 img{
  width: 100%;
  height: 100%;
  max-height: 350px;
}

.usp-1{
object-position: 70% 20%;
}

.card--lift:hover .card--mediaImg{
  transform: scale(1.06);
}

/* Zoom hint chip */
.card--zoomHint{
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--chartreuse);
  color: var(--ink);
  box-shadow: 0 16px 30px rgba(0,0,0,0.22);
}

.card--zoomHint i{ 
  font-size: 1.2rem; 
  color: var(--color-forest);
}

/* Content */
.card--content{
  padding: 1rem 1.5rem 1.5rem;
  display: grid;
  gap: 10px;
  min-height: 250px;
}

.card--pill{
  margin: 0;
  width: fit-content;
  /* padding: 8px 10px; */
  padding: .2rem .6rem;
  border-radius: 999px;
  background: rgba(31, 78, 58, 0.08);
  border: 1px solid rgba(31, 78, 58, 0.14);
  color: rgba(0, 0, 0, 0.5);
  font-size: .6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  align-self: flex-end;
}

.card--title{
  padding: 1rem 0 0rem;
  margin: 0;
  font-family: var(--font-poppins);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.015em;
  color: var(--color-forest-dark);
  line-height: 1.5rem;
}

.card--body{
  margin: 0;
  color: var(--color-charcoal);
  line-height: 1.55;
  font-size: smaller;
}

/* Responsive */
@media (max-width: 980px){
  .grid--cards-3{ grid-template-columns: 1fr; }
  .card{ grid-template-rows: 200px 1fr; min-height: unset; flex-direction: row;}
}



/* =========ALT USP CARDS ============== */

.uspAlt-section{ padding: clamp(34px, 6vw, 72px) 20px; }
.uspAlt-header{ text-align: center; display: grid; gap: 10px; margin-bottom: clamp(18px, 3vw, 26px); }

.uspAlt-title{
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-forest);
  font-size: clamp(2rem, 3vw, 4rem);
}

/* BIG SECTION BACKGROUND (SVG fills section) */
.usp--container{
  position: relative;
  overflow: hidden;
}

.usp--container::before{
  content: "";
  position: absolute;
  inset: 0;                 /* fill the entire section */
  background-image: url("assets/images/Slow-lines-a1-pistachio.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;    
  opacity: .2;     
  max-height: 100vh;        
  pointer-events: none;
  z-index: 0;
}

/* keep section content above */
.usp--container > *{
  position: relative;
  z-index: 1;
}



.uspAlt-desc{
  margin: 0 auto;
  max-width: 70ch;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  padding-bottom: 1.3rem;
  font-size: .9rem;
}

.uspAlt-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.uspAlt-card{
  border-radius: 2rem;
    overflow: hidden;
    background-color: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    /* display: grid; */
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-direction: column;
    grid-template-rows: auto 1fr;
    min-height: 520px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover:hover) and (pointer:fine){
  .uspAlt-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 26px 68px rgba(0,0,0,0.12);
    border: 3px solid var(--forest);
  }
}

.uspAlt-top{
  padding: 18px 18px 12px;
  display: grid;
  gap: 10px;
  flex-grow: 1;
  align-content: start;
}

.uspAlt-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.uspAlt-pill{
 padding: .25rem .65rem;
  border-radius: 999px;
  background: rgb(213 240 75);
  color: rgba(0, 0, 0, 0.7);
  font-size: .6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 200;
}


.uspAlt-h3{
margin: 0;
font-family: var(--font-poppins);
font-weight: 600;
text-transform: capitalize;
letter-spacing: -0.015em;
color: var(--forest);
line-height: 1.2;
font-size: 1.5rem;
padding: 2rem 0rem 0rem;
}

.uspAlt-body{
  margin: 0;
  color: var(--color-charcoal);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 56ch;
}

/* MEDIA (hover swap) */
.uspAlt-media{
  position: relative;
  display: block;
  margin: 12px 18px 18px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,0.04);
}

.uspAlt-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* safe default */
  transform: scale(1.02);
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.uspAlt-img--alt{ opacity: 0; }

/* desktop hover swap only */
@media (hover:hover) and (pointer:fine){
  .uspAlt-card:hover .uspAlt-img{ transform: scale(1.06); }
  .uspAlt-card:hover .uspAlt-img--alt{ opacity: 1; }
}

/* CTA chip */
.uspAlt-cta{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.62);
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.uspAlt-ctaIcon{
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.10);
  color: rgba(0,0,0,0.70);
}

/* Responsive */
@media (max-width: 980px){
  .uspAlt-grid{ grid-template-columns: 1fr; }
  .uspAlt-card{ min-height: unset; }
  .uspAlt-h3{ font-size: 1.55rem; }
}

/* touch preview */
.uspAlt-media.is-preview .uspAlt-img--alt{ opacity: 1; }








/* =========================
   LIGHTBOX
   ========================= */

.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open{ display: block; }

.lightbox--backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(6px);
}

.lightbox--panel{
  position: relative;
  width: min(980px, calc(100vw - 28px));
  margin: 50px auto;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.lightbox--img{
  width: 100%;
  height: auto;
  display: block;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: var(--color-sand);
}

.lightbox--caption{
  padding: 12px 16px 16px;
  color: rgba(243,238,220,0.86);
  font-size: 14px;
  line-height: 1.4;
}

.lightbox--close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.55);
  color: rgba(243,238,220,0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox--close i{ font-size: 18px; }

/* Lock scroll when open */
body.is-modal-open{ overflow: hidden; }


/*======= END OF LIGHTBOX =====*/



/*======= START OF MASONRY =====*/

.gallery1--wrap{
  padding: clamp(34px, .3vw, 72px) 20px;
  /*background-image: url(assets/images/wave-haikei5-center.svg); */
  background-repeat: no-repeat;
  background-position: top top;
  background-size: cover;
}

.gallery1--row{
  display: flex;
  gap: 14px;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
  padding: 8px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery1--row::-webkit-scrollbar{ height: 10px; }
.gallery1--row::-webkit-scrollbar-thumb{
  background: var(--color-forest);
  border-radius: 999px;
}
.gallery1--row::-webkit-scrollbar-track{
  background: var(--pistachio);
  border-radius: 999px;
}

/* base tile */
.gallery1--tile{
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.02);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 .5rem .5rem rgba(0,0,0,0.1);
  max-height: 350px;
  /* IMPORTANT: fixed-ish width for horizontal strip */
  flex: 0 0 280px;
  min-height: 240px;
}

/* size modifiers */
.gallery1--w2{ flex-basis: 360px; }   /* wider */
.gallery1--w3{ flex-basis: 440px; }   /* even wider */
.gallery1--tall{ min-height: 320px; } /* taller */

/* image tile */
.gallery1--tile-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease;
}
.gallery1--tile-img:hover img{ transform: scale(1.06); }

/* copy tile */
.gallery1--tile-copy{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--peach-sand);
  gap: 10px;
}

.gallery1--wrap .section--title #gallery1-title{
color: var(--orange);
}

article .gallery1--tile .gallery1--tile-copy .gallery1--w2 {
  display: flex;
  flex-direction: row;
}

.gallery1--w2 .gallery1--title {
  font-size: clamp(1.5rem, 2.1vw, 4rem);
  align-content: center;
  text-align: center;
}

.gallery1--w2 .gallery1--body {
  text-align: center;
  padding: .5rem .5rem;

}

.gallery1--title{
  margin: 0;
  font-family: var(--font-poppins);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: -0.01rem;
  color: var(--forest);
  line-height: 1.1;
  font-size: clamp(1.5rem, 1.2vw, 60px);
  padding-bottom: .5rem;
  align-items: center;
  align-content: flex-end;

}

.gallery1--body{
  margin: 0;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.3;
  font-size: .9rem;
  padding-bottom: .9rem;
}

/* color tiles */
.gallery1--tile-color{
  border: none;
  box-shadow: none;
  max-width: 150px;
  width: 100%;
}
.gallery1--tile-color img{
  border: none;
  box-shadow: none;
  scale: 2;
  height: 100%;
}
.gallery1--tile-color img:hover{
  transform: scale(.9);
  transition: transform 220ms ease;
}

.gallery1--forest{background: var(--forest); }
.gallery1--orange{ background: var(--orange); }
.gallery1--chartreuse{ background: var(--chartreuse); }

/* hint */
.gallery1--hint{
  opacity: 1;
  margin: 10px 0 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-forest);
}


/* ============ WHY SLOW — FIX CLIPPING / SCROLL START========== */

.gallery1--row{
  justify-content: flex-start;
  padding: 8px 16px 14px;           
  scroll-padding-inline: 16px;        
}

@media (max-width: 979px){
  .gallery1--tile{
    flex: 0 0 min(82vw, 360px);      
    max-height: none;              
    height: clamp(260px, 55vw, 360px);
  }

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

  .gallery1--tile-copy{
    height: 100%;                     
  }
}

/* On desktop: allow wrapped layout to size naturally */
@media (min-width: 980px){
  .gallery1--tile{
    max-height: none;              
    height: auto;
  }
}


/* desktop: wrap into rows (still flex, but no horizontal scroll) */
@media (min-width: 980px){
  .gallery1--row{
    flex-wrap: wrap;
    overflow: visible;
    scroll-snap-type: none;
  }

  .gallery1--tile{
    flex: 1 1 260px;      /* responsive tiles */
    max-width: 360px;
  }

  .gallery1--hint{
  opacity: 0;
  }

  .gallery1--w2{ flex-basis: 420px; max-width: 520px; }
  .gallery1--w3{ flex-basis: 640px; max-width: 640px; }
}





/*======= GOOGLE PREVIEW DECK EMBED =====*/

/* Deck container */
.deck--wrap{ 
  padding: clamp(32px, 6vw, 72px) 20px; 
  inset: 0;
  background: url("assets/images/wave-haikei6-topcenter.svg") center top / cover no-repeat;
  pointer-events: auto;
  z-index: 0;
}



.deck--container{
  max-width: 1100px;
  margin: 0 auto;
   z-index: 999;
}

.deck--header-section-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.deck--btn-download {
  max-width: 400px;
}

.deck--catalog-preview {
  max-width: 100%;
  width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}

.deck--frame{
  position: relative;
  width: 100%;
  height: min(80vh, 860px);   /* 80% of viewport height, capped */
  min-height: 420px;         /* keeps it usable on short screens */
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
  box-shadow: 0 22px 70px rgba(0,0,0,0.12);
}

@media (max-width: 680px){
  .deck--frame{
    height: min(70vh, 720px);
    min-height: 360px;
    width: 90%;
    align-self: center;
  }
}

/* Cover hack UI */
.deck--frame::after{
  content:"";
  position:absolute;
  top: 10px;
  right: 10px;
  width: 56px;
  height: 56px;
  background: #1e1e1e;
  border-radius: 14px;
  z-index: 5;
  pointer-events:auto;
  /* block clicks */
}


/* Iframe fills */
.deck--frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}


/* Poster placeholder overlay */
.deck--poster{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;

  background:
    radial-gradient(1200px 600px at 50% 20%, rgba(255,255,255,0.10), transparent 55%),
    radial-gradient(900px 700px at 50% 65%, rgba(0,0,0,0.18), transparent 60%),
    linear-gradient(180deg, rgba(31,78,58,0.96) 0%, rgba(24,63,49,0.96) 100%);
}

.deck--posterText{
  text-align: center;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(243,238,220,0.18);
  color: rgba(243,238,220,0.92);
  max-width: 560px;
}

.deck--posterKicker{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,238,220,0.72);
}

.deck--posterTitle{
  margin: 0;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400;
  color: var(--chartreuse);
}

.deck--posterHint{
  margin: 8px 0 0;
  font-size: 1rem;
  color: rgba(243,238,220,0.6);
}

.deck--posterActions{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.deck--posterBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(243,238,220,0.18);
  background: rgba(0,0,0,0.18);
  color: rgba(243,238,220,0.92);
}

.deck--posterBtn i{ font-size: 18px; color: var(--chartreuse); }

/* When deck is loaded, hide poster */
.deck--frame.is-loaded .deck--poster{
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

/**END OF DECK VIEWER**/

/****==== DOWNLOAD MODAL DECK=======******/

.modal{
  display: none;             
  position: fixed;
  inset: 0;
  z-index: 9999;            
}
.modal.is-open{ display: block; }

.modal--backdrop{
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
}

.modal--panel{
    position: relative;
    width: min(560px, calc(100vw - 32px));
    margin: 8vh auto;
    padding: 3rem 2rem;
    border-radius: 2rem;
    background: white;
    color: #14352a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.modal--close{
    position: absolute;
    top: 12px;
    right:0 ;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.6);
    display: grid;
    place-items: center;
    cursor: pointer;
}

.modal--title{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  font-size: xx-large;
  /* font-size: 22px; */
  margin: 1rem 0 6px;
}

.modal--sub{ margin: 0 0 14px; opacity: 0.85; }

.modal--form{ display: grid; gap: 1.5rem; padding-top: 2rem;}

.modal--label{     display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem; }

.modal--input{
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

input[type="checkbox" i] {
  font-size: 1rem;
}

/* Bigger + clearer "no business email" checkbox row */
#noBusinessEmailRow{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
}

#noBusinessEmailRow label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

/* Make the checkbox itself bigger */
#noBusinessEmail{
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--chartreuse);
 border-color: rgba(0,0,0,0.18);
  cursor: pointer;
  flex: 0 0 auto;
}

/* Optional: stronger text */
#noBusinessEmailRow .modal--fineprint,
#noBusinessEmailRow .checkbox-text{
  font-size: .8rem;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(0,0,0,0.78);
}

/* Optional: subtle hover */
#noBusinessEmailRow:hover{
  border-color: rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.7);
}



.modal--fineprint{
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

body.is-modal-open{ overflow: hidden; }

#deckSubmitBtn.loading .btn-text{ display: none; }
#deckSubmitBtn:not(.loading) .btn-loading{ display: none; }


/* ---- Modal extras (samples + future forms) ---- */
.modal--notice{
  margin: 10px 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(243, 238, 220, 0.7);
  border: 1px solid rgba(0,0,0,0.08);
  line-height: 1.45;
}

.modal--hint{
  font-size: 12px;
  opacity: 0.75;
}

.modal--address{
  display: grid;
  gap: 14px;
}

.modal--fieldset{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.6);
}

.modal--legend{
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.modal--checkgrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px){
  .modal--checkgrid{ grid-template-columns: 1fr; }
}

.modal--check{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.65);
  cursor: pointer;
  user-select: none;
}

.modal--check input{
  width: 18px;
  height: 18px;
  accent-color: var(--chartreuse);
}

body.is-modal-open{ overflow: hidden; }

#samplesSubmitBtn.loading .btn-text{ display: none; }
#samplesSubmitBtn:not(.loading) .btn-loading{ display: none; }







/* ================================
   Samples modal: scroll + 2-col desktop
   ================================ */

/* Make the modal itself a scroll container (mobile fix) */
.modal{
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px; /* keeps panel away from edges on mobile */
}

/* The panel must be able to scroll internally if needed */
.modal--panel{
  max-height: calc(100vh - 32px);
  overflow: auto;
}

/* Samples modal: wider / landscape on desktop */
#samplesModal .modal--panel{
  width: min(980px, calc(100vw - 48px));
  margin: 0 auto; /* remove the 8vh margin behavior */
  padding: 2rem 3rem;
}

/* Keep close button visible even when scrolling content */
#samplesModal .modal--close{
  position: sticky;
  top: 12px;
  margin-left: auto;
  z-index: 2;
}

/* Two-column layout for form on desktop */
@media (min-width: 900px){
  #samplesModal .modal--form-2col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
    align-items: start;
  }

  #samplesModal .modal--form-2col .span-2{
    grid-column: 1 / -1;
  }

  /* Make notice + fieldsets breathe a bit in 2-col mode */
  #samplesModal .modal--notice{
    margin-top: 4px;
  }
}

/* Mobile: always 1 column, ensure panel spacing is comfy */
@media (max-width: 899px){
  #samplesModal .modal--panel{
    width: min(560px, calc(100vw - 32px));
    padding: 1rem 2rem;
  }

  #samplesModal .modal--form-2col{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #samplesModal .modal--checkgrid{
    grid-template-columns: 1fr;
  }
}






/* ========================================
   Sections
   ======================================== */
.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* Newsletter Section */
.newsletter-section {
  background-color: var(--color-sand-light);
}

/* Booking Section */
.booking-section {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand) 100%);
}



/* ========================================
   Forms
   ======================================== */
.form-card {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
}

.form-group input {
  padding: var(--space-md);
  border: 2px solid var(--color-sand);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

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

.form-group input::placeholder {
  color: var(--color-sage);
}

.form-message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.show {
  display: block;
}

.form-message.success {
  background-color: #e8f5e9;
  color: var(--color-success);
}

.form-message.error {
  background-color: #ffebee;
  color: var(--color-error);
}

/* ========================================
   Booking Layout
   ======================================== */
.booking-layout {
  display: grid;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.booking-info .form-card {
  max-width: none;
}

.booking-slots {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Booking Calendar */
.booking-calendar {
  margin-bottom: var(--space-lg);
  background: var(--color-sand-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: 0 var(--space-xs);
}

.calendar-month {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-forest);
}

.calendar-nav {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--color-forest);
}

.calendar-nav:hover:not(:disabled) {
  background: var(--color-sand);
}

.calendar-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--space-xs);
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-sage);
  padding: var(--space-xs) 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: white;
  color: var(--color-text);
  min-height: 40px;
}

.calendar-day:hover:not(.disabled):not(.selected):not(.empty) {
  background: var(--color-sage-light);
  border-color: var(--color-sage);
}

.calendar-day.selected {
  background: var(--color-forest);
  color: white;
  border-color: var(--color-forest);
}

.calendar-day.disabled {
  background: var(--color-sand);
  color: var(--color-sage);
  cursor: not-allowed;
  opacity: 0.5;
}

.calendar-day.empty {
  background: transparent;
  cursor: default;
}

.calendar-day.today:not(.selected) {
  border-color: var(--color-terracotta);
}

.calendar-day.expo-day:not(.selected):not(.disabled) {
  background: var(--color-chartreuse);
  color: var(--color-forest);
  font-weight: 700;
}

.calendar-day.expo-day:not(.disabled):hover {
  background: var(--color-chartreuse);
  border-color: var(--color-forest);
}

/* Calendar Legend */
.calendar-legend {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-sand);
  flex-wrap: wrap;
}

.calendar-legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.75rem;
  color: var(--color-sage);
}

.calendar-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.calendar-legend-dot.expo {
  background: var(--color-chartreuse);
}

.calendar-legend-dot.today {
  border: 2px solid var(--color-terracotta);
  background: white;
}

.calendar-legend-dot.selected {
  background: var(--color-forest);
}

/* Selected Date Info */
.selected-date-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--color-forest);
  color: white;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.selected-date-info.hidden {
  display: none;
}

.selected-date-label {
  font-weight: 700;
  font-size: 1rem;
}

.selected-date-hours {
  font-size: 0.875rem;
  opacity: 0.85;
}

.selected-date-info.expo-day {
  background: var(--color-chartreuse);
  color: var(--color-forest);
}

/* Time Slots Grid */
.slots-container {
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}

.slots-container.has-date {
  max-height: 500px;
  opacity: 1;
  margin-bottom: var(--space-lg);
}


.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: var(--space-sm);
}

.time-slot {
  padding: var(--space-md);
  background: var(--color-sand-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.time-slot:hover:not(.booked):not(.selected) {
  background: var(--color-sage-light);
  border-color: var(--color-sage);
}

.time-slot.selected {
  background: var(--color-terracotta);
  color: white;
  border-color: var(--color-terracotta);
}

.time-slot.booked {
  background: var(--color-sand);
  color: var(--color-sage);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.6;
}

.slots-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--color-text-muted);
  font-style: italic;
}

.slots-loading.hidden {
  display: none;
}

/* Selected Slot Display */
.selected-slot {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-sand-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.selected-slot.hidden {
  display: none;
}

.selected-label {
  font-weight: 600;
  color: var(--color-forest);
}

#selected-slot-text {
  flex: 1;
  font-weight: 500;
}

.clear-selection {
  width: 28px;
  height: 28px;
  background: var(--color-sage);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  transition: background var(--transition-fast);
}

.clear-selection:hover {
  background: var(--color-forest);
}

/* ========================================
   Info Section
   ======================================== */
.info-section {
  background: var(--color-forest);
  color: white;
}

.info-grid {
  display: grid;
  gap: var(--space-xl);
}

.info-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.info-card h3 {
  color: var(--color-sand-light);
  margin-bottom: var(--space-sm);
}

.info-card p {
  opacity: 0.8;
  line-height: 1.8;
}

/* ============FOOTER SECTION================= */

.footer--wrap{
  background: var(--forest);
  color: var(--ink);
  padding: clamp(28px, 5vw, 56px) 20px;
  border-top: 1px solid rgba(243,238,220,0.14);
}

.footer--container{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2.2rem 1rem 2rem;
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
}

.footer--left{
  display: grid;
  gap: 1rem;
}


.footer--brand{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.footer--logo{
  height: clamp(5rem,4vw,7rem);
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.28));
}

/* contact */
.footer--contact{
  padding-top: 2rem;
  display: grid;
  gap: 6px;
}

.footer--label{
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(243,238,220,0.72);
}

.footer--email{
font-weight: 900;
font-size: 1.3rem;
color: rgba(243, 238, 220, 0.92);
text-decoration: none;
width: fit-content;
border-bottom: 1px solid rgba(243, 238, 220, 0.20);
}

.footer--email:hover{
  border-bottom-color: rgba(243,238,220,0.46);
}

/* legal links */

.footer--middle {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.footer--legal{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer--link{
  color: rgba(243,238,220,0.78);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer--link:hover{
  color: rgba(243,238,220,0.92);
  border-bottom-color: rgba(243,238,220,0.30);
}

.footer--copy{
  margin: 6px 0 0;
  font-size: 12.5px;
  color: rgba(243,238,220,0.60);
}

/* right socials */
.footer--right{
  display: grid;
  gap: 12px;
}

.footer--socials{
  display: grid;
  gap: 10px;
}

.footer--social{
  display: inline-flex;
  align-items: center;
  align-content: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(243, 238, 220, 0.88);
  background: rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: .5rem 1.5rem;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.footer--social i{
  font-size: 1.5rem;
  color: var(--chartreuse);
}

.footer--social span{
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: 0.04em;
}

.footer--social:hover{
  transform: translateY(-2px);
  border-color: rgba(243,238,220,0.22);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}

/* responsive */
@media (max-width: 900px){
  .footer--container{
    grid-template-columns: 1fr;
  }
}



/* ==============EXPO "FIND US" SECTION ========================= */
/* =========================
   EXPO SECTION (INFO + MAP)
   ========================= */

.expo2--wrap{
  padding: clamp(34px, 6vw, 72px) 20px;
  background-color: rgb(0 64 35 / 9%);
  color: var(--ink);
}

.expo2--container{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
}

/* left panel */
.expo2--panel{
  padding: clamp(18px, 2.5vw, 26px);
}

.expo2--kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(243,238,220,0.10);
  border: 1px solid rgba(243,238,220,0.16);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: var(--ink-soft);
}

.expo2--title{
  margin: 14px 0 6px;
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: .03rem;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.05;
  color: var(--chartreuse);
  padding-bottom: 1rem;
}

#expo2--title h2{
  color: white;
}

.expo2--subtitle{
  margin: 0 0 16px;
  color: white;
  line-height: 1.55;
  max-width: 44ch;
}

.expo2--meta{
  display: grid;
  gap: 4px;
  margin: 14px 0 18px;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  background: var(--color-forest-dark);
}

.expo2--row{
  display: grid;
  grid-template-columns: 120px 1fr;
}

.expo2--label{
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.expo2--value{
  color: rgba(243,238,220,0.92);
  font-size: 1rem;
  line-height: 1.45;
}

.expo2--actions{
  display: grid;
  gap: 10px;
}

.expo2--btn{
  font-size: 1rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(243,238,220,0.18);
  background: rgba(0,0,0,0.16);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.expo2--btn i{ font-size: 18px; }

.expo2--btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  border-color: rgba(243,238,220,0.26);
}

.expo2--btn-primary{
  background: linear-gradient(180deg, rgba(230,118,29,0.98), rgba(230,118,29,0.86));
  color: white;
  letter-spacing: 0.02;
  border-radius: 999px;
}

.expo2--btn-ghost{
  background: rgba(0,0,0,0.4);
  border-radius: 999px;
}

.expo2--note{
  margin-top: 12px;
  color: rgba(243,238,220,0.7);
  font-size: .9rem;
  line-height: 1.5;
  display: flex;
  justify-content: center;
}

/* right map */
.expo2--map{
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid var(--sand);
  background: var(--color-sand);
  box-shadow: 0 22px 70px rgba(0,0,0,0.25);
  width: clamp(320px, 30vw, 480px);
  aspect-ratio: 1;
}

.slow--map img .lightbox--img {
transform: scale(3);
}

.slow--map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: center center;
}

.expo2--map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.expo2--map-smaller {
  max-height: 300px;
}

/* responsive */
@media (max-width: 980px){
  .expo2--container{
    grid-template-columns: 1fr;
  }
  .expo2--map{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}


/* ========================================
   Responsive Breakpoints
   ======================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

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

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .time-slots {
    grid-template-columns: repeat(4, 1fr);
  }

  .calendar-day {
    min-height: 44px;
  }
}

/* Mobile calendar adjustments */
@media (max-width: 480px) {
  .calendar-day {
    font-size: 0.8125rem;
    min-height: 36px;
  }

  .calendar-weekdays span {
    font-size: 0.625rem;
  }

  .calendar-legend {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .selected-date-info {
    flex-direction: column;
    text-align: center;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .time-slots {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden {
  display: none !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--chartreuse);
    outline-offset: 4px;
}

button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
  outline: none;
}






/* =========================
   REVEAL SYSTEM (GLOBAL)
   modifier: reveal--up/down/left/right/scale/fade
  "reveal--stagger" on parent
   - is-visible
   ========================= */

/* Base reveal */
.reveal{
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

/* When visible */
.reveal.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Direction variants (correct directions) */
.reveal.reveal--up{ transform: translate3d(0, 18px, 0); }
.reveal.reveal--down{ transform: translate3d(0, -18px, 0); }
.reveal.reveal--left{ transform: translate3d(18px, 0, 0); }
.reveal.reveal--right{ transform: translate3d(-18px, 0, 0); }
.reveal.reveal--scale{ transform: translate3d(0, 10px, 0) scale(0.985); }
.reveal.reveal--fade{ transform: none; }

/* Normalize transforms on visible */
.reveal.reveal--up.is-visible,
.reveal.reveal--down.is-visible,
.reveal.reveal--left.is-visible,
.reveal.reveal--right.is-visible,
.reveal.reveal--scale.is-visible{
  transform: translate3d(0, 0, 0) scale(1);
}

/* ===== Stagger children inside a container =====
   Use: <div class="reveal reveal--stagger"> ...children... </div>
*/
.reveal.reveal--stagger{
  opacity: 1;           /* parent itself stays visible */
  transform: none;      /* parent doesn't move */
}

.reveal.reveal--stagger > *{
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.reveal--stagger.is-visible > *{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger timing (extend as needed) */
.reveal.reveal--stagger.is-visible > *:nth-child(1){ transition-delay: 60ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(2){ transition-delay: 120ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(3){ transition-delay: 180ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(4){ transition-delay: 240ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(5){ transition-delay: 300ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(6){ transition-delay: 360ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(7){ transition-delay: 420ms; }
.reveal.reveal--stagger.is-visible > *:nth-child(8){ transition-delay: 480ms; }

/* ===== FAIL-OPEN SAFETY =====
   If JS doesn't run, don't hide your whole website.
   Add: <html class="no-js"> and remove it in JS.
*/
html.no-js .reveal{
  opacity: 1 !important;
  transform: none !important;
}

html.no-js .reveal.reveal--stagger > *{
  opacity: 1 !important;
  transform: none !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal.reveal--stagger > *{
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
