f/* Import fonts (only if not already loaded) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&family=Work+Sans:wght@600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@600;700;800&family=Poppins:wght@300;400;500&display=swap');

:root {
  --font-main: "Work Sans", sans-serif;
  --primary: #5e6b41;
  --primary-hover: #7c8d56;
  --muted: #7a746b;
  --text: #2b2b2b;
  --bg: #f7f4ee;
  --olive-footer: #8da36a;
  --radius: 10px;
  --transition: all 0.28s cubic-bezier(.22,.8,.36,1);
  --max-width: 1200px;
  --olive-bg: color-mix(in srgb, var(--olive-footer) 90%, black);
   --faq-bg: #F9F8F4;
  --card-bg: #ffffff;
  --heading-color: #b99f7a;   /* sand/gold tone for headings */
  --copy-color: #7a746b;      /* muted brown/grey for paragraph */
  --radius-card: 14px;
  --gap: 28px;
  --max-width: 1180px;
  --transition: 0.32s cubic-bezier(.22,.8,.36,1);
  --heading-font: "Work Sans", sans-serif;
  --hf-overlay: rgba(8,8,8,0.58);    /* dark overlay left */
  --hf-overlay-right: rgba(8,8,8,0.18); /* subtle tint on right */
  --accent-olive: #6d7d48;
  --pill-bg: #ffffff;
  --pill-text: #526142;
  --pill-radius: 34px;
  --transition: 280ms cubic-bezier(.22,.8,.36,1);
   --specs-bg: #ffffff;
  --specs-max: 1200px;
  --lead-color: #b99f7a;    /* sand/gold for heading */
  --muted-copy: #8a8480;    /* muted paragraph color */
  --section-padding-vertical: 56px;
  --gap-vertical: 48px;
  --section-pad-vertical: 56px;
  --transition: 300ms cubic-bezier(.22,.8,.36,1);
  --image-radius: 16px;
  --space:28px;
  --accent-tan: #b99f7a;
  --olive: #6b7f4f;
  --feature-radius: 50%;
  --accent: #B49C74;       /* beige-gold headings & badges */
    --muted: #7A746B;        /* paragraph color */
    --bg: #FFFFFF;
    --card-radius: 14px;
    --container-w: 1180px;
    --transition: cubic-bezier(.22,.8,.36,1);
    --olive:#6b7f59;     /* background / map panel color */
    --heading:#222;      /* dark heading color */
    --muted:white;       /* list text color on olive */
    --container-padding:72px;
    --max-width:1400px;
    --nav-height: 72px;
}

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* Example: if your header/nav height = 80px */
section[id],
div[id],
h2[id] {
  scroll-margin-top: 90px; /* adjust this based on your header height */
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* Navbar (transparent by default) */
.navbar-custom {
  height: var(--nav-height);
  background: #545730f5;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

/* Solid style when scrolled */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.5) !important;      /* change to #1a1a1a for solid */
  backdrop-filter: blur(6px);          /* optional glass‑blur */
  box-shadow: 0 2px 6px rgba(0,0,0,);/* subtle drop‑shadow */
}

/* Brand + links stay readable */
.navbar-brand img { height: 56px; }
.navbar-nav .nav-link {
  text-transform: none !important;
  color: #fff !important;
  font-weight: 500;
}
/* =================  Mobile navbar dropdown  ================= */
@media (max-width: 991.98px) {          /* Bootstrap lg breakpoint */
  .navbar-custom .navbar-collapse {
    position: absolute;                 /* overlay on banner   */
    top: 5px;             /* starts below navbar */
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);     /* dark semi‑transparent bg */
    padding: 1rem 1.25rem;
  }

  .navbar-custom .nav-link {
    color: #fff !important;             /* good contrast      */
  }
}

/* 1. Base link styling (edit colours to suit) */
.navbar .nav-link{
  position: relative;          /* needed for the ::after */
  font-weight: 400;            /* matches the mock‑up */
  color: #ffffff;
  padding: .25rem 1rem;
  text-decoration: none;       /* kill default underline */
  font-family: var(--font-main);
  font-size: 16px;
  font-style: regular;
}

/* 2. The underline */
.navbar .nav-link::after{
  content: '';
  position: absolute;
  left: 50%;                   /* start from the centre … */
  transform: translateX(-50%); /* … and truly centre it  */
  bottom: -4px;                /* distance below text    */
  width: 0;                    /* collapsed by default   */
  height: 2px;
  background: #7c8d56;          /* Montira brown */
  transition: width .35s ease; /* smooth grow/shrink      */
}

/* 3. Show the line on hover OR when active */
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{
  width: 48px;                 /* pick any length you like */
}


/* Hide / show the two icons based on Bootstrap's .collapsed state */
.navbar-toggler .toggler-icon-close { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-open  { display: none; }
.navbar-toggler:not(.collapsed) .toggler-icon-close { display: inline-block; }

/* Keep icons white for dark / transparent bg */
.toggler-icon-open,
.toggler-icon-close {
  color: #fff;
}

    /* Hero */
    .hero-caption{position:relative;z-index:5;text-align:center;color:#fff;padding-top:var(--nav-height);}
    .hero-caption h1{font-size:clamp(1.8rem,4vw+0.5rem,3.2rem);font-weight:800;line-height:1.25;}
    .hero-caption .subline{font-size:.9rem;letter-spacing:1.2px;text-transform:uppercase;}
    .btn-cta{background:var(--montira-brown);border:none;padding:.6rem 2.2rem;font-weight:600;font-size:.9rem; margin-top: -165px;}
    .price-tag{position:absolute;right:4%;bottom:10%;z-index:4;font-weight:700;font-size:1.25rem;color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);}

    @media (max-width:767.98px){.navbar-brand img{height:46px}.price-tag{font-size:1rem;right:6%;bottom:12%}}

    .carousel-item {
    height: 100vh;
    position: relative;
  }

  .carousel-item img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
  }

  .section {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--accent-tan);
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  justify-items: center;
  align-items: start;
}

.feature {
  text-align: center;
  transform-origin: center;
  transition: var(--transition);
}

/* Feature icon container (olive circle) */
.kf-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #6b7f4f; /* your olive background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(37, 43, 22, 0.06);
  transition: all 0.3s ease;
}

/* White icons â€” works for SVGs and PNGs */
.kf-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1) !important;  /* converts any dark icon to pure white */
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(37, 43, 22, 0.06);
  transition: var(--transition);
}

.feature-icon img {
  width: 28px;
  height: 28px;
  mix-blend-mode: screen;      /* brightens over darker olive circle */
  filter: brightness(200%) contrast(200%);
  opacity: 1;
}

.feature:hover .feature-icon {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(37, 43, 22, 0.12);
}

.feature h3 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  /*color: #3f3f3f;*/
  margin-bottom: 10px;
  text-align: left;
}

.feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 auto;
  max-width: 280px;
}

/* ---------- Vars you can tweak ---------- */
  :root{
    --page-bg: #fbf9f6;                 /* section background */
    --heading-color: #b89f7f;          /* gold heading color */
    --text-color: #6c6b67;             /* body points color */
    --max-width: 1200px;               /* container width */
    --gap-col: 56px;                   /* horizontal gap between text & image */
    --gap-row: 88px;                   /* vertical gap between rows */
    --media-w: 520px;                  /* image display width on desktop */
    --media-h: 340px;                  /* image display height on desktop */
    --media-radius: 18px;              /* corner radius for images */
    --media-aspect: calc(var(--media-w) / var(--media-h)); /* convenience */
  }

  /* ---------- Section layout ---------- */
  .ekamoi-features{
    background: var(--page-bg);
    padding: 80px 4vw;
    box-sizing: border-box;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text-color);
  }

  .features-inner{
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap-row);
  }

  /* each row: two-column grid (text left, image right) */
  .feature{
    display: grid;
    grid-template-columns: 1fr var(--media-w);
    column-gap: var(--gap-col);
    align-items: stretch;   /* important: equal heights for both columns */
  }

  /* LEFT: text column is full height and vertically centers its content */
  .feature-text{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers text vertically against image height */
    padding-right: 8px;
    box-sizing: border-box;
  }

  .feature-title{
    margin: 0 0 18px 0;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--heading-color);
    line-height: 1;
    letter-spacing: 1px;
    font-size: 44px;            /* desktop heading size */
  }

  .feature-list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    text-align: left;
  }

  .feature-list li{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 13px;            /* exact 13px per your spec */
    line-height: 1.6;
    color: var(--text-color);
  }

  /* RIGHT: image column */
  .feature-media{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .feature-media img{
    width: 100%;
    height: var(--media-h);
    object-fit: cover;
    border-radius: var(--media-radius);
    display: block;
    box-shadow: 0 12px 30px rgba(12,12,12,0.08);
  }

  /* Responsive: stack rows on narrow screens, image under text */
  @media (max-width: 980px){
    :root{ --media-w: 100%; } /* so grid becomes 1fr auto and media fills width */
    .feature{
      grid-template-columns: 1fr;
      row-gap: 22px;
    }
    .feature-media{
      justify-content: center;
    }
    .feature-media img{
      width: 92%;
      height: auto;
      aspect-ratio: 16/10; /* keeps pleasing height on mobile */
      border-radius: 14px;
    }
    .feature-title{ font-size: 28px; }
  }

  @media (max-width: 420px){
    .ekamoi-features{ padding: 36px 4vw; }
    .feature-title{ font-size: 20px; }
    .feature-list li{ font-size: 13px; }
    .feature-media img{ width: 100%; border-radius: 12px; }
  }

  /* small help class if you want larger / smaller media per-row */
  .feature.media-md .feature-media img{ width: 520px; height: 340px; }  /* default */
  .feature.media-lg .feature-media img{ width: 640px; height: 420px; }
  .feature.media-sm .feature-media img{ width: 420px; height: 280px; }

  /* accessibility: ensure good contrast for titles on various backgrounds */
  .feature-title, .feature-list li { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  /* Accessibility - ensure images shrink nicely */
  img{ max-width:100%; height:auto; display:block }

/* Configuration + Unit Type */
.bottom-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
}

.bottom-box h4 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: var(--accent-tan);
  font-size: 20px;
  margin-bottom: 8px;
}

.bottom-box p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section h2 {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .bottom-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 760px) {
    .kf-bottom { flex-direction: column; gap: 18px; }
    .kf-bottom > div { padding: 0 !important; text-align: center; }
    .kf-bottom > div:first-child, .kf-bottom > div:last-child { width:100% }
    /* replace vertical separator with a subtle horizontal rule */
    .kf-bottom > div + div { display:none; } /* hide the vertical divider element */
    .kf-bottom::after{ content:""; display:block;height:1px;background:rgba(0,0,0,0.06);width:60%;margin:8px auto 0 }
  }

  :root{
  --kf-max-width: 1200px;
  --olive: #6b7f4f;
  --lead: #b99f7a;
  --muted-copy: #7a746b;
  --transition: cubic-bezier(.22,.8,.36,1);
}

/* SECTION BASE */
.kf-section{
  background: #fff;
  padding: 60px 20px;
  box-sizing: border-box;
  color: #222;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  position: relative;
  z-index: 3; /* keeps section above overlay if any */
  margin-top: -40px;
}

/* WRAP */
.kf-wrap{
  max-width: var(--kf-max-width);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* TITLE */
.kf-title{
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--lead);
  margin: 0 0 36px;
  letter-spacing: 0.5px;
  font-style: semibold;
}

/* FEATURES GRID */
.kf-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  justify-items: center;
  align-items: start;
  box-sizing: border-box;
}

/* FEATURE ITEM */
.kf-feature{
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  transition: transform .28s var(--transition), box-shadow .28s var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.kf-feature:focus,
.kf-feature:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  outline: none;
}

/* ICON */
.kf-icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--olive);
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(37,43,22,0.06);
  flex-shrink: 0;
}
.kf-icon img, .kf-icon svg{
  width: 28px;
  height: 28px;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display:block;
}

/* TEXT */
.kf-feature-title{
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3f3f3f;
  margin: 0 0 10px;
}
.kf-feature-copy{
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted-copy);
  margin: 0 auto;
  max-width: 280px;
}

/* BOTTOM CONFIG / UNIT */
.kf-bottom{
  display:flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap:28px;
  margin-top:48px;
  padding-top:10px;
  flex-wrap:nowrap;
  box-sizing:border-box;
  width: 100%;
  padding-left: 0; /* ðŸ‘ˆ remove any left padding */
}
.kf-bottom-box{
  flex: 0 0 auto;
  padding: 0;
  text-align:left;
  box-sizing:border-box;
  min-width: 0;
}
.kf-bottom-label{
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: var(--lead);
  font-size: 20px;
  margin-bottom: 8px;
}
.kf-bottom-copy{
  font-family: "Poppins", sans-serif;
  color: var(--muted-copy);
  font-size: 13px;
}

/* Separator (vertical on desktop, horizontal on mobile) */
.kf-bottom-sep{
  width:1px;
  height:46px;
  background:rgba(0,0,0,0.08);
  flex: 0 0 auto;
}

/* -------------------------
   Responsive breakpoints
   ------------------------- */

/* Medium-large screens: slightly reduce gaps so grid is tighter */
@media (max-width: 1400px){
  .kf-features{ gap: 48px 56px; }
}

/* Tablet: 2 columns */
@media (max-width: 1100px){
  .kf-features{
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 36px;
    padding: 0 20px;
  }
  .kf-feature-copy{ max-width: 240px; }
  .kf-bottom-box{ padding: 0 18px; }
}

/* Small screens: stack features, center & enlarge icons for touch */
@media (max-width: 760px){
  .kf-features{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 16px;
    justify-items: center;
  }

  .kf-feature{ max-width: 520px; text-align:center; }

  .kf-icon{ width: 72px; height:72px; margin-bottom:14px; }
  .kf-icon img{ width:34px; height:34px; }

  /* bottom area stacks vertically; separator becomes horizontal rule */
  .kf-bottom{
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 18px 16px 0;
  }
  .kf-bottom-box{
    padding: 12px 0;
  }
  .kf-bottom-sep{
    width:100%;
    height:1px;
    background: rgba(0,0,0,0.06);
    margin: 6px 0;
  }
}

/* Extra small phones: tighter spacing */
@media (max-width: 420px){
  .kf-features{ gap: 16px; padding: 0 12px; }
  .kf-feature-copy{ max-width: 100%; font-size: 13px; }
  .kf-bottom{ padding: 12px; }
  .kf-bottom-box{ padding: 8px 0; }
}

/* Accessibility: keyboard focus */
.kf-feature:focus{ box-shadow: 0 6px 18px rgba(0,0,0,0.06); transform: translateY(-6px); outline: none; }

/* Defensive: ensure section is visible above overlay if needed */
.kf-section, .kf-wrap, .kf-features, .kf-bottom { position: relative; z-index: 3; }

/* Force visible if animations left element hidden (defensive) */
.kf-feature, .kf-feature * { opacity: 1 !important; visibility: visible !important; transform: none !important; }

/* SECTION BASE */
.place-section{
  background: #ffffff;
  padding: var(--section-pad-vertical) 0 28px;
  color: #222;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin-top: -52px;
}

/* INNER WRAPPER */
.place-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* GRID: two columns â€” left text, right image */
.place-grid{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: start;
}

/* Ensure left column stays first */
  .place-left {
    order: 0 !important;
  }

.place-eyebrow{
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  color: var(--lead-color);
  font-size: 16px;
  margin: 0 0 8px 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-style: medium;
}

.place-title{
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: var(--lead-color);
  font-size: clamp(32px, 3.8vw, 56px);
  margin: 0 0 18px 0;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: semibold;
}

/* Paragraphs (Poppins) */
.place-copy{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 680px; /* controls line length similar to screenshot */
}
.place-copy p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 60ch;
}

/* RIGHT: image */
.place-right { display:flex; justify-content:center; align-items:start; padding-top: 6px; }

.place-image{
  width:100%;
  max-width: 520px;
  border-radius: var(--image-radius);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12,12,12,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.place-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
  vertical-align: middle;
}

/* divider line below */
.place-divider{
  margin: 34px 0 0;
  height: 1px;
 background-color: rgba(0,0,0,0.15);
  border-radius: 1px;
}

/* subtle hover lift for the image */
.place-image:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(12,12,12,0.10);
}

/* RESPONSIVE: stack on small screens */
@media (max-width: 980px){
  .place-grid{ grid-template-columns: 1fr; gap: 28px; }
  .place-right{ order: 0 !important; justify-content: flex-start; align-items: stretch; } /* shows image above text on small screens like screenshot pattern sometimes does */
  .place-title{ font-size: 36px; text-transform: none; }
  .place-eyebrow{ text-align:left; }
  .place-inner{ padding: 0 20px; }
  .place-image{ max-width:100%; }
}

/* reduced motion preference */
@media (prefers-reduced-motion: reduce){
  .place-image, .place-image img { transition: none !important; transform: none !important; }
  * { transition: none !important; animation: none !important; }
}

/* Section base â€” tightened spacing */
.specs-section{
  background: var(--specs-bg);
  /* reduced vertical padding */
  padding: 36px 0;
  color: #111;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* inner wrapper â€” narrower side padding */
.specs-inner{
  max-width: var(--specs-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Title â€” slightly smaller and less bottom margin */
.specs-title{
  font-family: "Work Sans", sans-serif;
  font-size: clamp(18px, 3.0vw, 32px); /* slightly reduced top size */
  line-height: 1.02;
  color: var(--lead-color);
  margin: 0 0 18px 0; /* smaller gap under title */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: semi-bold;
}

.specs-subtitle{
  display:block;
  font-size: 13px;
  font-weight: 600;
  color: var(--lead-color);
  opacity: 0.92;
  margin-top: 6px;
  margin-bottom: 4px;
}

/* Grid: 3 columns layout â€” reduced gaps */
.specs-grid{
   display: grid ;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 36px; /* horizontal space reduced */
  row-gap: 18px;    /* keep rows closer but readable */
  align-items: start;
  align-content: start;
}

/* Each spec block â€” less min-height so rows are tighter */
.spec{
  min-height: 64px; /* reduced from 88px */
  padding: 6px 0;    /* gentle vertical padding */
}

/* Headings inside each spec â€” tighter spacing */
.spec-head{
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  color: #6f6b68;
  margin: 0 0 6px 0; /* smaller gap to copy */
  font-weight: 700;
}

/* Copy â€” slightly denser line-height and slightly bolder for readability */
.spec-copy{
  margin: 0;
  font-size: 14px;
  line-height: 1.5; /* reduced from 1.65 */
  color: var(--muted-copy);
  font-weight: 400; /* a touch heavier than 300 for legibility in tight layout */
  max-width: 100%;
}

/* hover / focus micro-shift (unchanged but subtle) */
.spec:focus-within .spec-head,
.spec:hover .spec-head{
  color: #5e5a56;
  transform: translateY(-1px);
}

/* responsive: 2 columns then 1 column with reduced gaps */
@media (max-width: 1100px){
  .specs-grid{
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px; /* tighten both vertical and horizontal gaps */
  }
  .specs-title{ font-size: 24px; }
}

@media (max-width: 700px){
  .specs-grid{
    grid-template-columns: 1fr;
    gap: 12px; /* compact stacking */
  }
  .spec-head{ font-size: 14px; margin-bottom: 6px; }
  .spec-copy{ font-size: 14px; line-height: 1.45; }
  .specs-title{ font-size: 20px; margin-bottom: 12px; }
  .specs-inner{ padding: 0 14px; }
  .spec{ min-height: auto; padding: 8px 0; }
}

/* respects reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; }
}

:root{
  --font-heading: "Work Sans", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  --max-width: 1200px;
  --sand: #b99f7a;         /* headline color */
  --muted: #7d7b78;        /* paragraph color */
  --lead-muted: #8b8886;   /* lower spotlight color */
  --pad-vertical: 60px;
}

/* SECTION base */
.wellness-section{
  background: #fff;
  padding: var(--pad-vertical) 0 80px;
  color: #222;
  font-family: var(--font-body);
  margin-top: -28px;
}

/* Inner wrapper */
.wellness-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* Header: big headline + subhead */
.wellness-header{ margin-bottom: 18px; }

.wellness-h1{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 64px); /* very large on desktop */
  color: var(--sand);
  margin: 0 0 8px 0;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 0.95;
  font-style: semibold;
}

.wellness-h2{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--sand);
  margin: 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-style: semibold;
}

/* Intro paragraph block (Poppins light) */
.wellness-top .wellness-intro{
  margin: 18px 0 26px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 780px;
  font-weight: 300;
}

/* Spotlight (lower, larger text block) */
.wellness-spotlight{
  margin-top: 44px;
  max-width: 920px;
  color: var(--lead-muted);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}

/* Emphasis (Ekamoi bold inside spotlight) */
.wellness-spotlight .em{
  font-weight: 700;
  color: #cc;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  * { transition: none !important; animation: none !important; }
}

/* Responsive tuning */
@media (max-width: 980px){
  .wellness-h1 { font-size: clamp(28px, 8.5vw, 40px); text-align:left; }
  .wellness-h2 { font-size: 16px; text-align:left; }
  .wellness-top .wellness-intro { max-width: 100%; font-size: 15px; }
  .wellness-spotlight { font-size: 18px; margin-top: 28px; }
}

/* Section base */
.hero-forest{
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: var(--font-main);
}

/* Background layer (image + blended overlays) */
.hero-forest__bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--hf-overlay) 36%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.06) 100%),
    url('images/journey-bg.png');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  transform-origin: center;
  will-change: transform, filter;
  z-index: 0;
}

/* Inner content wrapper centers on the right area */
.hero-forest__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 28px;
  display: flex;
  justify-content: flex-end; /* push content to right */
  box-sizing: border-box;
}

/* Content block aligned to the right with roomy width */
.hero-forest__content{
  max-width: 520px;
  text-align: left;
  margin-left: auto;
}

/* Heading */
.hf-title{
  font-family: var(--font-heading);;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.02;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: 0.6px;
  /*text-transform: uppercase;*/
  font-style: semibold;
}

/* Subtext */
.hf-sub{
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin: 0 0 22px;
}

/* CTA pills */
.hf-ctas{
  display:flex;
  gap: 18px;
  align-items:center;
  flex-wrap:wrap;
}

/* Solid pill */
.btn-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 28px;
  border-radius: var(--pill-radius);
  font-weight:600;
  font-size: 15px;
  text-decoration:none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 12px 28px rgba(6,8,12,0.28);
}

/* Primary-looking filled pill (light) */
.btn-pill--light{
  background: var(--pill-bg);
  color: var(--pill-text);
}

/* Outline-style pill (subtle) */
.btn-pill--outline{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

/* Hover states */
.btn-pill--light:hover{ transform: translateY(-3px); box-shadow: 0 18px 40px rgba(6,8,12,0.18); }
.btn-pill--outline:hover{ transform: translateY(-3px); box-shadow: 0 14px 36px rgba(6,8,12,0.14); }

/* Responsive */
@media (max-width: 980px){
  .hero-forest__inner{ padding: 40px 20px; justify-content: center; }
  .hero-forest__content{ max-width: 92%; text-align: center; }
  .hf-title{ font-size: clamp(20px, 6.6vw, 34px); text-transform: none; }
  .hf-sub{ text-align:center; }
  .hf-ctas{ justify-content:center; gap:12px; }
  .hero-forest__bg{ background-position: center; }
}

/* Accessibility: focus */
.btn-pill:focus{ outline: 3px solid rgba(255,255,255,0.12); outline-offset: 4px; }

/* ===== EKAMOI SECTION (unique classes) ===== */
.ekamoi-section {
  background: #fff;
  padding: 60px 0 90px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #444;
}

.ekamoi-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ekamoi-top {
  max-width: 1100px;
}

.ekamoi-heading {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  color: #b89f81;
  margin: 0 0 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-style: semibold;
}

.ekamoi-sub {
  margin: 0 0 18px;
  color: #8f8f8f;
  font-size: 15px;
  line-height: 1.6;
  max-width: 920px;
}

/* layout: image left, icons right */
.ekamoi-body {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) 520px;
  gap: 32px;
  align-items: start;
}

/* left image */
.ekamoi-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.08);
}

.ekamoi-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
}

/* right features */
.ekamoi-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  padding-left: 20px;
  box-sizing: border-box;
}

.ekamoi-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ekamoi-icon {
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: #f6f2ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89f81;
  padding: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(10, 10, 10, 0.05);
}

.ekamoi-feature-title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: #7e766c;
  font-size: 15px;
  margin: 0 0 6px;
  line-height: 1.15;
}

.ekamoi-feature-desc {
  margin: 0;
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  max-width: 460px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .ekamoi-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ekamoi-right {
    padding-left: 0;
  }
  .ekamoi-heading {
    font-size: 28px;
  }
  .ekamoi-feature-desc {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .ekamoi-section {
    padding: 40px 0 60px;
  }
  .ekamoi-inner {
    padding: 0 16px;
  }
  .ekamoi-icon {
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    padding: 6px;
  }
  .ekamoi-body {
    gap: 18px;
  }
}

/* Section base */
.faq-section{
  background: var(--faq-bg);
  padding: 56px 0 84px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--copy-color);
}

/* Inner wrapper */
.faq-inner{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid 2 columns */
.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 36px;
}

/* Card */
.faq-card{
  background: var(--card-bg);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: 0 6px 18px rgba(20,20,20,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center heading & paragraph like screenshot */
  justify-content: center;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* hover micro-interaction */
.faq-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(20,20,20,0.06);
}

/* Heading (Work Sans) */
.faq-head{
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
  margin: 0 0 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Paragraph (Poppins) */
.faq-copy{
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.65;
  color: var(--copy-color);
  margin: 0;
  max-width: 68ch;
}

/* Responsive: single column on small screens */
@media (max-width: 980px){
  .faq-grid{ grid-template-columns: 1fr; gap: 18px; }
  .faq-card{ padding: 22px; min-height: auto; }
  .faq-head{ font-size: 16px; }
  .faq-copy{ font-size: 14px; }
}

/* SECTION BASE */
.about-section {
  background: var(--olive-bg) !important; /* âœ… this will now show correctly */
  color: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
  font-family: var(--font-main);
  box-sizing: border-box; /* ensure paddings count in width */
  width: 100%;
}

/* WRAPPER: align content to left with exact left gutter matching screenshot */
.about-inner {
  max-width: none !important;    /* allow full container width */
  width: 100% !important;
  margin: 0;
  padding-left: 64px;           /* space from left edge - adjust as needed */
  padding-right: 64px;          /* space from right edge - adjust as needed */
  display: block !important;    /* stack block so left occupies full width */
  box-sizing: border-box;
}

/* LEFT COLUMN WIDTH tuned to screenshot */
.about-left {
  width: 100% !important;
  flex: none !important;
  min-width: 0 !important;
  box-sizing: border-box;
}

/* HEADING - exact visual style */
.about-title {
  font-size: clamp(28px, 4vw, 64px) !important;
  margin-bottom: 28px !important;
  line-height: 1.05;
}

/* COPY GROUP */
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 22px; /* vertical gap between paragraphs */
}

/* Each paragraph forced to exactly three lines with graceful fallback */
.about-copy p {
  max-width: none !important;    /* allow full width wrapping */
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Right column left empty to recreate screenshot negative space */
.about-right {
  display: none !important;
}

/* RESPONSIVE: keep 3-line clamp and spacing on narrower screens */
@media (max-width: 1280px) {
  .about-inner {
    padding-left: 48px;
    padding-right: 48px;
  }
  .about-left {
    width: 100%;
    flex: 1 1 100%;
  }
  .about-title {
    font-size: 40px;
  }
  .about-copy p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .about-inner {
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
    gap: 20px;
  }
  .about-title {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .about-copy p {
    font-size: 15px;
    line-height: 1.6;
   max-width: 100%;
  }
  
  .about-right {
    display: none; /* hide negative-space column on small devices if desired */
  }
}

/* MOBILE: keep comfortable padding on small screens */
@media (max-width: 992px) {
  .about-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-copy p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================== */
/* TOUR SECTION + FOOTER BELOW */
/* =========================== */

.tour-section {
  background: url('images/footer-bg.jpg') no-repeat left center/cover;
  padding: 72px 0 0;
}

.tour-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px 36px;
}

/* LAYOUT: 2 columns - form area (left) and narrow right column */
.two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.form-col {
  flex: 1 1 62%;
  min-width: 480px;
}

.side-col {
  width: 240px; /* narrow right column */
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* right-align CTAs visually */
  gap: 14px;
  padding-top: 6px; /* tune vertical alignment to form top */
}

/* Left content */
.title {
  font-size: 20px;
  color: #b3966a;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.4px;
  font-style: semibold;
}
.sub {
  color: var(--muted);
  max-width: 620px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.get-touch {
  font-size: 15px;
  color: #b3966a;
  font-weight: 600;
  margin: 6px 0 12px;
  font-style: semibold;
}

/* FORM block - inputs */
.tour-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
}
.tour-form input {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}
.tour-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(102, 122, 59, 0.06);
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  max-width: 560px;
}

.address {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text);
}

/* RIGHT column: checkbox near top then CTAs below checkbox (stacked) */
.updates {
  display: flex;
    align-items: center;
    justify-content: center; /* center checkbox + label */
    gap: 10px;
    width: 100%;
    max-width: 520px;
    padding: 6px 0;
    box-sizing: border-box;
}
.updates input {
  width: 16px;
  height: 16px;
}

.updates span { display: inline-block; text-align: center; font-size: 13px; color: var(--muted); }

 @media (max-width: 420px) {
    .cta { max-width: 320px; font-size: 13px; padding: 10px 12px; }
    .kf-wrap, .tour-wrap { padding-left: 12px; padding-right: 12px; }
  }

.cta-stack {
    width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
    padding: 6px 0;
    box-sizing: border-box;
  }

.cta {
  width: 100%;
    max-width: 360px;   /* adjust as needed */
    box-sizing: border-box;
    text-align: center;
    padding: 10px 14px;
    border-radius: 22px;
}
.cta:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
}

/* tiny contact block under CTAs */
.mini-contact {
  order: 3; /* ensure contact comes after checkbox (1) and ctas (2) */
    width: 100%;
    max-width: 520px;
    text-align: center;
    margin-top: 6px;
    padding-bottom: 6px;
}
.mini-contact span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.mini-contact a {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-top: 6px;
}

.updates { order: 1; }
  .cta-stack { order: 2; }

/* FOOTER: disclaimer left, socials right */
.tour-footer {
  background: var(--olive-footer);
  color: #fff;
  padding: 18px 0;
  margin-top: 22px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.disclaimer {
  font-size: 11.5px;
  line-height: 1.4;
  opacity: 0.95;
  max-width: 75%;
}
.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.socials img {
  width: 22px;
  height: 22px;
  transition: var(--transition);
  border-radius: 5px;
  background: #ffffff;
}
.socials img:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .two-col {
    flex-direction: column;
  }
  .form-col {
    min-width: unset;
  }
  .side-col {
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
  }
  .cta {
    width: 46%;
  }
  .disclaimer {
    max-width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ---------- Mobile polish for .tour-section (paste at end of CSS) ---------- */

/* General mobile breakpoint */
@media (max-width: 520px) {

  /* make wrapper comfortable on phones */
  .tour-wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 120px !important; /* leave room for sticky mobile CTAs */
    box-sizing: border-box;
  }

  /* stack columns vertically and remove fixed min widths */
  .two-col {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .form-col {
    flex: 1 1 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  /* side column drops below form and centers */
  .side-col {
    order: 2 !important;
    width: 100% !important;
    flex: 1 1 100% !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 10px !important;
  }

  /* limit form width and let it be full width */
  .tour-form {
    max-width: 100% !important;
    width: 100% !important;
    gap: 10px !important;
  }

  /* make every control full width (including select) */
  .tour-form input,
  .tour-form select,
  .tour-form textarea,
  .tour-form button[type="submit"] {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Phone row should stack vertically on narrow screens */
  /* If you wrap country+tel in .phone-row this will work, otherwise this still targets the inline row */
  .tour-form .phone-row,
  .tour-form > div[style*="display: flex"] { /* fallback for inline markup */
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  /* ensure the select no longer uses a fixed width */
  .tour-form select {
    flex: 0 0 auto !important;
    width: 100% !important;
  }

  .tour-form input[type="tel"] {
    flex: 1 1 auto !important;
    width: 100% !important;
  }

  /* Checkbox: make label wrap and sit under checkbox if needed */
  .tour-form .checkbox-row,
  .tour-form > div[style*="display: flex"] input[type="checkbox"] + label,
  .updates {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
  }

  .tour-form .checkbox-row label,
  .tour-form > div[style*="display: flex"] label,
  .updates span {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }

  /* reduce title sizing on small phones */
  .title {
    font-size: 18px !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  .sub { font-size: 14px !important; }

  /* CTA stack - make buttons full-width, centered */
  .cta-stack,
  .cta {
    width: 100% !important;
    max-width: none !important;
    align-items: center !important;
  }

  .cta {
    padding: 12px 14px !important;
    border-radius: 8px !important;
  }

  /* Footer spacing: ensure disclaimer wraps */
  .footer-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  .disclaimer { max-width: 100% !important; }

  /* Make sure the floating WhatsApp or sticky elements don't overlap the form's submit area */
  .tour-section { padding-bottom: 140px !important; } /* safe zone for sticky buttons */

  /* small visual tweaks */
  .form-note, .address { font-size: 13px !important; }
}

/* extra-safe tiny phones */
@media (max-width: 380px) {
  .title { font-size: 16px !important; }
  .tour-wrap { padding-left: 12px !important; padding-right: 12px !important; padding-bottom: 160px !important; }
  .cta { padding: 10px 12px !important; font-size: 14px !important; }
}


/* Outer container */
  .timeless {
    max-width: var(--container-w);
    margin: 36px auto 60px;
    padding: 18px 28px;
    box-sizing: border-box;
    margin-top: -58px;
  }

  /* Heading group */
  .timeless .head {
    margin-bottom: 26px;
  }
  .timeless h2 {
    font-family:"Work Sans",sans-serif;
    color: var(--accent);
    font-weight: 600;
    font-size:48px;
    margin:0 0 6px;
    letter-spacing:0.8px;
    text-transform:uppercase;
    font-style: semibold;
  }
  .timeless .sub {
    margin:0;
    color:var(--accent);
    font-size: 14px;
    font-weight: 600;
    font-style: semibold;
  }

  /* ===== GRID ===== */
.timeless-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== CARD ===== */
.timeless-card {
  width: 300px;
  max-width: 90vw;
  text-align: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);*/
}

.main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== JAPANESE ICON (TOP LEFT CORNER) ===== */
.corner-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 70px;
  width: auto;
  border-radius: 0 0 6px 0;
  object-fit: contain;
  z-index: 5;
}

/* ===== TEXT ===== */
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b48a59;
  margin-top: 18px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6a5c47;
  margin: 0 auto;
  max-width: 260px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .timeless-grid {
    gap: 30px;
  }
  .main-img {
    height: 420px;
  }
  .corner-icon {
    height: 70px;
  }
}

@media (max-width: 768px) {
  .timeless-grid {
    flex-direction: column;
    align-items: center;
  }
  .timeless-card {
    width: 85%;
  }
  .main-img {
    height: 420px;
  }

  .corner-icon {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .timeless-heading {
    font-size: 1.8rem;
  }
  .timeless-subheading {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }
  .main-img {
    height: 420px;
  }
  .corner-icon {
    height: 70px;
  }
}

  /* Download button */
  .download-wrap{
    margin-top:24px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .btn-brochure{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:#6b8a52;
    color:white;
    padding:12px 22px;
    border-radius:28px;
    text-decoration:none;
    font-weight:600;
    font-family:"Poppins",sans-serif;
    box-shadow: 0 10px 26px rgba(100,120,80,0.12);
    transition: transform 260ms var(--transition), box-shadow 260ms var(--transition), opacity 260ms var(--transition);
  }
  .btn-brochure:hover{ transform: translateY(-3px); box-shadow: 0 18px 36px rgba(100,120,80,0.18) }

  
/* Mobile: horizontally scrollable cards */
@media (max-width: 760px) {
  .cards-row {
    flex-direction: column;
    gap: 20px;
    padding: 12px 16px;
    align-items: center; 
  }

  .card {
    flex: 0 0 auto;
    width: 90%;                  /* slightly narrower for visual balance */
    max-width: 420px;            /* prevents too-wide cards */
    text-align: center;
    margin: 0 auto;
  }

  .card .visual {
    height: 270px;               /* let image height respond */
     border-radius: 10px;
  }

  .badge { right:10px; top:12px; width:50px; height:90px; }
}

  /* small phones */
  @media (max-width:420px){
    .card{width:86% }
    .card .visual{ height:420px }
  }

  /* subtle fade-up animation classes (JS will add .in-view) */
  .fade-up{ opacity: 1; transform: none; transition: opacity 520ms var(--transition); transform 520ms var(--transition); }
  
  /* If JavaScript is enabled we add .js-enabled to <html>, then
   .js-enabled .fade-up starts hidden and is revealed by adding .in-view */
.js-enabled .fade-up { opacity: 0; transform: translateY(18px); }
.js-enabled .fade-up.in-view { opacity: 1; transform: translateY(0); }

  /* focus outline for keyboard access on cards (good for accessibility) */
  .card:focus-within .visual, .card:focus .visual{ outline: 4px solid rgba(180,156,116,0.14); outline-offset:6px; }


 :root{
  --map-img-w: 920px;
  --map-img-h: 520px;
  --map-img-radius: 6px;
  --lightbox-bg: rgba(12,12,12,0.78);
  --thumb-offset-x: -24px;
  --heading-font: 'Work Sans', sans-serif;
  --body-font: 'Poppins', sans-serif;
}

/* Base layout (unchanged) */
.location-map-section {
  background-color: #6b7f59;
  width: 100%;
  padding: 64px 4vw;
  box-sizing: border-box;
  font-family: var(--body-font);
  color: #fff;
}

.location-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px; /* map on left, details on right */
  gap: 40px;
  align-items: start;
  box-sizing: border-box;
  padding: 0;
}

.loc-title{
  font-family: var(--heading-font);
  font-weight: 600;
  color: #fff;
  font-size: clamp(26px, 3.6vw, 48px);
  margin: 0 0 24px 0;
  letter-spacing: 0.5px;
}

.map-thumb{
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.map-thumb:focus { outline: 3px solid rgba(255,255,255,0.18); outline-offset: 6px; border-radius: 12px; }

.map-img{
  width: var(--map-img-w);
  height: var(--map-img-h);
  max-width: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--map-img-radius);
  transform: translateX(var(--thumb-offset-x));
  transition: transform .28s ease, filter .2s ease;
  box-shadow: none;
  border: 0;
}

.map-zoom-icon{
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.45);
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  backdrop-filter: blur(2px);
}

/* details / timeline */
.details-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: #fff;
  align-items: flex-start;
  padding-left: 18px;
  box-sizing: border-box;
}

.block h3 {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 18px 0;
  letter-spacing: 0.6px;
}

/* timeline (NO vertical line) */
.timeline{
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px; /* small left padding so dot and text align */
  position: relative;
}

/* Remove vertical line by ensuring ::before isn't present (override) */
.timeline::before{ display: none; content: none; }

/* Each item layout */
.timeline li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 14px;
  min-height: 18px;
  flex-wrap: nowrap;
  padding-right: 6px;
}

/* keep small dot marker but without the connecting line */
.timeline li::before{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: 12px;
  transform: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.03);
}

.place{
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.2;
  color: rgba(255,255,255,0.95);
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 4px;
  word-break: break-word;
}

.time{
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  flex: 0 0 auto;
  margin-left: 16px;
  white-space: nowrap;
}

/* ---------- LIGHTBOX (unchanged) ---------- */
.map-lightbox[aria-hidden="false"] { display: block; }
.map-lightbox { display: none; position: fixed; inset: 0; z-index: 1200; font-family: inherit; }
.map-lightbox-backdrop { position: fixed; inset: 0; background: var(--lightbox-bg); transition: opacity .22s ease; }
.map-lightbox-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100vw - 48px);
  width: min(1100px, 95%);
  max-height: calc(100vh - 80px);
  box-sizing: border-box;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto; /* ensure clickable children work */
}
.map-lightbox-content{ background: transparent; pointer-events: auto; width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; gap: 12px; align-items: center; justify-items: center; }
.map-lightbox-img{ width: 100%; height: auto; max-height: calc(100vh - 180px); object-fit: contain; border-radius: 8px; display: block; box-shadow: 0 12px 40px rgba(0,0,0,0.45); background-color: #6b7f59; }
.map-lightbox-close{ position: absolute; right: 18px; top: 18px; background: rgba(0,0,0,0.6); color: #fff; border: 0; padding: 8px 10px; font-size: 16px; border-radius: 8px; cursor: pointer; z-index: 1210; }
.map-download{ display: inline-block; text-decoration: none; font-weight: 600; background: rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 8px; color: #fff; }

/* ======= RESPONSIVE ADJUSTMENTS FOR MOBILE ======= */

/* Medium tablets */
@media (max-width: 992px) {
  .location-container {
    grid-template-columns: 1fr; /* stack */
    gap: 28px;
    align-items: center;
  }

  /* make thumbnail fit container width and keep aspect ratio */
  .map-img {
    width: min(92vw, var(--map-img-w));
    height: auto;                 /* allow height to scale */
    transform: none;              /* remove translate */
    border-radius: 10px;
    object-fit: contain;          /* show whole image on small screens */
  }

  .details-side {
    padding-left: 6px;
    width: 100%;
    align-items: stretch;
    text-align: left;
  }

  /* timeline layout: place description and time stacked so it doesn't overflow */
  .timeline li {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-direction: row; /* keep row, but allow text wrap */
  }
  .time {
    margin-left: 10px;
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

/* Small phones: stack place and time vertically to avoid cramped layout */
@media (max-width: 420px) {
  .location-map-section { padding: 40px 4vw; }
  .loc-title { font-size: 20px; }
  .block h3 { font-size: 13px; }

  .map-img { width: 92vw; height: auto; object-fit: contain; }

  .timeline li {
    font-size: 13px;
    margin-bottom: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .timeline li::before{ margin-left: 2px; } /* tiny nudge to align dot */
  .time { margin-left: 0; margin-top: 2px; color: rgba(255,255,255,0.85); }
}

/* Extra: ensure close button is touch-friendly */
.map-lightbox-close { touch-action: manipulation; }

/* Modal Overlay */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.custom-modal {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  width: 90%;
  max-width: 420px;
  position: relative;
  animation: popIn 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Heading */
.custom-modal h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

/* Input Fields */
.custom-modal input[type="text"],
.custom-modal input[type="email"],
.custom-modal input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
}

/* Submit Button */
.custom-modal button[type="submit"] {
  width: 100%;
  padding: 12px 0;
  background: var(--green, #2e8b57);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.custom-modal button[type="submit"]:hover {
  background: var(--light-green, #3aa76d);
}

/* Close Button */
.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
}

/* Open Button */
.open-modal-btn {
  /*background: var(--green, #2e8b57);*/
  /*color: #fff;*/
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}


/* Animation */
@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 480px) {
  .custom-modal {
    width: 95%;
    padding: 25px 20px;
  }
}

/* Phone number row styling */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-row .col-5,
.form-row .col-7 {
  flex: 1;
}

.form-row select,
.form-row input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  appearance: none;
  background-color: #fff;
}

/* Adjust spacing in modal form */
.custom-modal .form-group {
  margin-bottom: 15px;
}

/* Make sure it looks good on mobile too */
@media (max-width: 480px) {
  .form-row {
    flex-direction: row;
    gap: 8px;
  }

  .form-row .col-5 {
    flex: 0 0 35%;
  }

  .form-row .col-7 {
    flex: 0 0 65%;
  }
}

.custom-checkbox-inline {
  display:flex;
  align-items:center;
  gap:12px;
}
.custom-checkbox-inline input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #cfcfcf;
  display: inline-block;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}
.custom-checkbox-inline input[type="checkbox"]:checked {
  background: #0f6b4d;
  border-color: #0f6b4d;
}
.custom-checkbox-inline input[type="checkbox"]:checked::after {
  content: "âœ“";
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 3px;
  top: -2px;
}
.custom-checkbox-inline label {
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
}


html .njs-sticky-side.image_button_cover.placement-right {
    right: 0;
}

html .njs-sticky-side.image_button_cover {
    position: fixed;
    top: 40%;
    box-shadow: none;
    z-index: 99999;
    transition: transform .3s cubic-bezier(0,0,0,1);
    -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
}

html .njs-sticky-side.image_button_cover.placement-right.now-show a {
    transform: translate3d(4px,0,0) rotate(-90deg);
    -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
}

html .njs-sticky-side.image_button_cover.placement-right a {
    border-radius: 3px 3px 0 0;
    transform: translate3d(200%,0,0) rotate(-90deg);
    -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
    transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}

html .njs-sticky-side.image_button_cover a {
    padding: 6px 15px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
	background-color: #7B8C5F; 
	color: white;	
  font-weight: 100; 
  top: -50px; 
  font-family: 'Arial';
  text-decoration: none;
}

html .njs-sticky-side.image_button_cover a:hover {
	background-color: white;
	color: black;
	border: 2px solid #acacac;
}

/* Existing styles remain the same... */

@media only screen and (max-width: 767px) {
    html .njs-sticky-side.image_button_cover {
        display: none !important;
    }
}

.button-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 1000;
}

.cta-button {
	flex: 1;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	color: white;
	transition: background-color 0.3s ease;
}

.enquire {
	background-color: #7B8C5F;
	border-radius: 0px;
}

.call {
	background-color: #9aae70;
}

.mobile-section {
	display: none;
}

@media screen and (max-width: 767px) {
	.mobile-section {
		display: flex;
	}
}


.gallery-section {
  width: 100%;
  background: linear-gradient(to bottom, #fff 40%, var(--band, #f6f3ef) 40%);
  padding: 60px 0 80px;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-heading {
  text-align: left;
  color: var(--accent, #b48a59);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SIDE PREVIEW CARDS */
.bg-card {
  position: absolute;
  width: 200px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  background: #eee;
  z-index: 1;
  opacity: 0.9;
}

.bg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-left {
  left: 12%;
  transform: translateY(12px) scale(0.95);
}

.bg-right {
  right: 12%;
  transform: translateY(12px) scale(0.95);
}

/* SWIPER CORE */
.swiper {
  width: 560px;
  max-width: 85%;
  z-index: 5;
}

.swiper-slide {
  width: 100%;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.swiper-slide-active .slide-img {
  transform: scale(1.03);
}

/* NAV BUTTONS */
.gallery-nav-btn {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nav-green, #b48a59);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 10;
  border: none;
  transition: transform 0.25s ease;
}

.gallery-nav-btn:hover {
  transform: scale(1.1);
}

.gallery-prev {
  left: calc(50% - 120px);
  top: 50%;
  transform: translate(-50%, -50%);
}
.gallery-next {
  left: calc(50% + 120px);
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Real arrow icons */
.gallery-prev::after {
  content: "\2039"; /* ‹ */
}
.gallery-next::after {
  content: "\203A"; /* › */
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .gallery-section {
    background: var(--band, #f6f3ef);
    padding: 40px 0 60px;
  }
  .gallery-heading {
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
  }
  .gallery-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .bg-card {
    display: none;
  }
  .swiper {
    width: 92vw;
  }
  .swiper-slide {
    height: 62vw;
    border-radius: 12px;
  }
  .gallery-prev,
  .gallery-next {
    top: auto;
    bottom: 12px;
    transform: none;
  }
  .gallery-prev {
    left: 22%;
  }
  .gallery-next {
    right: 22%;
  }
}
    
.project-address{
    font-style: poppins;
    font-weight: 600;
    font-style: semibold;
    color: #7F7F7E;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:50px;
	left:19px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/* force about section visible and not covered by fixed header */
#about, .about-section {
  background: var(--olive-bg, #556034) !important; /* fallback color */
  color: #ffffff !important;
  display: block !important;
  min-height: 360px !important;        /* ensures some visible space */
  padding-top: 100px !important;       /* pushes content below any fixed header */
  padding-bottom: 64px !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 0 !important;
}

/* ensure anchor links don't land under header */
#about {
  scroll-margin-top: 110px; /* adjust to match your header height */
}

.about-inner {
  display: flex !important;
  width: 100% !important;
  padding: 0 !important;              /* removed huge side padding */
  margin: 0 !important;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  box-sizing: border-box;
}

/* LEFT AREA CONTENT */
.about-left {
  flex: 1 !important;
  padding: 40px 40px !important;      /* comfortable padding for text */
  box-sizing: border-box;
}
/* RIGHT AREA HIDDEN (since you’re not using it yet) */
.about-right {
  display: none !important;
}

/* PARAGRAPHS STRETCH FULL WIDTH */
.about-copy p {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 992px) {
  .about-inner {
    flex-direction: column !important;
    padding: 0 !important;
  }

  .about-left {
    padding: 24px !important;
  }
}

/* ==== FORCE HERO VISIBLE ==== */
#hero-forest,
.hero-forest {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 380px !important;
  padding: 100px 0 64px !important;        /* pushes below fixed header */
  box-sizing: border-box !important;

  background: var(--olive-bg, #556034) !important; /* solid fallback */
  color: #ffffff !important;

  scroll-margin-top: 110px;                /* adjust to header height */
}

/* background layer: make sure there is at least a solid color */
.hero-forest__bg {
  background-image: url(images/journey-bg.png);       /* ignore broken image for now */
  background-color: var(--olive-bg, #556034) !important;
  opacity: 1 !important;
}

/* inner layout: full width container, right-aligned content */
.hero-forest__inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.hero-forest__content {
  max-width: 520px !important;
  text-align: left !important;
}

/* ensure text is visible */
.hf-title,
.hf-sub {
  color: #ffffff !important;
}

/* make the CTA look like a pill */
.btn-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* outline style (use this instead of inline style) */
.btn-pill--outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.8) !important;
}

/* mobile */
@media (max-width: 980px) {
  #hero-forest,
  .hero-forest {
    padding: 90px 0 48px !important;
  }

  .hero-forest__inner {
    justify-content: center !important;
    padding: 0 20px !important;
  }

  .hero-forest__content {
    max-width: 100% !important;
    text-align: center !important;
  }

  .hf-sub {
    text-align: center !important;
  }

  .hf-ctas {
    justify-content: center !important;
  }
}
