/* Unearth Adventure shared site styles */
:root {
  --kelp: #4F5342;
  --tea: #C4BDB1;
  --laurel: #A1AD90;
  --pewter: #A3AFA4;
  --spring: #E7E1DD;
  --white: #FFFFFF;
  /* Approved neutral extensions to the five brand hues (Brand Guide v1.0):
     off-white page background and dark section/footer ground. */
  --off-white: #F5F2EF;
  --dark: #2a2d22;
  /* Approved functional status colours (not for general decoration):
     availability amber, live-data green, form error red. */
  --status-amber: #e8a85a;
  --status-amber-ink: #3a2a0a;
  --live-green: #6fcf67;
  --error-red: rgba(220, 80, 80, 0.7);
  --font-head: 'Poppins', Helvetica, Arial, sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* Long-tail editorial ease for scroll reveals and image unveils */
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --section-x: max(80px, calc((100% - 1260px) / 2));
  --section-x-tablet: 40px;
  --section-x-mobile: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--kelp);
  background: var(--off-white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
a { text-decoration: none; color: inherit; }

.species-name {
  font-style: italic;
  font-weight: 500;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white,
.nav-cta,
.pillar-cta,
.trip-card-cta,
.theme-cta,
#enquiry-submit,
.newsletter-submit,
.form-submit {
  border-radius: 2px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-white,
.nav-cta,
.pillar-cta,
.trip-card-cta,
.theme-cta,
#enquiry-submit {
  min-height: 44px;
}

/* Shared form feedback (scripts/forms.js). body-prefixed so these survive the
   per-page `body.page-X *` resets. */
body .form-error { font-size: 13px; line-height: 1.5; color: var(--error-red); text-align: center; margin-top: 12px; }
body .form-error[hidden] { display: none; }
body .form-sent { font-size: 15px; line-height: 1.6; color: var(--live-green); }
/* Honeypot: visually removed but present for bots. */
body .hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

body.page-index .hero-title,
body.page-index .pillar-content h2,
body.page-about-us .hero-title,
body.page-explore-australia .hero-title,
body.page-group-departures .hero-title,
body.page-group-departures .trip-section-hero-label h2,
body.page-travel-with-purpose .hero-title,
body.page-enquire .hero-title,
body.page-booking-terms .page-header h1,
body.page-privacy-policy .page-header h1,
body.page-cookie-policy .page-header h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6) !important;
}

.section-full-width {
  width: 100%;
  max-width: none;
  position: relative;
}

.site-section.full-bleed {
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-section.full-bleed > .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-section img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
}

.nav-logo img,
.footer-brand img,
.testimonial-avatar {
  width: auto;
  max-width: 100%;
}

.sdg-goal-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

footer.site-section.full-bleed > .footer-top,
footer.site-section.full-bleed > .footer-bottom,
footer.site-section.full-bleed > .footer-acknowledgement,
.instagram.site-section.full-bleed > .instagram-header,
.instagram.site-section.full-bleed > .instagram-feed-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(111, 207, 103, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(111, 207, 103, 0.08); }
}

/* Cinematic media drift: animates the independent `scale` property so it
   composes with JS parallax (`translate`) and hover zooms (`transform`)
   without the three fighting over one transform. */
@keyframes heroDrift {
  from { scale: 1.06; }
  to { scale: 1.14; }
}

@keyframes kbDrift {
  from { scale: 1.0; }
  to { scale: 1.09; }
}

.kb-drift {
  animation: kbDrift 44s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.kb-drift.in-view { animation-play-state: running; }


/* index.html */
body.page-index *, body.page-index *::before, body.page-index *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-index nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

body.page-index nav.scrolled{
    background: rgba(79, 83, 66, 0.97);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

body.page-index .nav-logo img{
    height: 49px;
    width: auto;
  }

body.page-index .nav-links{
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

body.page-index .nav-links a{
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
  }

body.page-index .nav-links a:hover{ color: var(--white); }

body.page-index .nav-cta{
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 2px;
    transition: background 0.2s, border-color 0.2s !important;
  }

body.page-index .nav-cta:hover{
    background: rgba(255,255,255,0.12) !important;
    border-color: var(--white) !important;
  }

body.page-index .hero{
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 96px;
  }

body.page-index .hero-bg{
    position: absolute;
    /* Vertical headroom so scroll parallax never exposes an edge */
    inset: -12% 0;
    background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/borneo-rainforest-mist-unearth-adventure.webp');
    background-size: cover;
    background-position: center 30%;
    scale: 1.06;
    animation: heroDrift 38s ease-in-out infinite alternate;
    will-change: translate, scale;
  }

body.page-index .hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(30,32,25,0.25) 0%,
      rgba(30,32,25,0.08) 40%,
      rgba(30,32,25,0.65) 80%,
      rgba(30,32,25,0.82) 100%
    );
  }

body.page-index .hero-content{
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 820px;
    opacity: 1;
    transform: translateY(0);
  }

body.page-index .hero-eyebrow{
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(15,18,12,0.38);
    box-shadow: 0 10px 24px rgba(15,18,12,0.18);
    text-shadow: 0 2px 10px rgba(15,18,12,0.45);
    backdrop-filter: blur(6px);
  }

body.page-index .hero-eyebrow::before{
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: rgba(255,255,255,0.72);
  }

body.page-index .hero-title{
    font-family: var(--font-head);
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }

body.page-index .hero-title em{
    font-style: italic;
    font-weight: 300;
    color: var(--tea);
  }

body.page-index .hero-sub{
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 40px;
  }

body.page-index .hero-ctas{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

/* Hero entrance choreography: each line settles in sequence */
body.page-index .hero-eyebrow,
body.page-index .hero-title,
body.page-index .hero-sub,
body.page-index .hero-ctas{
    opacity: 0;
    animation: fadeUp 1.1s var(--ease-luxe) both;
  }

body.page-index .hero-eyebrow{ animation-delay: 0.25s; }
body.page-index .hero-title{ animation-delay: 0.4s; }
body.page-index .hero-sub{ animation-delay: 0.6s; }
body.page-index .hero-ctas{ animation-delay: 0.8s; }

body.page-index .btn-primary{
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 32px;
    background: var(--kelp);
    color: var(--white);
    border: 2px solid var(--kelp);
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

body.page-index .btn-primary:hover{
    background: var(--laurel);
    border-color: var(--laurel);
  }

body.page-index .btn-secondary{
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 15px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

body.page-index .btn-secondary:hover{
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

body.page-index .hero-scroll{
    position: absolute;
    bottom: 32px;
    right: 80px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    animation: fadeUp 1s 1.2s var(--ease) both;
  }

body.page-index .hero-scroll-line{
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    position: relative;
    overflow: hidden;
  }

body.page-index .hero-scroll-line::after{
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--white);
    animation: scrollLine 2s 1.6s ease-in-out infinite;
  }

body.page-index section{ padding: 100px 80px; }

body.page-index .section-eyebrow{
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--kelp);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

body.page-index .section-eyebrow::before{
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--laurel);
  }

body.page-index .section-title{
    font-family: var(--font-head);
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--kelp);
    letter-spacing: -0.02em;
  }

body.page-index .section-title em{
    font-style: italic;
    font-weight: 300;
  }

body.page-index .intro{
    background: var(--spring);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 80px;
  }

body.page-index .intro-text p{
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--kelp);
    margin-top: 28px;
    opacity: 0.85;
  }

body.page-index .intro-text .lead{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    margin-top: 24px;
  }

body.page-index .intro-image{
    position: relative;
  }

body.page-index .intro-image .media-frame{
    overflow: hidden;
    border-radius: 2px;
  }

body.page-index .intro-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 2px;
  }

body.page-index .intro-image-badge{
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--kelp);
    color: var(--white);
    width: 132px;
    aspect-ratio: 1;
    padding: 22px;
    border-radius: 50%;
    font-family: var(--font-head);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 18px 40px rgba(47,50,38,0.18);
  }

body.page-index .intro-image-badge strong{
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
  }

body.page-index .intro-image-badge span{
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.82;
    margin-top: 8px;
    display: block;
    line-height: 1.35;
  }

body.page-index .pillars{
    background: var(--kelp);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

body.page-index .pillar{
    position: relative;
    height: 620px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 56px 56px;
    cursor: pointer;
  }

body.page-index .pillar-bg{
    position: absolute;
    /* Vertical headroom so scroll parallax never exposes an edge */
    inset: -10% 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
  }

body.page-index .pillar:hover .pillar-bg{ transform: scale(1.04); }

/* flip-x mirrors a pillar image horizontally; combined hover rule keeps the zoom */
body.page-index .pillar-bg.flip-x{ transform: scaleX(-1); }

body.page-index .pillar:hover .pillar-bg.flip-x{ transform: scaleX(-1) scale(1.04); }

body.page-index .pillar-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,24,17,0.92) 0%, rgba(20,24,17,0.55) 55%, rgba(20,24,17,0.25) 100%);
    transition: opacity 0.4s;
  }

body.page-index .pillar:hover .pillar-overlay{ opacity: 0.9; }

body.page-index .pillar-divider{
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.12);
    z-index: 5;
  }

body.page-index .pillar-content{
    position: relative;
    z-index: 2;
  }

body.page-index .pillar-tag{
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--laurel);
    margin-bottom: 14px;
  }

body.page-index .pillar h2{
    font-family: var(--font-head);
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

body.page-index .pillar p{
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    max-width: 320px;
    margin-bottom: 28px;
  }

body.page-index .pillar-cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 4px;
    transition: border-color 0.2s, gap 0.2s;
  }

body.page-index .pillar:hover .pillar-cta{
    border-color: var(--laurel);
    gap: 16px;
  }

body.page-index .pillar-cta svg{ flex-shrink: 0; }

body.page-index .differentiators{
    background: var(--off-white);
    padding: 100px 80px;
  }

body.page-index .diff-header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }

body.page-index .diff-header p{
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.8;
    padding-bottom: 4px;
  }

body.page-index .diff-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

body.page-index .diff-card{
    background: var(--spring);
    padding: 36px 34px;
    border-radius: 2px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease), border-color 0.3s;
  }

body.page-index .diff-card:hover{
    background: var(--kelp);
    border-color: rgba(161,173,144,0.45);
    box-shadow: 0 18px 36px rgba(79,83,66,0.12);
    transform: translateY(-6px);
  }

body.page-index .diff-card:hover .diff-title, body.page-index .diff-card:hover .diff-body{ color: var(--white); }

body.page-index .diff-card:hover .diff-icon{
    color: var(--white);
    background: rgba(161,173,144,0.24);
    transform: rotate(-4deg) scale(1.06);
  }

body.page-index .diff-icon{
    color: var(--laurel);
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(161,173,144,0.14);
    transition: color 0.3s, background 0.3s, transform 0.3s var(--ease);
  }

body.page-index .diff-title{
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--kelp);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.25;
    transition: color 0.3s;
  }

body.page-index .diff-body{
    font-size: 14px;
    line-height: 1.68;
    font-weight: 300;
    color: var(--kelp);
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
  }

body.page-index .diff-card:hover .diff-body{ opacity: 0.75; }

body.page-index .differentiators .section-eyebrow, body.page-index .purpose .section-eyebrow, body.page-index .newsletter .section-eyebrow{
    color: var(--kelp);
  }

body.page-index .differentiators .section-eyebrow::before, body.page-index .purpose .section-eyebrow::before, body.page-index .newsletter .section-eyebrow::before{
    background: var(--laurel);
  }

body.page-index .about-teaser{
    background: var(--kelp);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }

body.page-index .about-image{
    position: relative;
    overflow: hidden;
    min-height: 520px;
  }

body.page-index .about-image img{
    position: absolute;
    /* Oversized with headroom so scroll parallax never exposes an edge */
    top: -10%; left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
  }

body.page-index .about-image-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 82%, var(--kelp) 100%);
  }

body.page-index .about-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
  }

body.page-index .about-text .section-eyebrow{ color: var(--laurel); }

body.page-index .about-text .section-eyebrow::before{ background: var(--laurel); }

body.page-index .about-text .section-title{ color: var(--white); margin-bottom: 24px; }

body.page-index .about-text p{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    margin-bottom: 16px;
  }

body.page-index .about-pullquote{
    border-left: 2px solid var(--laurel);
    padding-left: 20px;
    margin: 28px 0 36px;
    font-family: var(--font-head);
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    color: var(--tea);
    line-height: 1.6;
  }

body.page-index .btn-outline-white{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 14px 28px;
    border-radius: 2px;
    width: fit-content;
    transition: border-color 0.2s, background 0.2s;
  }

body.page-index .btn-outline-white:hover{
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
  }

body.page-index .testimonials{
    background: var(--spring);
    padding: 100px 80px;
  }

body.page-index .testimonials-header{
    text-align: center;
    margin-bottom: 64px;
  }

body.page-index .testimonials-header .section-eyebrow{
    justify-content: center;
  }

body.page-index .testimonials-header .section-eyebrow::before{ display: none; }

body.page-index .testimonials-header .section-eyebrow::after{
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--laurel);
  }

body.page-index .testimonials-carousel{ overflow: hidden; }

/* Transform-based slider: the track is NOT a scroll container, so wheel,
   trackpad, and touch scrolling pass through it natively on every device.
   JS positions it via translateX; buttons, swipe, and auto-advance drive it. */
body.page-index .testimonials-track{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 24px) / 2);
    gap: 24px;
    transition: transform 0.6s var(--ease);
  }

body.page-index .testimonials-nav{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 36px;
  }

body.page-index .testimonials-nav-btn{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--tea);
    background: transparent;
    color: var(--kelp);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

body.page-index .testimonials-nav-btn:hover{
    background: var(--kelp);
    color: var(--white);
    border-color: var(--kelp);
  }

body.page-index .testimonial-card{
    background: var(--white);
    padding: 44px 40px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

body.page-index .testimonial-stars{
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--kelp);
    font-size: 14px;
  }

body.page-index .testimonial-quote{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--kelp);
    flex: 1;
    margin-bottom: 32px;
    font-style: italic;
    opacity: 0.9;
  }

body.page-index .testimonial-author{
    border-top: 1px solid var(--spring);
    padding-top: 20px;
  }

body.page-index .testimonial-name{
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--kelp);
    margin-bottom: 3px;
  }

body.page-index .testimonial-detail{
    font-size: 12px;
    color: var(--kelp);
    letter-spacing: 0.06em;
  }

body.page-index .testimonial-author-row{
    display: flex;
    align-items: center;
    gap: 14px;
  }

body.page-index .testimonial-avatar, body.page-index .testimonial-initial-avatar{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--spring);
  }

body.page-index .testimonial-avatar{ object-fit: cover; }

body.page-index .testimonial-initial-avatar{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kelp);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

body.page-index a.testimonial-ta:hover{ color: var(--kelp); text-decoration: underline; text-underline-offset: 3px; }

body.page-index .testimonial-ta{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--kelp);
    margin-top: 10px;
  }

body.page-index .purpose{
    position: relative;
    background-color: var(--dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px max(80px, calc((100% - 1260px) / 2));
  }

body.page-index .purpose::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(42,45,34,0.62) 0%, rgba(42,45,34,0.45) 100%);
  }

body.page-index .purpose > *{ position: relative; z-index: 1; }

body.page-index .purpose-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
  }

body.page-index .purpose-text{ max-width: 860px; }

body.page-index .purpose-header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 48px;
  }

body.page-index .purpose-header p{ font-size: 15px; line-height: 1.8; font-weight: 300; opacity: 0.85; }

body.page-index .purpose-header p + p{ margin-top: 14px; }

body.page-index .purpose-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

body.page-index .purpose-card{
    background: var(--spring);
    padding: 36px 34px;
    border-radius: 2px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  }

body.page-index .purpose-card:hover{
    background: var(--kelp);
    box-shadow: 0 18px 36px rgba(79,83,66,0.12);
    transform: translateY(-6px);
  }

body.page-index .purpose-card-icon{
    color: var(--laurel);
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(161,173,144,0.14);
    border-radius: 50%;
    transition: color 0.3s, background 0.3s, transform 0.3s;
  }

body.page-index .purpose-card-title{
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--kelp);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    transition: color 0.3s;
  }

body.page-index .purpose-card-body{
    font-size: 14px;
    line-height: 1.68;
    font-weight: 300;
    color: var(--kelp);
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
  }

body.page-index .purpose-card:hover .purpose-card-title, body.page-index .purpose-card:hover .purpose-card-body{ color: var(--white); }

body.page-index .purpose-card:hover .purpose-card-body{ opacity: 0.75; }

body.page-index .purpose-card:hover .purpose-card-icon{
    color: var(--white);
    background: rgba(161,173,144,0.24);
    transform: rotate(-4deg) scale(1.06);
  }

body.page-index .purpose-solar{ max-width: 860px; margin: 56px auto 0; }

body.page-index .purpose .section-eyebrow{ color: rgba(255,255,255,0.9); }
body.page-index .purpose .section-title{ color: var(--white); }
body.page-index .purpose-header p{ color: var(--white); opacity: 0.9; }

body.page-index .purpose-text .section-title{ margin-bottom: 24px; }

body.page-index .purpose-text p{
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 16px;
  }

body.page-index .purpose-pillars{
    display: flex;
    flex-direction: column;
    gap: 0;
  }

body.page-index .purpose-pillar{
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--tea);
  }

body.page-index .purpose-pillar:first-child{ border-top: 1px solid var(--tea); }

body.page-index .purpose-pillar-icon{
    width: 40px;
    height: 40px;
    background: var(--spring);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--kelp);
    margin-top: 2px;
  }

body.page-index .purpose-pillar-text strong{
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    color: var(--kelp);
  }

body.page-index .purpose-pillar-text p{
    font-size: 13px;
    line-height: 1.65;
    font-weight: 300;
    opacity: 0.75;
    margin: 0;
  }

body.page-index .solar-widget{
    background: var(--kelp);
    border-radius: 4px;
    padding: 40px;
    color: var(--white);
    align-self: center;
    width: min(100%, 1180px);
    margin: 24px auto 56px;
  }

body.page-index .solar-widget-header{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }

body.page-index .solar-widget-header svg{ color: var(--laurel); flex-shrink: 0; }

body.page-index .solar-widget-header-text h3{
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
  }

body.page-index .solar-widget-header-text p{
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }

body.page-index .solar-live{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-family: var(--font-head);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

body.page-index .solar-live-dot{
    width: 8px;
    height: 8px;
    background: var(--live-green);
    border-radius: 50%;
    margin-left: auto;
    box-shadow: 0 0 0 3px rgba(111,207,103,0.2);
    animation: pulse 2s ease-in-out infinite;
  }

body.page-index .solar-metrics{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 24px;
  }

body.page-index .solar-metric{
    background: rgba(255,255,255,0.06);
    padding: 20px 20px;
    border-radius: 2px;
  }

body.page-index .solar-metric-value{
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

body.page-index .solar-metric-value .unit{
    font-size: 14px;
    font-weight: 400;
    color: var(--laurel);
    margin-left: 3px;
  }

body.page-index .solar-metric-label{
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    font-family: var(--font-head);
    text-transform: uppercase;
  }

body.page-index .solar-impact{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
  }

body.page-index .solar-impact-item{
    background: rgba(255,255,255,0.04);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

body.page-index .solar-impact-icon{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

body.page-index .solar-impact-green{
    background: rgba(111,207,103,0.12);
    color: var(--live-green);
  }

body.page-index .solar-impact-grey{
    background: rgba(163,175,164,0.15);
    color: #A3AFA4;
  }

body.page-index .solar-impact-text{
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin: 0;
  }

body.page-index .solar-impact-text strong{
    color: var(--white);
    font-weight: 600;
  }

body.page-index .solar-note{
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    font-style: italic;
  }

body.page-index .instagram{
    background: var(--kelp);
    padding: 80px max(80px, calc((100% - 1260px) / 2));
  }

body.page-index .instagram-header{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
  }

body.page-index .instagram-header .section-title{ color: var(--white); }

body.page-index .instagram-header .section-eyebrow{ color: var(--laurel); }

body.page-index .instagram-header .section-eyebrow::before{ background: var(--laurel); }

body.page-index .instagram-handle{
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--laurel);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(161,173,144,0.4);
    padding-bottom: 3px;
    transition: border-color 0.2s;
  }

body.page-index .instagram-handle:hover{ border-color: var(--laurel); }

body.page-index .instagram-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
  }

body.page-index .instagram-feed-container{
    display: flex;
    justify-content: center;
  }

body.page-index .instagram-feed-container behold-widget{
    max-width: 100%;
  }

body.page-index .instagram-item{
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.05);
    cursor: pointer;
  }

body.page-index .instagram-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
  }

body.page-index .instagram-item:hover img{ transform: scale(1.06); }

body.page-index .instagram-item-overlay{
    position: absolute;
    inset: 0;
    background: rgba(79,83,66,0.6);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
  }

body.page-index .instagram-item:hover .instagram-item-overlay{ opacity: 1; }

body.page-index .newsletter{
    background: var(--spring);
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

body.page-index .newsletter-section{
    width: 100% !important;
    background-color: var(--spring);
    padding: 80px 0;
    margin: 0;
    left: 0;
    overflow: hidden;
  }

body.page-index .newsletter-container{
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-x);
  }

body.page-index .newsletter-text .section-title{ margin-bottom: 12px; }

body.page-index .newsletter-text p{
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 16px;
  }

body.page-index .newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

body.page-index .newsletter-input-row{
    display: flex;
    gap: 0;
    width: 100%;
  }

body.page-index .newsletter-input{
    flex: 1;
    min-width: 0;
    padding: 15px 20px;
    background: var(--white);
    border: 1.5px solid var(--tea);
    border-right: none;
    border-radius: 2px 0 0 2px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--kelp);
   
    transition: border-color 0.2s;
  }

body.page-index .newsletter-input:focus{ border-color: var(--kelp); }

body.page-index .newsletter-input::placeholder{ color: var(--kelp); }

body.page-index .newsletter-submit{
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 15px 28px;
    background: var(--kelp);
    color: var(--white);
    border: none;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    white-space: nowrap;
  }

body.page-index .newsletter-submit:hover{ background: var(--laurel); }

body.page-index .newsletter-note{
    font-size: 12px;
    color: var(--kelp);
    font-style: italic;
  }

body.page-index footer{
    background: #2a2d22;
    color: rgba(255,255,255,0.65);
    padding: 72px 80px 40px;
  }

body.page-index .footer-top{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 36px;
  }

body.page-index .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-index .footer-brand p{
    font-size: 13px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
  }

body.page-index .footer-social{
    display: flex;
    gap: 12px;
  }

body.page-index .footer-social a{
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: border-color 0.2s, color 0.2s;
    font-size: 14px;
  }

body.page-index .footer-social a:hover{
    border-color: var(--laurel);
    color: var(--laurel);
  }

body.page-index .footer-col h4{
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }

body.page-index .footer-col ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

body.page-index .footer-col a{
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
  }

body.page-index .footer-col a:hover{ color: var(--laurel); }

body.page-index .footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

body.page-index .footer-bottom a{
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
  }

body.page-index .footer-bottom a:hover{ color: rgba(255,255,255,0.65); }

body.page-index .footer-bottom-links{
    display: flex;
    gap: 24px;
  }

body.page-index .reveal{
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe);
  }

body.page-index .reveal.visible{
    opacity: 1;
    transform: translateY(0);
  }

body.page-index .reveal-delay-1{ transition-delay: 0.12s; }

body.page-index .reveal-delay-2{ transition-delay: 0.24s; }

body.page-index .reveal-delay-3{ transition-delay: 0.36s; }

/* Eyebrow rule draws in once its section reveals */
body.page-index .reveal .section-eyebrow::before{
    width: 0;
    transition: width 0.9s 0.35s var(--ease-luxe);
  }

body.page-index .reveal.visible .section-eyebrow::before{ width: 24px; }

/* Editorial image unveil: frame declips while the image eases back to rest */
body.page-index .reveal-img{
    clip-path: inset(6% 6% 6% 6%);
    transition: clip-path 1.2s var(--ease-luxe);
  }

body.page-index .reveal-img img{
    transform: scale(1.1);
    transition: transform 1.5s var(--ease-luxe);
  }

body.page-index .reveal-img.visible{ clip-path: inset(0 0 0 0); }

body.page-index .reveal-img.visible img{ transform: scale(1); }

@media (max-width: 1024px){
body.page-index section, body.page-index .intro, body.page-index .pillars, body.page-index .about-teaser, body.page-index footer{ padding-left: 40px; padding-right: 40px; }

body.page-index nav{ padding: 0 32px; }

body.page-index .hero-content{ padding: 0 40px; }

body.page-index .hero-scroll{ right: 40px; }

body.page-index .newsletter-container{ padding: 0 40px; }
}

@media (max-width: 768px){
body.page-index nav{ padding: 0 24px; }

body.page-index .nav-links{ display: none; }

body.page-index .nav-hamburger{ display: flex; }

body.page-index .hero{
      height: auto;
      min-height: calc(100svh - var(--nav-h));
      align-items: flex-start;
      padding-top: 132px;
      padding-bottom: 40px;
    }

body.page-index .hero-content{ padding: 0 24px; max-width: 342px; }

body.page-index .hero-title{
      font-size: 38px;
      line-height: 1.08;
    }

body.page-index .hero-sub{
      max-width: 300px;
      font-size: 14px;
      line-height: 1.65;
    }

body.page-index .hero-scroll{ display: none; }

body.page-index .intro, body.page-index .diff-header, body.page-index .about-teaser, body.page-index .purpose-inner, body.page-index .newsletter{
      grid-template-columns: 1fr;
      gap: 40px;
    }

body.page-index section, body.page-index .intro, body.page-index .about-teaser, body.page-index footer{ padding: 64px 24px; }

body.page-index .newsletter-section{
      padding: 64px 0;
    }

body.page-index .newsletter-container{
      padding: 0 24px;
    }

body.page-index .solar-widget{
      padding: 32px 24px;
      margin: 12px auto 32px;
    }

body.page-index .pillars{ grid-template-columns: 1fr; }

body.page-index .pillar{ height: 440px; }

body.page-index .diff-grid{ grid-template-columns: 1fr; }

body.page-index .testimonials-track{ grid-auto-columns: 100%; }

body.page-index .instagram-grid{ grid-template-columns: repeat(2, 1fr); }

body.page-index .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-index .intro-image-badge{ display: none; }

body.page-index .about-image{ height: 360px; }

body.page-index .about-image-overlay{ display: none; }

body.page-index .solar-metrics{ grid-template-columns: 1fr; }
}

body.page-index .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-index .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-index .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-index .skip-link:focus{ top: 16px; }

body.page-index .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

@media (max-width: 768px){
body.page-index .nav-hamburger{ display: flex; }
}

body.page-index .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-index .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-index .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-index .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

body.page-index .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-index .mobile-menu.open{ display: flex; }

body.page-index .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-index .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-index .mobile-menu-links a:hover, body.page-index .mobile-menu-links a:focus{ color: var(--white); }

body.page-index .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }

@media (max-width: 480px){
body.page-index .footer-top{ grid-template-columns: 1fr; }

body.page-index section, body.page-index footer{ padding-left: 20px; padding-right: 20px; }
}


/* about-us.html */
body.page-about-us *, body.page-about-us *::before, body.page-about-us *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-about-us nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }

body.page-about-us .nav-logo img{ height: 49px; }

body.page-about-us .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-about-us .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-about-us .nav-links a:hover, body.page-about-us .nav-links a.active{ color: var(--white); }

body.page-about-us .nav-cta{ border: 1.5px solid rgba(255,255,255,0.5); padding: 9px 22px; border-radius: 2px; color: var(--white) !important; transition: background 0.2s, border-color 0.2s !important; }

body.page-about-us .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-about-us .section-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

body.page-about-us .section-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); flex-shrink: 0; }

body.page-about-us .section-title{ font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; color: var(--kelp); letter-spacing: -0.02em; }

body.page-about-us .section-title em{ font-style: italic; font-weight: 300; }

body.page-about-us .section-title.light{ color: var(--white); }

body.page-about-us .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

body.page-about-us .reveal.visible{ opacity: 1; transform: translateY(0); }

body.page-about-us .reveal-delay-1{ transition-delay: 0.12s; }

body.page-about-us .reveal-delay-2{ transition-delay: 0.22s; }

body.page-about-us .btn-primary{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; background: var(--kelp); color: var(--white); border: 2px solid var(--kelp); border-radius: 2px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }

body.page-about-us .btn-primary:hover{ background: var(--laurel); border-color: var(--laurel); }

body.page-about-us .hero{ position: relative; height: 80vh; min-height: 540px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 80px; margin-top: var(--nav-h); }

body.page-about-us .hero-bg{ position: absolute; inset: 0; background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/borneo-maliau-basin-rainforest-waterfall-unearth-adventure.webp'); background-size: cover; background-position: center 30%; animation: heroZoom 14s var(--ease) forwards; }

body.page-about-us .hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,18,12,0.2) 0%, rgba(15,18,12,0.05) 30%, rgba(15,18,12,0.65) 72%, rgba(15,18,12,0.88) 100%); }

body.page-about-us .hero-content{ position: relative; z-index: 2; padding: 0 80px; max-width: 800px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s 0.4s var(--ease) forwards; }

body.page-about-us .hero-eyebrow{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(15,18,12,0.38); box-shadow: 0 10px 24px rgba(15,18,12,0.18); text-shadow: 0 2px 10px rgba(15,18,12,0.45); backdrop-filter: blur(6px); }

body.page-about-us .hero-eyebrow::before{ content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-about-us .hero-title{ font-family: var(--font-head); font-size: clamp(44px, 6vw, 76px); font-weight: 700; line-height: 1.03; color: var(--white); margin-bottom: 20px; letter-spacing: -0.025em; text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-about-us .hero-title em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-about-us .hero-sub{ font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.9); max-width: 520px; text-shadow: 0 2px 12px rgba(15,18,12,0.35); }

body.page-about-us .origin{ background: var(--spring); display: grid; grid-template-columns: 1fr 1fr; }

body.page-about-us .origin-text{ padding: 96px 80px; display: flex; flex-direction: column; justify-content: center; }

body.page-about-us .origin-text .section-title{ margin-bottom: 28px; }

body.page-about-us .origin-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 18px; }

body.page-about-us .origin-image{ position: relative; overflow: hidden; min-height: 600px; }

body.page-about-us .origin-image img{ width: 100%; height: 100%; object-fit: cover; object-position: center top; }

body.page-about-us .origin-image-overlay{ position: absolute; inset: 0; background: linear-gradient(to left, transparent 82%, var(--spring) 100%); }

body.page-about-us .values{ background: var(--kelp); padding: 72px max(80px, calc((100% - 1260px) / 2)); }

body.page-about-us .values-inner{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

body.page-about-us .value-item{ background: rgba(255,255,255,0.05); padding: 36px 28px; transition: background 0.3s; }

body.page-about-us .value-item:hover{ background: rgba(255,255,255,0.09); }

body.page-about-us .value-num{ display: none; }

body.page-about-us .value-icon{ color: var(--laurel); margin-bottom: 16px; }

body.page-about-us .value-title{ font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.25; }

body.page-about-us .value-desc{ font-size: 12px; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.55); }

body.page-about-us .founder{ padding: 0; }

body.page-about-us .founder-nick{ background: var(--off-white); display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }

body.page-about-us .founder-sonny{ background: var(--spring); display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; }

body.page-about-us .founder-image{ position: relative; overflow: hidden; }

body.page-about-us .founder-image img{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.8s var(--ease); }

body.page-about-us .founder-image:hover img{ transform: scale(1.03); }

body.page-about-us .founder-image-overlay-r{ position: absolute; inset: 0; background: linear-gradient(to right, transparent 82%, var(--off-white) 100%); }

body.page-about-us .founder-image-overlay-l{ position: absolute; inset: 0; background: linear-gradient(to left, transparent 82%, var(--spring) 100%); }

body.page-about-us .founder-text{ padding: 72px 80px; display: flex; flex-direction: column; justify-content: center; }

body.page-about-us .founder-text .section-eyebrow{ margin-bottom: 12px; }

body.page-about-us .founder-name{ font-family: var(--font-head); font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--kelp); letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px; }

body.page-about-us .founder-role{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--laurel); margin-bottom: 28px; }

body.page-about-us .founder-text p{ font-size: 15px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 16px; }

body.page-about-us .founder-quote{ border-left: 2px solid var(--laurel); padding-left: 20px; margin: 28px 0 32px; font-family: var(--font-head); font-size: 16px; font-style: italic; font-weight: 300; color: var(--kelp); line-height: 1.65; opacity: 0.9; }

body.page-about-us .founder-credentials{ display: flex; flex-direction: column; gap: 0; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--tea); }

body.page-about-us .founder-credential{ display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid rgba(196,189,177,0.4); }

body.page-about-us .founder-credential:last-child{ border-bottom: none; }

body.page-about-us .founder-credential-icon{ color: var(--laurel); flex-shrink: 0; margin-top: 2px; }

body.page-about-us .founder-credential-text{ font-size: 13px; line-height: 1.6; font-weight: 300; color: var(--kelp); opacity: 0.8; }

body.page-about-us .founder-credential-text strong{ font-weight: 600; display: block; font-size: 12px; opacity: 1; font-family: var(--font-head); color: var(--kelp); }

body.page-about-us .field-mosaic{ background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-about-us .field-mosaic-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }

body.page-about-us .field-mosaic-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.7); }

body.page-about-us .field-mosaic-header .section-eyebrow{ color: var(--laurel); }

body.page-about-us .field-mosaic-header .section-eyebrow::before{ background: var(--laurel); }

body.page-about-us .mosaic-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 6px; }

body.page-about-us .mosaic-cell{ overflow: hidden; position: relative; }

body.page-about-us .mosaic-cell img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }

body.page-about-us .mosaic-cell:hover img{ transform: scale(1.04); }

body.page-about-us .mosaic-cell.tall{ grid-row: 1 / 3; }

body.page-about-us .mosaic-cell-label{ position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px; background: linear-gradient(to top, rgba(15,18,12,0.75) 0%, transparent 100%); font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.75); font-style: italic; }

body.page-about-us .regions{ background: var(--off-white); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-about-us .regions-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 56px; }

body.page-about-us .regions-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85; }

body.page-about-us .regions-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

body.page-about-us .region-item{
    background-color: var(--spring);
    background-size: cover;
    background-position: center;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s;
  }

body.page-about-us .region-item::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(231,225,221,0.55);
    transition: background 0.3s;
    pointer-events: none;
  }

body.page-about-us .region-item:hover::before{ background: rgba(79,83,66,0.75); }

body.page-about-us .region-item > *{ position: relative; z-index: 1; }

body.page-about-us .region-item:hover .region-name, body.page-about-us .region-item:hover .region-desc{ color: var(--white); }

body.page-about-us .region-item:hover .region-flag{ opacity: 0.7; }

body.page-about-us .region-flag{ font-size: 28px; margin-bottom: 16px; display: block; transition: opacity 0.3s; }

body.page-about-us .region-name{ font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--kelp); margin-bottom: 10px; letter-spacing: -0.01em; transition: color 0.3s; }

body.page-about-us .region-desc{ font-size: 13px; line-height: 1.7; font-weight: 300; color: var(--kelp); opacity: 0.75; transition: color 0.3s; }

body.page-about-us .philosophy{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

body.page-about-us .philosophy-text .section-title{ margin-bottom: 28px; }

body.page-about-us .philosophy-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 18px; }

body.page-about-us .philosophy-text .btn-primary{ margin-top: 12px; }

body.page-about-us .philosophy-image{ position: relative; overflow: hidden; }

body.page-about-us .philosophy-image img{ width: 100%; height: 520px; object-fit: cover; border-radius: 2px; }

body.page-about-us .philosophy-image-overlay{ position: absolute; inset: 0; background: linear-gradient(to left, transparent 80%, var(--spring) 100%); border-radius: 2px; }

body.page-about-us .philosophy-image-badge{ position: absolute; bottom: -20px; right: -20px; background: var(--kelp); color: var(--white); padding: 28px 32px; border-radius: 2px; font-family: var(--font-head); max-width: 220px; }

body.page-about-us .philosophy-image-badge strong{ display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }

body.page-about-us .philosophy-image-badge span{ font-size: 11px; font-weight: 300; opacity: 0.65; line-height: 1.5; display: block; }

body.page-about-us footer{ background: var(--dark); color: rgba(255,255,255,0.55); padding: 72px max(80px, calc((100% - 1260px) / 2)) 40px; }

body.page-about-us .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-about-us .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-about-us .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-about-us .footer-social{ display: flex; gap: 12px; }

body.page-about-us .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s; }

body.page-about-us .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-about-us .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-about-us .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-about-us .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }

body.page-about-us .footer-col a:hover{ color: var(--laurel); }

body.page-about-us .footer-bottom{ display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

body.page-about-us .footer-bottom-links{ display: flex; gap: 24px; }

body.page-about-us .footer-bottom a{ color: rgba(255,255,255,0.3); transition: color 0.2s; }

body.page-about-us .footer-bottom a:hover{ color: rgba(255,255,255,0.6); }

@media (max-width: 1024px){
body.page-about-us nav{ padding: 0 32px; }

body.page-about-us .hero-content, body.page-about-us .origin-text, body.page-about-us .field-mosaic, body.page-about-us .regions, body.page-about-us .philosophy, body.page-about-us footer{ padding-left: 40px; padding-right: 40px; }

body.page-about-us .founder-text{ padding: 56px 48px; }
}

@media (max-width: 768px){
body.page-about-us nav{ padding: 0 24px; background: rgba(79, 83, 66, 0.97); }

body.page-about-us .nav-links{ display: none; }

body.page-about-us .nav-hamburger{ display: flex; }

body.page-about-us .hero{ height: auto; min-height: calc(100svh - var(--nav-h)); align-items: flex-start; padding-top: 132px; padding-bottom: 40px; }

body.page-about-us .hero-content{ padding: 0 24px; }

body.page-about-us .origin, body.page-about-us .founder-nick, body.page-about-us .founder-sonny, body.page-about-us .philosophy{ grid-template-columns: 1fr; }

body.page-about-us .founder-sonny{ direction: ltr; }

body.page-about-us .origin-image, body.page-about-us .founder-image{ min-height: 360px; }

body.page-about-us .origin-image-overlay, body.page-about-us .founder-image-overlay-r, body.page-about-us .founder-image-overlay-l{ display: none; }

body.page-about-us .values-inner, body.page-about-us .regions-grid{ grid-template-columns: 1fr 1fr; }

body.page-about-us .field-mosaic-header, body.page-about-us .regions-header{ grid-template-columns: 1fr; gap: 24px; }

body.page-about-us .mosaic-grid{ grid-template-columns: 1fr 1fr; grid-template-rows: auto; }

body.page-about-us .mosaic-cell.tall{ grid-row: auto; }

body.page-about-us .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-about-us .origin-text, body.page-about-us .founder-text, body.page-about-us .field-mosaic, body.page-about-us .regions, body.page-about-us .philosophy, body.page-about-us footer{ padding: 64px 24px; }

body.page-about-us .philosophy-image-badge{ display: none; }
}

body.page-about-us .acknowledgement-section{
    position: relative;
    padding: 72px 80px;
    overflow: hidden;
    /* Australian Aboriginal flag rendered in CSS: black over red with central yellow sun */
    background:
      radial-gradient(circle at 50% 50%, #FFE600 0 54px, rgba(255,230,0,0) 55px),
      linear-gradient(to bottom, #000000 0%, #000000 50%, #CC0000 50%, #CC0000 100%);
  }

body.page-about-us .acknowledgement-section::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 12, 0.78);
  }

body.page-about-us .acknowledgement-section > *{ position: relative; z-index: 1; }

body.page-about-us .acknowledgement-section .section-eyebrow{ margin-bottom: 20px; color: var(--laurel); }

body.page-about-us .acknowledgement-section .section-eyebrow::before{ background: var(--laurel); }

body.page-about-us .acknowledgement-text{
    font-size: 16px;
    line-height: 1.85;
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    max-width: none;
    opacity: 1;
  }

body.page-about-us .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-about-us .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

@media (max-width: 768px){
body.page-about-us .acknowledgement-section{ padding: 48px 24px; }
}

body.page-about-us .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-about-us .skip-link:focus{ top: 16px; }

body.page-about-us .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-about-us .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-about-us .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-about-us .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-about-us .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-about-us .nav-hamburger{ display: flex; }
}

body.page-about-us .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-about-us .mobile-menu.open{ display: flex; }

body.page-about-us .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-about-us .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-about-us .mobile-menu-links a:hover, body.page-about-us .mobile-menu-links a:focus{ color: var(--white); }

body.page-about-us .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }

@media (max-width: 480px){
body.page-about-us .footer-top{ grid-template-columns: 1fr; }

body.page-about-us section, body.page-about-us footer{ padding-left: 20px; padding-right: 20px; }

body.page-about-us .values{ padding-left: 20px; padding-right: 20px; }

body.page-about-us .values-inner{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity; overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }

body.page-about-us .values-inner::-webkit-scrollbar{ display: none; }

body.page-about-us .value-item{
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

body.page-about-us .founder-image{ height: 360px; min-height: unset; }
}


/* explore-australia.html */
body.page-explore-australia *, body.page-explore-australia *::before, body.page-explore-australia *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-explore-australia nav{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    background: rgba(79, 83, 66, 0.97);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

body.page-explore-australia .nav-logo img{ height: 49px; width: auto; }

body.page-explore-australia .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-explore-australia .nav-links a{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); transition: color 0.2s;
  }

body.page-explore-australia .nav-links a:hover, body.page-explore-australia .nav-links a.active{ color: var(--white); }

body.page-explore-australia .nav-cta{
    background: transparent; border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white) !important; padding: 9px 22px; border-radius: 2px;
    transition: background 0.2s, border-color 0.2s !important;
  }

body.page-explore-australia .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-explore-australia .section-eyebrow{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp);
    margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
  }

body.page-explore-australia .section-eyebrow::before{
    content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); flex-shrink: 0;
  }

body.page-explore-australia .section-title{
    font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700; line-height: 1.1; color: var(--kelp); letter-spacing: -0.02em;
  }

body.page-explore-australia .section-title em{ font-style: italic; font-weight: 300; }

body.page-explore-australia .section-title.light{ color: var(--white); }

body.page-explore-australia .btn-primary{
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 15px 32px; background: var(--kelp); color: var(--white);
    border: 2px solid var(--kelp); border-radius: 2px; cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

body.page-explore-australia .btn-primary:hover{ background: var(--laurel); border-color: var(--laurel); }

body.page-explore-australia .btn-outline{
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 15px 32px; background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.45); border-radius: 2px; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

body.page-explore-australia .btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }

body.page-explore-australia .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

body.page-explore-australia .reveal.visible{ opacity: 1; transform: translateY(0); }

body.page-explore-australia .reveal-delay-1{ transition-delay: 0.1s; }

body.page-explore-australia .reveal-delay-2{ transition-delay: 0.2s; }

body.page-explore-australia .reveal-delay-3{ transition-delay: 0.3s; }

body.page-explore-australia .hero{
    position: relative; height: 90vh; min-height: 600px; overflow: hidden;
    display: flex; align-items: flex-end; padding-bottom: 96px;
    margin-top: var(--nav-h);
  }

body.page-explore-australia .hero-bg{
    position: absolute; inset: 0;
    background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/australia-beach-driving-4wd-unearth-adventure.webp');
    background-size: cover; background-position: center 40%;
    animation: heroZoom 14s var(--ease) forwards;
  }

body.page-explore-australia .hero-overlay{
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(20,24,17,0.2) 0%, rgba(20,24,17,0.05) 35%, rgba(20,24,17,0.7) 75%, rgba(20,24,17,0.88) 100%);
  }

body.page-explore-australia .hero-content{
    position: relative; z-index: 2; padding: 0 80px; max-width: 900px;
    opacity: 0; transform: translateY(28px); animation: fadeUp 1s 0.4s var(--ease) forwards;
  }

body.page-explore-australia .hero-eyebrow{
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92);
    margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px;
    max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px; background: rgba(15,18,12,0.38); box-shadow: 0 10px 24px rgba(15,18,12,0.18);
    text-shadow: 0 2px 10px rgba(15,18,12,0.45); backdrop-filter: blur(6px);
  }

body.page-explore-australia .hero-eyebrow::before{ content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-explore-australia .hero-title{
    font-family: var(--font-head); font-size: clamp(44px, 6vw, 80px);
    font-weight: 700; line-height: 1.03; color: var(--white); margin-bottom: 24px; letter-spacing: -0.025em; text-shadow: 0 4px 20px rgba(15,18,12,0.35);
  }

body.page-explore-australia .hero-title em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-explore-australia .hero-sub{
    font-size: 17px; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 40px; text-shadow: 0 2px 12px rgba(15,18,12,0.35);
  }

body.page-explore-australia .hero-cta-row{ display: flex; gap: 16px; flex-wrap: wrap; }

body.page-explore-australia .hero-caption{
    position: absolute; bottom: 28px; right: 80px; z-index: 2;
    font-family: var(--font-head); font-size: 12px; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.82); font-style: italic;
    padding: 8px 12px; background: rgba(15,18,12,0.34); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px; text-shadow: 0 2px 10px rgba(15,18,12,0.4);
    animation: fadeUp 1s 1s var(--ease) both;
  }

body.page-explore-australia .challenge{
    background: var(--spring);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  }

body.page-explore-australia .challenge-text{
    padding: 96px 80px; display: flex; flex-direction: column; justify-content: center;
  }

body.page-explore-australia .challenge-text .section-title{ margin-bottom: 28px; }

body.page-explore-australia .challenge-text p{
    font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 16px;
  }

body.page-explore-australia .challenge-text p strong{
    font-weight: 500; color: var(--kelp); opacity: 1;
  }

body.page-explore-australia .challenge-image-stack{
    position: relative; overflow: hidden; min-height: 580px;
  }

body.page-explore-australia .challenge-image-stack img{
    width: 100%; height: 100%; object-fit: cover; object-position: center;
  }

body.page-explore-australia .challenge-image-overlay{
    position: absolute; inset: 0;
    background: linear-gradient(to left, transparent 80%, var(--spring) 100%);
  }

body.page-explore-australia .process{
    background: var(--kelp); padding: 80px max(80px, calc((100% - 1260px) / 2));
  }

body.page-explore-australia .process-header{
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 56px;
  }

body.page-explore-australia .process-header p{
    font-size: 15px; line-height: 1.8; font-weight: 300;
    color: rgba(255,255,255,0.7);
  }

body.page-explore-australia .process-header .section-eyebrow{ color: var(--laurel); }

body.page-explore-australia .process-header .section-eyebrow::before{ background: var(--laurel); }

body.page-explore-australia .process-carousel{ position: relative; }

body.page-explore-australia .process-tabs{ display: flex; gap: 2px; margin-bottom: 2px; }

body.page-explore-australia .process-tab{
    flex: 1; padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: none; cursor: pointer; text-align: left;
    transition: background 0.25s; position: relative; overflow: hidden;
  }

body.page-explore-australia .process-tab:hover{ background: rgba(255,255,255,0.07); }

body.page-explore-australia .process-tab.active{ background: rgba(255,255,255,0.1); }

body.page-explore-australia .process-tab::after{
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--laurel);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

body.page-explore-australia .process-tab.active::after{ transform: scaleX(1); }

body.page-explore-australia .process-tab-num{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; color: var(--laurel); display: block; margin-bottom: 4px;
  }

body.page-explore-australia .process-tab-label{
    font-family: var(--font-head); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.6); display: block; line-height: 1.3; transition: color 0.25s;
  }

body.page-explore-australia .process-tab.active .process-tab-label, body.page-explore-australia .process-tab:hover .process-tab-label{ color: var(--white); }

body.page-explore-australia .process-panels{ position: relative; display: grid; }

body.page-explore-australia .process-panel{
    display: grid; visibility: hidden; grid-area: 1 / 1; background: rgba(255,255,255,0.04);
    padding: 52px 56px;
    grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
  }

body.page-explore-australia .process-panel.active{ visibility: visible; }

body.page-explore-australia .process-panel-icon{ color: var(--laurel); margin-bottom: 20px; }

body.page-explore-australia .process-panel h3{
    font-family: var(--font-head); font-size: 24px; font-weight: 700;
    color: var(--white); margin-bottom: 18px; letter-spacing: -0.015em; line-height: 1.2;
  }

body.page-explore-australia .process-panel-body{
    font-size: 15px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.75);
  }

body.page-explore-australia .process-panel-right{
    border-left: 1px solid rgba(255,255,255,0.1); padding-left: 64px;
  }

body.page-explore-australia .process-panel-detail-label{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--laurel);
    margin-bottom: 16px; display: block;
  }

body.page-explore-australia .process-panel-detail{
    font-size: 14px; line-height: 1.8; font-weight: 300;
    color: rgba(255,255,255,0.55); font-style: italic;
  }

body.page-explore-australia .process-panel-promise{
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 12px; align-items: flex-start;
  }

body.page-explore-australia .process-panel-promise svg{ flex-shrink: 0; margin-top: 2px; }

body.page-explore-australia .process-panel-promise p{
    font-size: 13px; line-height: 1.7; font-weight: 300;
    color: rgba(255,255,255,0.5); font-style: italic;
  }

body.page-explore-australia .process-nav{
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 2px; padding: 16px 20px;
    background: rgba(255,255,255,0.03);
  }

body.page-explore-australia .process-nav-arrows{ display: flex; gap: 8px; }

body.page-explore-australia .process-nav-btn{
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

body.page-explore-australia .process-nav-btn:hover:not(:disabled){ background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.3); }

body.page-explore-australia .process-nav-btn:disabled{ opacity: 0.3; cursor: not-allowed; }

body.page-explore-australia .process-nav-dots{ display: flex; gap: 8px; align-items: center; }

body.page-explore-australia .process-nav-dot{
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.2); cursor: pointer;
    transition: background 0.2s, transform 0.2s; border: none; padding: 0;
  }

body.page-explore-australia .process-nav-dot.active{ background: var(--laurel); transform: scale(1.3); }

body.page-explore-australia .process-nav-counter{
    font-family: var(--font-head); font-size: 11px;
    color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
  }

body.page-explore-australia .included{
    background: var(--off-white); padding: 100px max(80px, calc((100% - 1260px) / 2));
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
  }

body.page-explore-australia .included-text .section-title{ margin-bottom: 28px; }

body.page-explore-australia .included-text > p{
    font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 36px;
  }

body.page-explore-australia .included-sticky{ position: sticky; top: calc(var(--nav-h) + 32px); }

body.page-explore-australia .included-list{
    display: flex; flex-direction: column; gap: 0;
  }

body.page-explore-australia .included-item{
    display: flex; gap: 18px; padding: 18px 0;
    border-bottom: 1px solid var(--tea);
    align-items: flex-start;
  }

body.page-explore-australia .included-item:first-child{ border-top: 1px solid var(--tea); }

body.page-explore-australia .included-item-icon{
    width: 36px; height: 36px; background: var(--spring);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--kelp);
    margin-top: 1px;
  }

body.page-explore-australia .included-item-text strong{
    font-family: var(--font-head); font-size: 13px; font-weight: 600;
    display: block; margin-bottom: 3px; color: var(--kelp);
  }

body.page-explore-australia .included-item-text p{
    font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; margin: 0;
  }

body.page-explore-australia .included-you{
    background: var(--kelp); border-radius: 2px; padding: 44px;
    margin-top: 36px;
  }

body.page-explore-australia .included-you h3{
    font-family: var(--font-head); font-size: 14px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--laurel);
    margin-bottom: 20px;
  }

body.page-explore-australia .included-you ul{
    list-style: none; display: flex; flex-direction: column; gap: 12px;
  }

body.page-explore-australia .included-you li{
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 14px; line-height: 1.6; font-weight: 300; color: rgba(255,255,255,0.8);
  }

body.page-explore-australia .included-you li::before{
    content: '→';
    color: var(--laurel); font-size: 13px; flex-shrink: 0; margin-top: 1px;
  }

body.page-explore-australia .included-image-mosaic{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
  }

body.page-explore-australia .mosaic-main{
    grid-column: 1 / 3;
    height: 300px; overflow: hidden; border-radius: 2px;
  }

body.page-explore-australia .mosaic-main img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }

body.page-explore-australia .mosaic-main:hover img{ transform: scale(1.03); }

body.page-explore-australia .mosaic-sm{
    height: 200px; overflow: hidden; border-radius: 2px;
  }

body.page-explore-australia .mosaic-sm img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }

body.page-explore-australia .mosaic-sm:hover img{ transform: scale(1.04); }

body.page-explore-australia .mosaic-caption{
    font-family: var(--font-head); font-size: 12px; letter-spacing: 0.1em;
    color: var(--kelp); font-style: italic; margin-top: 10px; text-align: right;
  }

body.page-explore-australia .themes{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-explore-australia .themes-header{
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: end; margin-bottom: 64px;
  }

body.page-explore-australia .themes-header p{
    font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85;
  }

body.page-explore-australia .themes-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

body.page-explore-australia .theme-card{
    position: relative; height: 420px; overflow: hidden;
    cursor: pointer; border-radius: 2px;
  }

body.page-explore-australia .theme-card.tall{ height: 520px; }

body.page-explore-australia .theme-bg{
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.7s var(--ease);
  }

body.page-explore-australia .theme-card:hover .theme-bg{ transform: scale(1.05); }


body.page-explore-australia .theme-bg::after{
    content: ''; position: absolute; inset: 0;
    background: rgba(15,18,12,0.6);
    opacity: 0; transition: opacity 0.4s;
  }

body.page-explore-australia .theme-card:hover .theme-bg::after{ opacity: 1; }

body.page-explore-australia .theme-content{
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px 32px;
  }

body.page-explore-australia .theme-tag{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--laurel);
    margin-bottom: 10px;
  }

body.page-explore-australia .theme-title{
    font-family: var(--font-head); font-size: 22px; font-weight: 700;
    color: var(--white); margin-bottom: 10px; line-height: 1.15; letter-spacing: -0.01em;
  }

body.page-explore-australia .theme-cta{
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.5s 0.1s var(--ease), opacity 0.4s 0.15s;
    margin-top: 14px;
  }

body.page-explore-australia .theme-card:hover .theme-cta{ max-height: 40px; opacity: 1; border-color: var(--laurel); }

body.page-explore-australia .themes-bottom{
    margin-top: 48px; text-align: center;
  }

body.page-explore-australia .themes-bottom p{
    font-size: 15px; font-weight: 300; opacity: 0.75; margin-bottom: 24px; line-height: 1.7;
  }

body.page-explore-australia .feature-quote{
    background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2));
  }

body.page-explore-australia .feature-quote-track{
    display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
    gap: 80px; overflow-x: auto; scroll-snap-type: x proximity; overscroll-behavior-x: contain;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }

body.page-explore-australia .feature-quote-track::-webkit-scrollbar{ display: none; }

body.page-explore-australia .feature-quote-slide{
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    scroll-snap-align: start;
  }

body.page-explore-australia .feature-quote-nav{
    display: flex; gap: 10px; justify-content: center; margin-top: 48px;
  }

body.page-explore-australia .feature-quote-nav-btn{
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3); background: transparent; color: var(--white);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

body.page-explore-australia .feature-quote-nav-btn:hover{
    background: rgba(255,255,255,0.1); border-color: var(--white);
  }

body.page-explore-australia .feature-quote-image{ position: relative; }

body.page-explore-australia .feature-quote-image img{
    width: 100%; height: 480px; object-fit: cover; border-radius: 2px;
  }

body.page-explore-australia .feature-quote-badge{
    position: absolute; top: -20px; right: -20px;
    background: var(--laurel); color: var(--kelp);
    width: 100px; height: 100px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: var(--font-head);
  }

body.page-explore-australia .feature-quote-badge strong{ font-size: 22px; font-weight: 700; line-height: 1; }

body.page-explore-australia .feature-quote-badge span{ font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }

body.page-explore-australia .feature-quote-text .section-eyebrow{ color: var(--laurel); }

body.page-explore-australia .feature-quote-text .section-eyebrow::before{ background: var(--laurel); }

body.page-explore-australia .feature-quote-text .section-title{ color: var(--white); margin-bottom: 32px; }

body.page-explore-australia blockquote{
    border-left: 2px solid var(--laurel); padding-left: 24px;
    font-family: var(--font-head); font-size: 18px; font-style: italic; font-weight: 300;
    color: rgba(255,255,255,0.82); line-height: 1.65; margin-bottom: 28px;
  }

body.page-explore-australia .quote-attribution{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.75);
  }

body.page-explore-australia .quote-attribution span{ color: var(--laurel); }

body.page-explore-australia .enquire-band{
    background: var(--off-white); padding: 100px max(80px, calc((100% - 1260px) / 2));
    display: grid; grid-template-columns: 1fr; gap: 56px; align-items: start;
    max-width: 100%;
  }

body.page-explore-australia .enquire-band > *{ max-width: 860px; margin-left: auto; margin-right: auto; width: 100%; }

body.page-explore-australia .enquire-form-panel{ max-width: 860px; }

body.page-explore-australia .enquire-band-text .section-title{ margin-bottom: 20px; }

body.page-explore-australia .enquire-band-text p{
    font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85; margin-bottom: 36px;
  }

body.page-explore-australia .enquire-steps-mini{
    display: flex; flex-direction: column; gap: 0;
  }

body.page-explore-australia .enquire-step-mini{
    display: flex; gap: 20px; padding: 20px 0;
    border-bottom: 1px solid var(--tea); align-items: flex-start;
  }

body.page-explore-australia .enquire-step-mini:first-child{ border-top: 1px solid var(--tea); }

body.page-explore-australia .enquire-step-num{
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; color: var(--kelp); flex-shrink: 0; margin-top: 2px;
    min-width: 24px;
  }

body.page-explore-australia .enquire-step-mini strong{
    font-family: var(--font-head); font-size: 14px; font-weight: 600;
    display: block; margin-bottom: 4px; color: var(--kelp);
  }

body.page-explore-australia .enquire-step-mini p{ font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; margin: 0; }

body.page-explore-australia .enquire-form-panel{
    background: var(--kelp); padding: 48px; border-radius: 2px;
  }

body.page-explore-australia .enquire-form-panel h3{
    font-family: var(--font-head); font-size: 20px; font-weight: 700;
    color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em;
  }

body.page-explore-australia .enquire-form-panel > p{
    font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6);
    margin-bottom: 32px; line-height: 1.6;
  }

body.page-explore-australia .form-group{ margin-bottom: 16px; }

body.page-explore-australia .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }

body.page-explore-australia .form-label{
    display: block; font-family: var(--font-head); font-size: 12px;
    font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 8px;
  }

body.page-explore-australia .form-input, body.page-explore-australia .form-select, body.page-explore-australia .form-textarea{
    width: 100%; padding: 13px 16px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2px; font-family: var(--font-body); font-size: 14px;
    color: var(--white);
    transition: border-color 0.2s, background 0.2s;
  }

body.page-explore-australia .form-input::placeholder, body.page-explore-australia .form-textarea::placeholder{ color: rgba(255,255,255,0.3); }

body.page-explore-australia .form-input:focus, body.page-explore-australia .form-select:focus, body.page-explore-australia .form-textarea:focus{
    border-color: var(--laurel); background: rgba(255,255,255,0.1);
  }

body.page-explore-australia .form-select{
    appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A1AD90' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 36px;
  }

body.page-explore-australia .form-select option{ background: var(--kelp); color: var(--white); }

body.page-explore-australia .form-textarea{ resize: vertical; min-height: 100px; }

body.page-explore-australia .form-submit{
    width: 100%; font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase; padding: 16px;
    background: var(--laurel); color: var(--kelp); border: none;
    border-radius: 2px; cursor: pointer; margin-top: 8px;
    transition: background 0.2s;
  }

body.page-explore-australia .form-submit:hover{ background: #b5c19f; }

body.page-explore-australia .form-note{
    font-size: 11px; color: rgba(255,255,255,0.35); text-align: center;
    margin-top: 12px; font-style: italic;
  }

body.page-explore-australia .form-commitment{
    border: 1px solid rgba(161,173,144,0.3);
    border-radius: 2px;
    padding: 20px 20px;
    margin-bottom: 16px;
    background: rgba(161,173,144,0.06);
    transition: border-color 0.2s, background 0.2s;
  }

body.page-explore-australia .form-commitment:has(.form-commitment-checkbox:checked){
    border-color: rgba(161,173,144,0.7);
    background: rgba(161,173,144,0.1);
  }

body.page-explore-australia .form-commitment-text{
    font-size: 12px; line-height: 1.75; font-weight: 300;
    color: rgba(255,255,255,0.6); margin-bottom: 16px; font-style: italic;
  }

body.page-explore-australia .form-commitment-label{
    display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  }

body.page-explore-australia .form-commitment-checkbox{
    width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
    accent-color: var(--laurel); cursor: pointer;
    appearance: none; border: 1.5px solid rgba(161,173,144,0.5);
    border-radius: 2px; background: transparent;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }

body.page-explore-australia .form-commitment-checkbox:checked{
    background: var(--laurel); border-color: var(--laurel);
  }

body.page-explore-australia .form-commitment-checkbox:checked::after{
    content: '';
    position: absolute;
    width: 10px; height: 6px;
    border-left: 2px solid var(--kelp); border-bottom: 2px solid var(--kelp);
    transform: rotate(-45deg) translate(1px, -1px);
  }

body.page-explore-australia .form-commitment-label-text{
    font-family: var(--font-head); font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.75); line-height: 1.5; letter-spacing: 0.01em;
  }

body.page-explore-australia .form-commitment-label:hover .form-commitment-label-text{ color: var(--white); }

body.page-explore-australia .form-submit:disabled{
    opacity: 0.4; cursor: not-allowed;
  }

body.page-explore-australia .form-submit:disabled:hover{ background: var(--laurel); }

body.page-explore-australia footer{
    background: var(--dark); color: rgba(255,255,255,0.55);
    padding: 72px max(80px, calc((100% - 1260px) / 2)) 40px;
  }

body.page-explore-australia .footer-top{
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px;
  }

body.page-explore-australia .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-explore-australia .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-explore-australia .footer-social{ display: flex; gap: 12px; }

body.page-explore-australia .footer-social a{
    width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s;
  }

body.page-explore-australia .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-explore-australia .footer-col h4{
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
  }

body.page-explore-australia .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-explore-australia .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }

body.page-explore-australia .footer-col a:hover{ color: var(--laurel); }

body.page-explore-australia .footer-bottom{ display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

body.page-explore-australia .footer-bottom-links{ display: flex; gap: 24px; }

body.page-explore-australia .footer-bottom a{ color: rgba(255,255,255,0.3); transition: color 0.2s; }

body.page-explore-australia .footer-bottom a:hover{ color: rgba(255,255,255,0.6); }

@media (max-width: 1024px){
body.page-explore-australia .hero-content, body.page-explore-australia .challenge-text, body.page-explore-australia .process, body.page-explore-australia .included, body.page-explore-australia .themes, body.page-explore-australia .feature-quote, body.page-explore-australia .enquire-band, body.page-explore-australia footer{ padding-left: 40px; padding-right: 40px; }

body.page-explore-australia nav{ padding: 0 32px; }
}

@media (max-width: 768px){
body.page-explore-australia nav{ padding: 0 24px; background: rgba(79, 83, 66, 0.97); }

body.page-explore-australia .nav-links{ display: none; }

body.page-explore-australia .nav-hamburger{ display: flex; }

body.page-explore-australia .hero{ height: auto; min-height: calc(100svh - var(--nav-h)); align-items: flex-start; padding-top: 132px; padding-bottom: 40px; }

body.page-explore-australia .hero-content{ padding: 0 24px; }

body.page-explore-australia .hero-caption{ display: none; }

body.page-explore-australia .challenge, body.page-explore-australia .included, body.page-explore-australia .enquire-band{ grid-template-columns: 1fr; }

body.page-explore-australia .feature-quote-slide{ grid-template-columns: 1fr; gap: 40px; }

body.page-explore-australia .process-header{ grid-template-columns: 1fr; gap: 24px; }

body.page-explore-australia .process-tabs{ flex-wrap: wrap; }

body.page-explore-australia .process-tab{ flex: 1 1 calc(50% - 1px); }

body.page-explore-australia .process-panel{ grid-template-columns: 1fr; gap: 32px; padding: 32px 28px; }

body.page-explore-australia .process-panel-right{ border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

body.page-explore-australia .included-sticky{ position: static; }

body.page-explore-australia .themes-header{ grid-template-columns: 1fr; gap: 24px; }

body.page-explore-australia .themes-grid{ grid-template-columns: 1fr 1fr; }

body.page-explore-australia .theme-card, body.page-explore-australia .theme-card.tall{ height: 300px; }

body.page-explore-australia .included-image-mosaic{ grid-template-columns: 1fr; }

body.page-explore-australia .mosaic-main{ grid-column: 1; }

body.page-explore-australia .form-row{ grid-template-columns: 1fr; }

body.page-explore-australia .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-explore-australia .challenge-text{ padding: 60px 24px; }

body.page-explore-australia .process, body.page-explore-australia .included, body.page-explore-australia .themes, body.page-explore-australia .feature-quote, body.page-explore-australia .enquire-band, body.page-explore-australia footer{ padding: 64px 24px; }
}

body.page-explore-australia .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-explore-australia .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-explore-australia .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-explore-australia .skip-link:focus{ top: 16px; }

body.page-explore-australia .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-explore-australia .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-explore-australia .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-explore-australia .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-explore-australia .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-explore-australia .nav-hamburger{ display: flex; }
}

body.page-explore-australia .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-explore-australia .mobile-menu.open{ display: flex; }

body.page-explore-australia .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-explore-australia .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-explore-australia .mobile-menu-links a:hover, body.page-explore-australia .mobile-menu-links a:focus{ color: var(--white); }

body.page-explore-australia .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }

@media (max-width: 480px){
body.page-explore-australia .footer-top{ grid-template-columns: 1fr; }

body.page-explore-australia section, body.page-explore-australia footer{ padding-left: 20px; padding-right: 20px; }

body.page-explore-australia .themes{ padding-left: 20px; padding-right: 20px; }

body.page-explore-australia .themes-grid{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity; overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
  }

body.page-explore-australia .themes-grid::-webkit-scrollbar{ display: none; }

body.page-explore-australia .theme-col{ display: contents; }

body.page-explore-australia .themes-grid .theme-card,
body.page-explore-australia .themes-grid .theme-card.tall{
    flex: 0 0 78vw;
    height: 380px;
    scroll-snap-align: start;
  }

body.page-explore-australia .theme-cta{ max-height: none; opacity: 1; }

body.page-explore-australia .theme-regions{ display: none; }
}


/* group-departures.html */
body.page-group-departures *, body.page-group-departures *::before, body.page-group-departures *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-group-departures nav{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; background: rgba(79,83,66,0.97);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

body.page-group-departures .nav-logo img{ height: 49px; }

body.page-group-departures .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-group-departures .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-group-departures .nav-links a:hover, body.page-group-departures .nav-links a.active{ color: var(--white); }

body.page-group-departures .nav-cta{ border: 1.5px solid rgba(255,255,255,0.5); padding: 9px 22px; border-radius: 2px; color: var(--white) !important; transition: background 0.2s, border-color 0.2s !important; }

body.page-group-departures .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-group-departures .section-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

body.page-group-departures .section-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); flex-shrink: 0; }

body.page-group-departures .section-title{ font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; color: var(--kelp); letter-spacing: -0.02em; }

body.page-group-departures .section-title em{ font-style: italic; font-weight: 300; }

body.page-group-departures .section-title.light{ color: var(--white); }

body.page-group-departures .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

body.page-group-departures .reveal.visible{ opacity: 1; transform: translateY(0); }

body.page-group-departures .reveal-delay-1{ transition-delay: 0.1s; }

body.page-group-departures .reveal-delay-2{ transition-delay: 0.2s; }

body.page-group-departures .reveal-delay-3{ transition-delay: 0.3s; }

body.page-group-departures .btn-primary{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; background: var(--kelp); color: var(--white); border: 2px solid var(--kelp); border-radius: 2px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }

body.page-group-departures .btn-primary:hover{ background: var(--laurel); border-color: var(--laurel); }

body.page-group-departures .btn-outline-white{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 28px; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); border-radius: 2px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }

body.page-group-departures .btn-outline-white:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }

body.page-group-departures .hero{ position: relative; height: 88vh; min-height: 580px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 96px; margin-top: var(--nav-h); }

body.page-group-departures .hero-bg{ position: absolute; inset: 0; background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/sri-lanka-runakanda-people-on-tour-unearth-adventure.webp'); background-size: cover; background-position: center 35%; animation: heroZoom 14s var(--ease) forwards; }

body.page-group-departures .hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,18,12,0.2) 0%, rgba(15,18,12,0.05) 30%, rgba(15,18,12,0.65) 70%, rgba(15,18,12,0.88) 100%); }

body.page-group-departures .hero-content{ position: relative; z-index: 2; padding: 0 80px; max-width: 860px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s 0.4s var(--ease) forwards; }

body.page-group-departures .hero-eyebrow{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(15,18,12,0.38); box-shadow: 0 10px 24px rgba(15,18,12,0.18); text-shadow: 0 2px 10px rgba(15,18,12,0.45); backdrop-filter: blur(6px); }

body.page-group-departures .hero-eyebrow::before{ content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-group-departures .hero-title{ font-family: var(--font-head); font-size: clamp(44px, 6vw, 78px); font-weight: 700; line-height: 1.03; color: var(--white); margin-bottom: 24px; letter-spacing: -0.025em; text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-group-departures .hero-title em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-group-departures .hero-sub{ font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.9); max-width: 560px; margin-bottom: 40px; text-shadow: 0 2px 12px rgba(15,18,12,0.35); }

body.page-group-departures .hero-cta-row{ display: flex; gap: 16px; flex-wrap: wrap; }

body.page-group-departures .departures-overview{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-group-departures .departures-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }

body.page-group-departures .departures-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85; }

body.page-group-departures .trip-cards{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }

body.page-group-departures .trip-card{ background: var(--white); border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s; cursor: pointer; }

body.page-group-departures .trip-card:hover{ box-shadow: 0 12px 48px rgba(79,83,66,0.15); }

body.page-group-departures .trip-card-image{ position: relative; height: 260px; overflow: hidden; }

body.page-group-departures .trip-card-image img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }

body.page-group-departures .trip-card:hover .trip-card-image img{ transform: scale(1.04); }

body.page-group-departures .trip-card-status{ position: absolute; top: 16px; left: 16px; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }

body.page-group-departures .status-open{ background: var(--laurel); color: var(--kelp); }

body.page-group-departures .status-limited{ background: var(--status-amber); color: var(--status-amber-ink); }

body.page-group-departures .status-sold-out{ background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

body.page-group-departures .trip-card-year{ position: absolute; bottom: 16px; right: 16px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); background: rgba(15,18,12,0.5); padding: 4px 10px; border-radius: 2px; }

body.page-group-departures .trip-card-body{ padding: 32px 32px 28px; flex: 1; display: flex; flex-direction: column; }

body.page-group-departures .trip-card-dest{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }

body.page-group-departures .trip-card-title{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--kelp); margin-bottom: 6px; line-height: 1.2; letter-spacing: -0.01em; }

body.page-group-departures .trip-card-dates{ font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--kelp); margin-bottom: 16px; letter-spacing: 0.04em; }

body.page-group-departures .trip-card-desc{ font-size: 13px; line-height: 1.75; font-weight: 300; color: var(--kelp); opacity: 0.8; margin-bottom: 24px; flex: 1; }

body.page-group-departures .trip-card-meta{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; padding-top: 20px; border-top: 1px solid var(--spring); }

body.page-group-departures .trip-meta-item{ }

body.page-group-departures .trip-meta-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kelp); margin-bottom: 3px; display: block; }

body.page-group-departures .trip-meta-value{ font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--kelp); }

body.page-group-departures .trip-card-cta{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--kelp); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--tea); padding-bottom: 3px; width: fit-content; transition: gap 0.2s, border-color 0.2s; }

body.page-group-departures .trip-card:hover .trip-card-cta{ gap: 14px; border-color: var(--laurel); color: var(--laurel); }

body.page-group-departures .expect{ background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-group-departures .expect-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }

body.page-group-departures .expect-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.7); }

body.page-group-departures .expect-header .section-eyebrow{ color: var(--laurel); }

body.page-group-departures .expect-header .section-eyebrow::before{ background: var(--laurel); }

body.page-group-departures .expect-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

body.page-group-departures .expect-item{ background: rgba(255,255,255,0.05); padding: 40px 32px; transition: background 0.3s; }

body.page-group-departures .expect-item:hover{ background: rgba(255,255,255,0.09); }

body.page-group-departures .expect-icon{ color: var(--laurel); margin-bottom: 20px; }

body.page-group-departures .expect-item h3{ font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.25; }

body.page-group-departures .expect-item p{ font-size: 13px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.6); }

body.page-group-departures .trip-detail{ padding: 0; }

body.page-group-departures .trip-sl{ background: var(--off-white); }

body.page-group-departures .trip-bn{ background: var(--spring); }

body.page-group-departures .trip-section-inner{ padding: 100px 80px; }

body.page-group-departures .trip-section-hero{ position: relative; height: 520px; overflow: hidden; }

body.page-group-departures .trip-section-hero img{ width: 100%; height: 100%; object-fit: cover; }

body.page-group-departures .trip-section-hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(15,18,12,0.75) 100%); }

body.page-group-departures .trip-section-hero-label{ position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 80px; }

body.page-group-departures .trip-section-hero-label .trip-dest{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--laurel); margin-bottom: 8px; }

body.page-group-departures .trip-section-hero-label h2{ font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.1; }

body.page-group-departures .trip-section-hero-label .trip-dates-badge{ display: inline-block; margin-top: 12px; background: rgba(161,173,144,0.25); border: 1px solid rgba(161,173,144,0.5); color: var(--laurel); font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 2px; }

body.page-group-departures .trip-body{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: 72px max(80px, calc((100% - 1260px) / 2)) 80px; }

body.page-group-departures .trip-body-text{ min-width: 0; }

body.page-group-departures .trip-body-text > p{ font-size: 15px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 16px; }

body.page-group-departures .trip-specs{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; width: 100%; }

body.page-group-departures .trip-spec{ background: var(--spring); padding: 18px 20px; min-width: 0; }

body.page-group-departures .trip-bn .trip-spec{ background: var(--white); }

body.page-group-departures .trip-spec-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--kelp); display: block; margin-bottom: 5px; }

body.page-group-departures .trip-spec-value{ font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--kelp); }

body.page-group-departures .trip-stops{ }

body.page-group-departures .trip-stops-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--laurel); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

body.page-group-departures .trip-stops-label::before{ content: ''; display: block; width: 20px; height: 1.5px; background: var(--laurel); }

body.page-group-departures .trip-stop{ display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--tea); align-items: flex-start; }

body.page-group-departures .trip-stop:first-of-type{ border-top: 1px solid var(--tea); }

body.page-group-departures .trip-stop-num{ font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--kelp); flex-shrink: 0; width: 24px; margin-top: 2px; }

body.page-group-departures .trip-stop-name{ font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--kelp); margin-bottom: 3px; }

body.page-group-departures .trip-stop-desc{ font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; }

body.page-group-departures .trip-itinerary{ padding: 0 80px 80px; }

body.page-group-departures .itinerary-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--laurel); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

body.page-group-departures .itinerary-label::before{ content: ''; display: block; width: 20px; height: 1.5px; background: var(--laurel); }

body.page-group-departures .itinerary-days{ display: flex; flex-direction: column; gap: 2px; }

body.page-group-departures .itinerary-day{ background: var(--white); overflow: hidden; }

body.page-group-departures .trip-bn .itinerary-day{ background: var(--off-white); }

body.page-group-departures .itinerary-day-header{ display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; user-select: none; transition: background 0.2s; }

body.page-group-departures .itinerary-day-header:hover{ background: rgba(79,83,66,0.04); }

body.page-group-departures .itinerary-day.open .itinerary-day-header{ background: var(--spring); }

body.page-group-departures .trip-bn .itinerary-day.open .itinerary-day-header{ background: var(--white); }

body.page-group-departures .itinerary-day-left{ display: flex; align-items: center; gap: 16px; }

body.page-group-departures .itinerary-day-num{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--kelp); flex-shrink: 0; }

body.page-group-departures .itinerary-day-title{ font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--kelp); }

body.page-group-departures .itinerary-day-meals{ font-size: 11px; color: var(--kelp); margin-top: 2px; font-style: italic; }

body.page-group-departures .itinerary-day-toggle{ width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--tea); background: transparent; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.3s; color: var(--kelp); }

body.page-group-departures .itinerary-day.open .itinerary-day-toggle{ background: var(--kelp); color: var(--white); transform: rotate(45deg); }

body.page-group-departures .itinerary-day-body{ max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }

body.page-group-departures .itinerary-day.open .itinerary-day-body{ max-height: 400px; }

body.page-group-departures .itinerary-day-content{ padding: 0 24px 24px; font-size: 14px; line-height: 1.8; font-weight: 300; color: var(--kelp); opacity: 0.85; }

body.page-group-departures .trip-photo-strip{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; height: 200px; margin-top: 48px; padding: 0 80px; }

body.page-group-departures .trip-note-band{ padding: 40px 80px 80px; }

body.page-group-departures .trip-gallery{ padding: 80px; }

body.page-group-departures .trip-gallery-spring{ background: var(--spring); }

body.page-group-departures .trip-gallery-white{ background: var(--white); }

body.page-group-departures .trip-photo-strip-item{ overflow: hidden; }

body.page-group-departures .trip-photo-strip-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }

body.page-group-departures .trip-photo-strip-item:hover img{ transform: scale(1.06); }

body.page-group-departures .group-enquire{ background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

body.page-group-departures .group-enquire-text .section-eyebrow{ color: var(--laurel); }

body.page-group-departures .group-enquire-text .section-eyebrow::before{ background: var(--laurel); }

body.page-group-departures .group-enquire-text .section-title{ color: var(--white); margin-bottom: 20px; }

body.page-group-departures .group-enquire-text p{ font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.72); margin-bottom: 32px; }

body.page-group-departures .group-enquire-form{ background: rgba(255,255,255,0.05); padding: 44px; border-radius: 2px; }

body.page-group-departures .group-enquire-form h3{ font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }

body.page-group-departures .group-enquire-form > p{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 28px; line-height: 1.6; }

body.page-group-departures .form-group{ margin-bottom: 14px; }

body.page-group-departures .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }

body.page-group-departures .form-label{ display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 7px; }

body.page-group-departures .form-input, body.page-group-departures .form-select, body.page-group-departures .form-textarea{ width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 2px; font-family: var(--font-body); font-size: 14px; color: var(--white); transition: border-color 0.2s; }

body.page-group-departures .form-input::placeholder, body.page-group-departures .form-textarea::placeholder{ color: rgba(255,255,255,0.28); }

body.page-group-departures .form-input:focus, body.page-group-departures .form-select:focus, body.page-group-departures .form-textarea:focus{ border-color: var(--laurel); }

body.page-group-departures .form-select{ appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A1AD90' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

body.page-group-departures .form-select option{ background: var(--kelp); }

body.page-group-departures .form-textarea{ resize: vertical; min-height: 90px; }

body.page-group-departures .form-commitment{ border: 1px solid rgba(161,173,144,0.25); border-radius: 2px; padding: 18px 20px; margin-bottom: 14px; background: rgba(161,173,144,0.05); transition: border-color 0.2s, background 0.2s; }

body.page-group-departures .form-commitment:has(.form-commitment-checkbox:checked){ border-color: rgba(161,173,144,0.6); background: rgba(161,173,144,0.1); }

body.page-group-departures .form-commitment-text{ font-size: 12px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.55); margin-bottom: 14px; font-style: italic; }

body.page-group-departures .form-commitment-label{ display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }

body.page-group-departures .form-commitment-checkbox{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; appearance: none; border: 1.5px solid rgba(161,173,144,0.45); border-radius: 2px; background: transparent; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; position: relative; cursor: pointer; }

body.page-group-departures .form-commitment-checkbox:checked{ background: var(--laurel); border-color: var(--laurel); }

body.page-group-departures .form-commitment-checkbox:checked::after{ content: ''; position: absolute; width: 10px; height: 6px; border-left: 2px solid var(--kelp); border-bottom: 2px solid var(--kelp); transform: rotate(-45deg) translate(1px, -1px); }

body.page-group-departures .form-commitment-label-text{ font-family: var(--font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); line-height: 1.5; }

body.page-group-departures .form-submit{ width: 100%; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px; background: var(--laurel); color: var(--kelp); border: none; border-radius: 2px; cursor: pointer; transition: background 0.2s; margin-top: 6px; }

body.page-group-departures .form-submit:hover{ background: #b5c19f; }

body.page-group-departures .form-submit:disabled{ opacity: 0.35; cursor: not-allowed; }

body.page-group-departures .form-note{ font-size: 11px; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; font-style: italic; }

body.page-group-departures footer{ background: var(--dark); color: rgba(255,255,255,0.55); padding: 72px max(80px, calc((100% - 1260px) / 2)) 40px; }

body.page-group-departures .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-group-departures .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-group-departures .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-group-departures .footer-social{ display: flex; gap: 12px; }

body.page-group-departures .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s; }

body.page-group-departures .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-group-departures .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-group-departures .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-group-departures .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }

body.page-group-departures .footer-col a:hover{ color: var(--laurel); }

body.page-group-departures .footer-bottom{ display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

body.page-group-departures .footer-bottom-links{ display: flex; gap: 24px; }

body.page-group-departures .footer-bottom a{ color: rgba(255,255,255,0.3); transition: color 0.2s; }

body.page-group-departures .footer-bottom a:hover{ color: rgba(255,255,255,0.6); }

@media (max-width: 1024px){
body.page-group-departures nav, body.page-group-departures .hero-content, body.page-group-departures .departures-overview, body.page-group-departures .expect, body.page-group-departures .trip-section-hero-label, body.page-group-departures .trip-body, body.page-group-departures .trip-itinerary, body.page-group-departures .group-enquire, body.page-group-departures footer{ padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px){
body.page-group-departures nav{ padding: 0 24px; background: rgba(79, 83, 66, 0.97); }

body.page-group-departures .nav-links{ display: none; }

body.page-group-departures .nav-hamburger{ display: flex; }

body.page-group-departures .hero{ height: auto; min-height: calc(100svh - var(--nav-h)); align-items: flex-start; padding-top: 132px; padding-bottom: 40px; }

body.page-group-departures .hero-content{ padding: 0 24px; }

body.page-group-departures .trip-cards, body.page-group-departures .expect-grid{ grid-template-columns: 1fr; }

body.page-group-departures .departures-header, body.page-group-departures .expect-header, body.page-group-departures .trip-body, body.page-group-departures .group-enquire{ grid-template-columns: 1fr; gap: 40px; }

body.page-group-departures .trip-specs{ grid-template-columns: 1fr 1fr; }

body.page-group-departures .trip-photo-strip{ grid-template-columns: repeat(3, 1fr); height: 160px; padding: 0 24px; }

body.page-group-departures .trip-note-band{ padding: 24px 24px 48px; }

body.page-group-departures .trip-gallery{ padding: 48px 24px; }

body.page-group-departures .trip-photo-strip-item:nth-child(n+4){ display: none; }

body.page-group-departures .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-group-departures .departures-overview, body.page-group-departures .expect, body.page-group-departures .group-enquire, body.page-group-departures footer{ padding: 64px 24px; }

body.page-group-departures .trip-body, body.page-group-departures .trip-itinerary{ padding-left: 24px; padding-right: 24px; }

body.page-group-departures .trip-section-hero-label{ padding: 24px; }

body.page-group-departures .form-row{ grid-template-columns: 1fr; }
}

body.page-group-departures .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-group-departures .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-group-departures .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-group-departures .skip-link:focus{ top: 16px; }

body.page-group-departures .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-group-departures .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-group-departures .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-group-departures .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-group-departures .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-group-departures .nav-hamburger{ display: flex; }
}

body.page-group-departures .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-group-departures .mobile-menu.open{ display: flex; }

body.page-group-departures .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-group-departures .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-group-departures .mobile-menu-links a:hover, body.page-group-departures .mobile-menu-links a:focus{ color: var(--white); }

body.page-group-departures .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }

@media (max-width: 480px){
body.page-group-departures .footer-top{ grid-template-columns: 1fr; }

body.page-group-departures section, body.page-group-departures footer{ padding-left: 20px; padding-right: 20px; }
}


/* travel-with-purpose.html */
body.page-travel-with-purpose *, body.page-travel-with-purpose *::before, body.page-travel-with-purpose *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-travel-with-purpose nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }

body.page-travel-with-purpose .nav-logo img{ height: 49px; }

body.page-travel-with-purpose .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-travel-with-purpose .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-travel-with-purpose .nav-links a:hover, body.page-travel-with-purpose .nav-links a.active{ color: var(--white); }

body.page-travel-with-purpose .nav-cta{ border: 1.5px solid rgba(255,255,255,0.5); padding: 9px 22px; border-radius: 2px; color: var(--white) !important; transition: background 0.2s, border-color 0.2s !important; }

body.page-travel-with-purpose .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-travel-with-purpose .section-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

body.page-travel-with-purpose .section-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); flex-shrink: 0; }

body.page-travel-with-purpose .section-eyebrow.centered{ justify-content: center; }

body.page-travel-with-purpose .section-eyebrow.centered::before{ display: none; }

body.page-travel-with-purpose .section-eyebrow.centered::after{ content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); }

body.page-travel-with-purpose .section-eyebrow.light{ color: var(--laurel); }

body.page-travel-with-purpose .section-eyebrow.light::before{ background: var(--laurel); }

body.page-travel-with-purpose .section-title{ font-family: var(--font-head); font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; line-height: 1.1; color: var(--kelp); letter-spacing: -0.02em; }

body.page-travel-with-purpose .section-title em{ font-style: italic; font-weight: 300; }

body.page-travel-with-purpose .section-title.light{ color: var(--white); }

body.page-travel-with-purpose .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

body.page-travel-with-purpose .reveal.visible{ opacity: 1; transform: translateY(0); }

body.page-travel-with-purpose .reveal-delay-1{ transition-delay: 0.12s; }

body.page-travel-with-purpose .reveal-delay-2{ transition-delay: 0.22s; }

body.page-travel-with-purpose .reveal-delay-3{ transition-delay: 0.32s; }

body.page-travel-with-purpose .btn-primary{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; background: var(--kelp); color: var(--white); border: 2px solid var(--kelp); border-radius: 2px; cursor: pointer; transition: background 0.2s, border-color 0.2s; }

body.page-travel-with-purpose .btn-primary:hover{ background: var(--laurel); border-color: var(--laurel); }

body.page-travel-with-purpose .btn-outline-white{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 28px; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); border-radius: 2px; cursor: pointer; transition: border-color 0.2s, background 0.2s; }

body.page-travel-with-purpose .btn-outline-white:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }

body.page-travel-with-purpose .hero{ position: relative; height: 80vh; min-height: 540px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 88px; margin-top: var(--nav-h); }

body.page-travel-with-purpose .hero-bg{ position: absolute; inset: 0; background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/sri-lanka-kumana-national-park-wildlife-watching-safari-unearth-adventure.webp'); background-size: cover; background-position: center 40%; animation: heroZoom 14s var(--ease) forwards; }

body.page-travel-with-purpose .hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,18,12,0.2) 0%, rgba(15,18,12,0.05) 30%, rgba(15,18,12,0.65) 72%, rgba(15,18,12,0.88) 100%); }

body.page-travel-with-purpose .hero-content{ position: relative; z-index: 2; padding: 0 80px; max-width: 800px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s 0.4s var(--ease) forwards; }

body.page-travel-with-purpose .hero-eyebrow{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(15,18,12,0.38); box-shadow: 0 10px 24px rgba(15,18,12,0.18); text-shadow: 0 2px 10px rgba(15,18,12,0.45); backdrop-filter: blur(6px); }

body.page-travel-with-purpose .hero-eyebrow::before{ content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-travel-with-purpose .hero-title{ font-family: var(--font-head); font-size: clamp(44px, 6vw, 76px); font-weight: 700; line-height: 1.03; color: var(--white); margin-bottom: 20px; letter-spacing: -0.025em; text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-travel-with-purpose .hero-title em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-travel-with-purpose .hero-sub{ font-size: 17px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.9); max-width: 540px; text-shadow: 0 2px 12px rgba(15,18,12,0.35); }

body.page-travel-with-purpose .philosophy-intro{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

body.page-travel-with-purpose .philosophy-intro-text .section-title{ margin-bottom: 28px; }

body.page-travel-with-purpose .philosophy-intro-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 18px; }

body.page-travel-with-purpose .philosophy-pillars{ display: flex; flex-direction: column; gap: 0; }

body.page-travel-with-purpose .philosophy-pillar{ display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--tea); align-items: flex-start; }

body.page-travel-with-purpose .philosophy-pillar:first-child{ border-top: 1px solid var(--tea); }

body.page-travel-with-purpose .philosophy-pillar-icon{
    width: 48px;
    height: 48px;
    background: rgba(161,173,144,0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--laurel);
    margin-top: 2px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

body.page-travel-with-purpose .philosophy-pillar-icon svg{
    width: 22px;
    height: 22px;
  }

body.page-travel-with-purpose .philosophy-pillar:hover .philosophy-pillar-icon{
    background: rgba(161,173,144,0.22);
    color: var(--kelp);
    transform: translateY(-1px);
  }

body.page-travel-with-purpose .philosophy-pillar-text strong{ font-family: var(--font-head); font-size: 14px; font-weight: 600; display: block; margin-bottom: 4px; color: var(--kelp); }

body.page-travel-with-purpose .philosophy-pillar-text p{ font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; margin: 0; }

body.page-travel-with-purpose .operate{ background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-travel-with-purpose .operate-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }

body.page-travel-with-purpose .operate-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.7); }

body.page-travel-with-purpose .operate-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

body.page-travel-with-purpose .operate-item{ background: rgba(255,255,255,0.05); padding: 44px 36px; transition: background 0.3s; }

body.page-travel-with-purpose .operate-item:hover{ background: rgba(255,255,255,0.09); }

body.page-travel-with-purpose .operate-icon{ color: var(--laurel); margin-bottom: 22px; }

body.page-travel-with-purpose .operate-item h3{ font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; line-height: 1.25; letter-spacing: -0.01em; }

body.page-travel-with-purpose .operate-item p{ font-size: 14px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.62); }

body.page-travel-with-purpose .citizen{ position: relative; background-color: var(--dark); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-travel-with-purpose .citizen::before{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,45,34,0.62) 0%, rgba(42,45,34,0.45) 100%); }

body.page-travel-with-purpose .citizen > *{ position: relative; z-index: 1; }

body.page-travel-with-purpose .citizen .section-eyebrow{ color: rgba(255,255,255,0.9); }

body.page-travel-with-purpose .citizen .section-title{ color: var(--white); }

body.page-travel-with-purpose .citizen-header p{ color: var(--white); opacity: 0.9; }

body.page-travel-with-purpose .citizen-header{ max-width: 720px; margin: 0 auto 72px; text-align: center; }

body.page-travel-with-purpose .citizen-header .section-title{ margin-bottom: 20px; }

body.page-travel-with-purpose .citizen-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85; }

body.page-travel-with-purpose .citizen-cards{ display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

body.page-travel-with-purpose .citizen-card{ background: var(--spring); padding: 52px 48px; position: relative; overflow: hidden; }

body.page-travel-with-purpose .citizen-card.dark{ background: var(--kelp); }

body.page-travel-with-purpose .citizen-card-tag{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

body.page-travel-with-purpose .citizen-card-tag::before{ content: ''; display: block; width: 16px; height: 1.5px; background: var(--laurel); }

body.page-travel-with-purpose .citizen-card h3{ font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--kelp); margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.02em; }

body.page-travel-with-purpose .citizen-card.dark h3{ color: var(--white); }

body.page-travel-with-purpose .citizen-card > p{ font-size: 15px; line-height: 1.8; font-weight: 300; opacity: 0.85; margin-bottom: 32px; color: var(--kelp); }

body.page-travel-with-purpose .citizen-card.dark > p{ color: rgba(255,255,255,0.72); opacity: 1; }

body.page-travel-with-purpose .citizen-steps{ display: flex; flex-direction: column; gap: 0; }

body.page-travel-with-purpose .citizen-step{ display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(196,189,177,0.5); align-items: flex-start; }

body.page-travel-with-purpose .citizen-card.dark .citizen-step{ border-bottom-color: rgba(255,255,255,0.1); }

body.page-travel-with-purpose .citizen-step:first-child{ border-top: 1px solid rgba(196,189,177,0.5); }

body.page-travel-with-purpose .citizen-card.dark .citizen-step:first-child{ border-top-color: rgba(255,255,255,0.1); }

body.page-travel-with-purpose .citizen-step-num{ font-family: var(--font-head); font-size: 11px; font-weight: 600; color: var(--kelp); flex-shrink: 0; min-width: 20px; margin-top: 2px; }

body.page-travel-with-purpose .citizen-step-text strong{ font-family: var(--font-head); font-size: 13px; font-weight: 600; display: block; margin-bottom: 3px; color: var(--kelp); }

body.page-travel-with-purpose .citizen-card.dark .citizen-step-text strong{ color: var(--white); }

body.page-travel-with-purpose .citizen-step-text p{ font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; margin: 0; color: var(--kelp); }

body.page-travel-with-purpose .citizen-card.dark .citizen-step-text p{ color: rgba(255,255,255,0.65); opacity: 1; }

body.page-travel-with-purpose .citizen-card.dark .citizen-card-tag{ color: var(--laurel); }

body.page-travel-with-purpose .citizen-card.dark .citizen-step-num{ color: var(--laurel); }

body.page-travel-with-purpose .citizen-card-note{ margin-top: 28px; padding: 18px 20px; background: rgba(79,83,66,0.06); border-radius: 2px; font-size: 12px; line-height: 1.7; font-weight: 300; color: var(--kelp); opacity: 0.75; font-style: italic; }

body.page-travel-with-purpose .citizen-card.dark .citizen-card-note{ background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); opacity: 1; }

body.page-travel-with-purpose .partner{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

body.page-travel-with-purpose .partner-text .section-title{ margin-bottom: 24px; }

body.page-travel-with-purpose .partner-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 18px; }

body.page-travel-with-purpose .partner-card{ background: var(--kelp); border-radius: 2px; padding: 48px; }

body.page-travel-with-purpose .partner-card-header{ display: flex; align-items: flex-start; gap: 20px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }

body.page-travel-with-purpose .partner-card-icon{ width: 52px; height: 52px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--laurel); }

body.page-travel-with-purpose .partner-card-icon img{ width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

body.page-travel-with-purpose .partner-card-header h3{ font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em; line-height: 1.2; }

body.page-travel-with-purpose .partner-card-header p{ font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; }

body.page-travel-with-purpose .partner-card > p{ font-size: 14px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 16px; }

body.page-travel-with-purpose .partner-card-link{ display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--laurel); margin-top: 8px; border-bottom: 1px solid rgba(161,173,144,0.35); padding-bottom: 2px; transition: border-color 0.2s; }

body.page-travel-with-purpose .partner-card-link:hover{ border-color: var(--laurel); }

body.page-travel-with-purpose .sdg-section{ background: var(--kelp); padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-travel-with-purpose .sdg-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 64px; }

body.page-travel-with-purpose .sdg-header p{ font-size: 16px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.7); }

body.page-travel-with-purpose .sdg-disclaimer{ font-size: 11px; color: rgba(255,255,255,0.3); font-style: italic; line-height: 1.6; margin-top: 12px; }

body.page-travel-with-purpose .sdg-goals{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 48px; }

body.page-travel-with-purpose .sdg-goal{ background: rgba(255,255,255,0.04); overflow: hidden; transition: background 0.3s; }

body.page-travel-with-purpose .sdg-goal:hover{ background: rgba(255,255,255,0.08); }

body.page-travel-with-purpose .sdg-goal-icon{ width: 100%; aspect-ratio: 1; overflow: hidden; }

body.page-travel-with-purpose .sdg-goal-icon img{ width: 100%; height: 100%; object-fit: cover; display: block; }

body.page-travel-with-purpose .sdg-goal-body{ padding: 20px 20px 24px; }

body.page-travel-with-purpose .sdg-goal-num{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: var(--laurel); display: block; margin-bottom: 6px; text-transform: uppercase; }

body.page-travel-with-purpose .sdg-goal-title{ font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.2; }

body.page-travel-with-purpose .sdg-goal-desc{ font-size: 12px; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.55); }

body.page-travel-with-purpose .sdg-note{ background: rgba(255,255,255,0.04); padding: 28px 32px; display: flex; gap: 16px; align-items: flex-start; border-radius: 2px; }

body.page-travel-with-purpose .sdg-note svg{ flex-shrink: 0; color: var(--laurel); margin-top: 2px; }

body.page-travel-with-purpose .sdg-note p{ font-size: 13px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.55); font-style: italic; }

body.page-travel-with-purpose .sdg-note a{ color: var(--laurel); text-decoration: underline; text-underline-offset: 3px; }

body.page-travel-with-purpose .solar-section{ position: relative; background-color: var(--dark); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

body.page-travel-with-purpose .solar-section::before{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,45,34,0.62) 0%, rgba(42,45,34,0.45) 100%); }

body.page-travel-with-purpose .solar-section > *{ position: relative; z-index: 1; }

body.page-travel-with-purpose .solar-text .section-eyebrow{ color: rgba(255,255,255,0.9); }

body.page-travel-with-purpose .solar-text .section-title{ color: var(--white); }

body.page-travel-with-purpose .solar-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.9; margin-bottom: 18px; color: var(--white); }

body.page-travel-with-purpose .solar-text .section-title{ margin-bottom: 24px; }

body.page-travel-with-purpose .solar-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 18px; }

body.page-travel-with-purpose .solar-widget{ background: var(--kelp); border-radius: 4px; padding: 44px; color: var(--white); }

body.page-travel-with-purpose .solar-widget-header{ display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }

body.page-travel-with-purpose .solar-widget-header svg{ color: var(--laurel); flex-shrink: 0; }

body.page-travel-with-purpose .solar-widget-header-text h3{ font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 3px; }

body.page-travel-with-purpose .solar-widget-header-text p{ font-size: 12px; color: rgba(255,255,255,0.45); }

body.page-travel-with-purpose .solar-live{ display: flex; align-items: center; gap: 8px; margin-left: auto; font-family: var(--font-head); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

body.page-travel-with-purpose .solar-live-dot{ width: 8px; height: 8px; background: var(--live-green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(111,207,103,0.2); animation: pulse 2s ease-in-out infinite; }

body.page-travel-with-purpose .solar-metrics{ display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 20px; }

body.page-travel-with-purpose .solar-metric{ background: rgba(255,255,255,0.06); padding: 16px; }

body.page-travel-with-purpose .solar-metric-value{ font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 5px; }

body.page-travel-with-purpose .solar-metric-value .unit{ font-size: 14px; font-weight: 400; color: var(--laurel); margin-left: 3px; }

body.page-travel-with-purpose .solar-metric-label{ font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; font-family: var(--font-head); text-transform: uppercase; }

body.page-travel-with-purpose .solar-coming-soon{ background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 12px; }

body.page-travel-with-purpose .solar-coming-soon svg{ flex-shrink: 0; margin-top: 1px; color: var(--laurel); }

body.page-travel-with-purpose .solar-coming-soon p{ font-size: 12px; line-height: 1.65; color: rgba(255,255,255,0.4); font-style: italic; }

body.page-travel-with-purpose .approach-band{ background: var(--kelp); padding: 80px max(80px, calc((100% - 1260px) / 2)); }

body.page-travel-with-purpose .approach-band-inner{ display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

body.page-travel-with-purpose .approach-item{ background: rgba(255,255,255,0.05); padding: 40px 36px; }

body.page-travel-with-purpose .approach-item h3{ font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }

body.page-travel-with-purpose .approach-item p{ font-size: 13px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.6); }

body.page-travel-with-purpose .approach-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--laurel); margin-bottom: 12px; display: block; }

body.page-travel-with-purpose .twp-cta{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

body.page-travel-with-purpose .twp-cta-text .section-title{ margin-bottom: 20px; }

body.page-travel-with-purpose .twp-cta-text p{ font-size: 16px; line-height: 1.8; font-weight: 300; opacity: 0.85; margin-bottom: 32px; }

body.page-travel-with-purpose .twp-cta-image{ position: relative; }

body.page-travel-with-purpose .twp-cta-image img{ width: 100%; height: 420px; object-fit: cover; border-radius: 2px; }

body.page-travel-with-purpose footer{ background: var(--dark); color: rgba(255,255,255,0.55); padding: 72px max(80px, calc((100% - 1260px) / 2)) 40px; }

body.page-travel-with-purpose .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-travel-with-purpose .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-travel-with-purpose .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-travel-with-purpose .footer-social{ display: flex; gap: 12px; }

body.page-travel-with-purpose .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: border-color 0.2s, color 0.2s; }

body.page-travel-with-purpose .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-travel-with-purpose .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-travel-with-purpose .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-travel-with-purpose .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); transition: color 0.2s; }

body.page-travel-with-purpose .footer-col a:hover{ color: var(--laurel); }

body.page-travel-with-purpose .footer-bottom{ display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); }

body.page-travel-with-purpose .footer-bottom-links{ display: flex; gap: 24px; }

body.page-travel-with-purpose .footer-bottom a{ color: rgba(255,255,255,0.3); transition: color 0.2s; }

body.page-travel-with-purpose .footer-bottom a:hover{ color: rgba(255,255,255,0.6); }

@media (max-width: 1024px){
body.page-travel-with-purpose nav, body.page-travel-with-purpose .hero-content, body.page-travel-with-purpose .philosophy-intro, body.page-travel-with-purpose .operate, body.page-travel-with-purpose .citizen, body.page-travel-with-purpose .partner, body.page-travel-with-purpose .sdg-section, body.page-travel-with-purpose .solar-section, body.page-travel-with-purpose .twp-cta, body.page-travel-with-purpose footer{ padding-left: 40px; padding-right: 40px; }

body.page-travel-with-purpose .approach-band{ padding: 64px 40px; }
}

@media (max-width: 768px){
body.page-travel-with-purpose nav{ padding: 0 24px; background: rgba(79, 83, 66, 0.97); }

body.page-travel-with-purpose .nav-links{ display: none; }

body.page-travel-with-purpose .nav-hamburger{ display: flex; }

body.page-travel-with-purpose .hero{ height: auto; min-height: calc(100svh - var(--nav-h)); align-items: flex-start; padding-top: 132px; padding-bottom: 40px; }

body.page-travel-with-purpose .hero-content{ padding: 0 24px; }

body.page-travel-with-purpose .philosophy-intro, body.page-travel-with-purpose .partner, body.page-travel-with-purpose .solar-section, body.page-travel-with-purpose .twp-cta{ grid-template-columns: 1fr; gap: 48px; }

body.page-travel-with-purpose .sdg-header{ grid-template-columns: 1fr; gap: 32px; }

body.page-travel-with-purpose .sdg-goals{ grid-template-columns: repeat(3, 1fr); }

body.page-travel-with-purpose .operate-header{ grid-template-columns: 1fr; gap: 24px; }

body.page-travel-with-purpose .operate-grid{ grid-template-columns: 1fr; }

body.page-travel-with-purpose .citizen-cards{ grid-template-columns: 1fr; }

body.page-travel-with-purpose .approach-band-inner{ grid-template-columns: 1fr; }

body.page-travel-with-purpose .solar-metrics{ grid-template-columns: 1fr; }

body.page-travel-with-purpose .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-travel-with-purpose .philosophy-intro, body.page-travel-with-purpose .operate, body.page-travel-with-purpose .citizen, body.page-travel-with-purpose .partner, body.page-travel-with-purpose .sdg-section, body.page-travel-with-purpose .solar-section, body.page-travel-with-purpose .twp-cta, body.page-travel-with-purpose .approach-band, body.page-travel-with-purpose footer{ padding: 64px 24px; }
}

body.page-travel-with-purpose .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-travel-with-purpose .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-travel-with-purpose .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-travel-with-purpose .skip-link:focus{ top: 16px; }

body.page-travel-with-purpose .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-travel-with-purpose .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-travel-with-purpose .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-travel-with-purpose .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-travel-with-purpose .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-travel-with-purpose .nav-hamburger{ display: flex; }
}

body.page-travel-with-purpose .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-travel-with-purpose .mobile-menu.open{ display: flex; }

body.page-travel-with-purpose .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-travel-with-purpose .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-travel-with-purpose .mobile-menu-links a:hover, body.page-travel-with-purpose .mobile-menu-links a:focus{ color: var(--white); }

body.page-travel-with-purpose .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }

@media (max-width: 480px){
body.page-travel-with-purpose .footer-top{ grid-template-columns: 1fr; }

body.page-travel-with-purpose section, body.page-travel-with-purpose footer{ padding-left: 20px; padding-right: 20px; }

body.page-travel-with-purpose .sdg-goals{
      grid-template-columns: unset;
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x proximity; overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 16px;
      gap: 8px;
      margin: 0 -24px;
      padding-left: 24px;
      padding-right: 24px;
      scrollbar-width: none;
    }

body.page-travel-with-purpose .sdg-goals::-webkit-scrollbar{ display: none; }

body.page-travel-with-purpose .sdg-goal{ flex: 0 0 240px; min-width: 240px; scroll-snap-align: start; }
}

body.page-travel-with-purpose .solar-impact{ display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }

body.page-travel-with-purpose .solar-impact-item{ background: rgba(255,255,255,0.04); padding: 14px 18px; display: flex; align-items: center; gap: 14px; }

body.page-travel-with-purpose .solar-impact-icon{ width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

body.page-travel-with-purpose .solar-impact-green{ background: rgba(111,207,103,0.12); color: var(--live-green); }

body.page-travel-with-purpose .solar-impact-grey{ background: rgba(163,175,164,0.15); color: #A3AFA4; }

body.page-travel-with-purpose .solar-impact-value{ font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 2px; }

body.page-travel-with-purpose .solar-impact-unit{ font-size: 12px; font-weight: 400; color: var(--laurel); margin-left: 3px; }

body.page-travel-with-purpose .solar-impact-text{ font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }

body.page-travel-with-purpose .solar-impact-text strong{ color: rgba(255,255,255,0.65); font-weight: 600; }

body.page-travel-with-purpose .solar-impact-tooltip{ display: flex; align-items: flex-start; gap: 7px; font-size: 10px; color: rgba(255,255,255,0.28); font-style: italic; line-height: 1.6; padding: 10px 2px 0; border-top: 1px solid rgba(255,255,255,0.07); margin-top: 2px; }

body.page-travel-with-purpose .solar-impact-tooltip svg{ flex-shrink: 0; margin-top: 1px; color: rgba(255,255,255,0.3); }


/* enquire.html */
body.page-enquire *, body.page-enquire *::before, body.page-enquire *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-enquire nav{
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

body.page-enquire .nav-logo img{ height: 49px; width: auto; }

body.page-enquire .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-enquire .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-enquire .nav-links a:hover, body.page-enquire .nav-links a.active{ color: var(--white); }

body.page-enquire .nav-cta{ background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white) !important; padding: 9px 22px; border-radius: 2px; transition: background 0.2s, border-color 0.2s !important; }

body.page-enquire .nav-cta:hover, body.page-enquire .nav-cta.active{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-enquire .section-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }

body.page-enquire .section-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: var(--laurel); flex-shrink: 0; }

body.page-enquire .section-title{ font-family: var(--font-head); font-size: clamp(30px,3.5vw,48px); font-weight: 700; line-height: 1.1; color: var(--kelp); letter-spacing: -0.02em; }

body.page-enquire .section-title em{ font-style: italic; font-weight: 300; }

body.page-enquire .section-title.light{ color: var(--white); }

body.page-enquire .reveal{ opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

body.page-enquire .reveal.visible{ opacity: 1; transform: translateY(0); }

body.page-enquire .reveal-delay-1{ transition-delay: 0.12s; }

body.page-enquire .reveal-delay-2{ transition-delay: 0.22s; }

body.page-enquire .reveal-delay-3{ transition-delay: 0.32s; }

body.page-enquire .hero{ position: relative; height: 72vh; min-height: 500px; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 96px; margin-top: var(--nav-h); }

body.page-enquire .hero-bg{ position: absolute; inset: 0; background-image: url('https://pub-29f7b1b97c2448028cf039c39740e0c7.r2.dev/website/borneo-maliau-basin-river-people-on-bridge-unearth-adventure.webp'); background-size: cover; background-position: center 35%; animation: heroZoom 14s var(--ease) forwards; }

body.page-enquire .hero-overlay{ position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,32,25,0.22) 0%, rgba(30,32,25,0.06) 35%, rgba(30,32,25,0.70) 80%, rgba(30,32,25,0.88) 100%); }

body.page-enquire .hero-content{ position: relative; z-index: 2; padding: 0 80px; max-width: 800px; opacity: 0; transform: translateY(28px); animation: fadeUp 1s 0.5s var(--ease) forwards; }

body.page-enquire .hero-eyebrow{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(15,18,12,0.38); box-shadow: 0 10px 24px rgba(15,18,12,0.18); text-shadow: 0 2px 10px rgba(15,18,12,0.45); backdrop-filter: blur(6px); }

body.page-enquire .hero-eyebrow::before{ content: ''; display: block; width: 32px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-enquire .hero-title{ font-family: var(--font-head); font-size: clamp(44px,6vw,72px); font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-enquire .hero-title em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); text-shadow: 0 4px 20px rgba(15,18,12,0.35); }

body.page-enquire .hero-sub{ font-family: var(--font-body); font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.9); max-width: 500px; text-shadow: 0 2px 12px rgba(15,18,12,0.35); }

body.page-enquire .intro-band{ background: var(--spring); padding: 100px max(80px, calc((100% - 1260px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

body.page-enquire .intro-band-text .section-title{ margin-bottom: 24px; }

body.page-enquire .intro-band-text p{ font-size: 16px; line-height: 1.85; font-weight: 300; color: var(--kelp); opacity: 0.85; }

body.page-enquire .intro-band-text .lead{ font-size: 18px; font-weight: 400; line-height: 1.65; opacity: 1; margin-bottom: 24px; }

body.page-enquire .intro-band-text p + p{ margin-top: 16px; }

body.page-enquire .trip-type-cards{ display: flex; flex-direction: column; gap: 16px; }

body.page-enquire .trip-type-card{ background: var(--white); border-radius: 2px; padding: 28px 32px; border-left: 3px solid transparent; transition: border-color 0.25s; }

body.page-enquire .trip-type-card:hover{ border-color: var(--laurel); }

body.page-enquire .trip-type-card-tag{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }

body.page-enquire .trip-type-card h3{ font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--kelp); margin-bottom: 10px; letter-spacing: -0.01em; }

body.page-enquire .trip-type-card p{ font-size: 13.5px; line-height: 1.75; font-weight: 300; color: var(--kelp); opacity: 0.8; }

body.page-enquire .photo-strip{ display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4px; height: 340px; overflow: hidden; }

body.page-enquire .photo-strip-item{ overflow: hidden; }

body.page-enquire .photo-strip-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }

body.page-enquire .photo-strip-item:hover img{ transform: scale(1.04); }

body.page-enquire .enquire-section{ padding: 100px max(80px, calc((100% - 1260px) / 2)); background: var(--off-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

body.page-enquire .enquire-section-text .section-title{ margin-bottom: 20px; }

body.page-enquire .enquire-section-text > p{ font-size: 16px; line-height: 1.85; font-weight: 300; opacity: 0.85; margin-bottom: 36px; }

body.page-enquire .enquire-detail-list{ list-style: none; display: flex; flex-direction: column; gap: 0; }

body.page-enquire .enquire-detail-item{ display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--tea); align-items: flex-start; }

body.page-enquire .enquire-detail-item:first-child{ border-top: 1px solid var(--tea); }

body.page-enquire .enquire-detail-num{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--kelp); flex-shrink: 0; margin-top: 2px; min-width: 24px; }

body.page-enquire .enquire-detail-item strong{ font-family: var(--font-head); font-size: 14px; font-weight: 600; display: block; margin-bottom: 4px; color: var(--kelp); }

body.page-enquire .enquire-detail-item p{ font-size: 13px; line-height: 1.65; font-weight: 300; opacity: 0.75; margin: 0; }

body.page-enquire .contact-row{ margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--tea); }

body.page-enquire .contact-row p{ font-size: 13px; font-weight: 300; line-height: 1.7; opacity: 0.75; }

body.page-enquire .contact-row a{ font-weight: 500; color: var(--kelp); border-bottom: 1px solid var(--tea); transition: border-color 0.2s; }

body.page-enquire .contact-row a:hover{ border-color: var(--kelp); }

body.page-enquire .enquire-form-panel{ background: var(--kelp); padding: 48px; border-radius: 2px; }

body.page-enquire .enquire-form-panel h3{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }

body.page-enquire .enquire-form-panel > p{ font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 32px; line-height: 1.6; }

body.page-enquire .form-group{ margin-bottom: 16px; }

body.page-enquire .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }

body.page-enquire .form-label{ display: block; font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }

body.page-enquire .form-input, body.page-enquire .form-select, body.page-enquire .form-textarea{ width: 100%; padding: 13px 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; font-family: var(--font-body); font-size: 14px; color: var(--white); transition: border-color 0.2s, background 0.2s; }

body.page-enquire .form-input::placeholder, body.page-enquire .form-textarea::placeholder{ color: rgba(255,255,255,0.3); }

body.page-enquire .form-input:focus, body.page-enquire .form-select:focus, body.page-enquire .form-textarea:focus{ border-color: var(--laurel); background: rgba(255,255,255,0.1); }

body.page-enquire .form-select{ appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A1AD90' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: rgba(255,255,255,0.07); padding-right: 36px; }

body.page-enquire .form-select option{ background: var(--kelp); color: var(--white); }

body.page-enquire .form-textarea{ resize: vertical; min-height: 110px; }

body.page-enquire .form-divider{ display: flex; align-items: center; gap: 16px; margin: 24px 0; }

body.page-enquire .form-divider span{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

body.page-enquire .form-divider::before, body.page-enquire .form-divider::after{ content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

body.page-enquire .form-commitment{ border: 1px solid rgba(161,173,144,0.3); border-radius: 2px; padding: 20px; margin-bottom: 16px; background: rgba(161,173,144,0.06); transition: border-color 0.2s, background 0.2s; }

body.page-enquire .form-commitment:has(.form-commitment-checkbox:checked){ border-color: rgba(161,173,144,0.7); background: rgba(161,173,144,0.1); }

body.page-enquire .form-commitment-text{ font-size: 12px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-style: italic; }

body.page-enquire .form-commitment-label{ display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }

body.page-enquire .form-commitment-checkbox{ width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; cursor: pointer; appearance: none; -webkit-appearance: none; border: 1.5px solid rgba(161,173,144,0.5); border-radius: 2px; background: transparent; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; position: relative; }

body.page-enquire .form-commitment-checkbox:checked{ background: var(--laurel); border-color: var(--laurel); }

body.page-enquire .form-commitment-checkbox:checked::after{ content: ''; position: absolute; width: 10px; height: 6px; border-left: 2px solid var(--kelp); border-bottom: 2px solid var(--kelp); transform: rotate(-45deg) translate(1px,-1px); }

body.page-enquire .form-commitment-label-text{ font-family: var(--font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.5; letter-spacing: 0.01em; }

body.page-enquire .form-commitment-label:hover .form-commitment-label-text{ color: var(--white); }

body.page-enquire .form-submit{ width: 100%; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px; background: var(--laurel); color: var(--kelp); border: none; border-radius: 2px; cursor: pointer; margin-top: 8px; transition: background 0.2s; }

body.page-enquire .form-submit:hover:not(:disabled){ background: #b5c19f; }

body.page-enquire .form-submit:disabled{ opacity: 0.4; cursor: not-allowed; }

body.page-enquire .form-note{ font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; font-style: italic; }

body.page-enquire .form-success{ display: none; text-align: center; padding: 48px 24px; }

body.page-enquire .form-success.visible{ display: block; }

body.page-enquire .form-success svg{ margin: 0 auto 20px; }

body.page-enquire .form-success h3{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }

body.page-enquire .form-success p{ font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.75; }

body.page-enquire .form-success a{ color: var(--laurel); border-bottom: 1px solid rgba(161,173,144,0.4); }

body.page-enquire .next-steps{ position: relative; background-color: var(--dark); background-size: cover; background-position: center; background-repeat: no-repeat; padding: 100px max(80px, calc((100% - 1260px) / 2)); }

body.page-enquire .next-steps::before{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,45,34,0.62) 0%, rgba(42,45,34,0.45) 100%); }

body.page-enquire .next-steps > *{ position: relative; z-index: 1; }

body.page-enquire .next-steps-header .section-eyebrow{ color: var(--laurel); }

body.page-enquire .next-steps-header{ display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }

body.page-enquire .next-steps-header .section-title.light{ margin-top: 16px; }

body.page-enquire .next-steps-header p{ font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.65); }

body.page-enquire .next-steps-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

body.page-enquire .next-step-card{ background: rgba(255,255,255,0.04); padding: 40px 32px; border-top: 2px solid rgba(255,255,255,0.1); transition: background 0.2s, border-color 0.2s; }

body.page-enquire .next-step-card:hover{ background: rgba(255,255,255,0.07); border-color: var(--laurel); }

body.page-enquire .next-step-num{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--laurel); margin-bottom: 20px; }

body.page-enquire .next-step-card h3{ font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -0.01em; }

body.page-enquire .next-step-card p{ font-size: 13px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.55); }

body.page-enquire footer{ background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px max(80px, calc((100% - 1260px) / 2)) 40px; }

body.page-enquire .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-enquire .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-enquire .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-enquire .footer-social{ display: flex; gap: 12px; }

body.page-enquire .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; }

body.page-enquire .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-enquire .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-enquire .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-enquire .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }

body.page-enquire .footer-col a:hover{ color: var(--laurel); }

body.page-enquire .footer-bottom{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); }

body.page-enquire .footer-bottom a{ color: rgba(255,255,255,0.35); transition: color 0.2s; }

body.page-enquire .footer-bottom a:hover{ color: rgba(255,255,255,0.65); }

body.page-enquire .footer-bottom-links{ display: flex; gap: 24px; }

@media (max-width: 1024px){
body.page-enquire nav{ padding: 0 40px; }

body.page-enquire .hero-content{ padding: 0 40px; }

body.page-enquire .intro-band, body.page-enquire .enquire-section, body.page-enquire .next-steps, body.page-enquire footer{ padding-left: 40px; padding-right: 40px; }

body.page-enquire .next-steps-grid{ grid-template-columns: 1fr 1fr; }

body.page-enquire .next-steps-header{ grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px){
body.page-enquire nav{ padding: 0 24px; background: rgba(79, 83, 66, 0.97); }

body.page-enquire .nav-links{ display: none; }

body.page-enquire .nav-hamburger{ display: flex; }

body.page-enquire .hero{ height: auto; min-height: calc(100svh - var(--nav-h)); align-items: flex-start; padding-top: 132px; padding-bottom: 40px; }

body.page-enquire .hero-content{ padding: 0 24px; }

body.page-enquire .intro-band, body.page-enquire .enquire-section{ grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }

body.page-enquire .photo-strip{ height: 220px; }

body.page-enquire .next-steps{ padding: 64px 24px; }

body.page-enquire .next-steps-grid{ grid-template-columns: 1fr; }

body.page-enquire footer{ padding: 48px 24px 32px; }

body.page-enquire .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-enquire .form-row{ grid-template-columns: 1fr; }

body.page-enquire .enquire-form-panel{ padding: 32px 24px; }
}

@media (max-width: 480px){
body.page-enquire .footer-top{ grid-template-columns: 1fr; }

body.page-enquire .photo-strip{ grid-template-columns: 1fr; height: auto; }

body.page-enquire .photo-strip-item{ height: 200px; }
}

body.page-enquire .modal-backdrop{
    position: fixed; inset: 0; z-index: 200;
    background: rgba(30,32,25,0.7);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease);
  }

body.page-enquire .modal-backdrop.visible{ opacity: 1; pointer-events: auto; }

body.page-enquire .modal{
    background: var(--off-white); border-radius: 3px;
    padding: 48px 48px 40px;
    max-width: 440px; width: 100%;
    text-align: center;
    transform: translateY(16px);
    transition: transform 0.3s var(--ease);
  }

body.page-enquire .modal-backdrop.visible .modal{ transform: translateY(0); }

body.page-enquire .modal-icon{
    width: 52px; height: 52px; margin: 0 auto 20px;
    background: var(--kelp); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

body.page-enquire .modal h3{
    font-family: var(--font-head); font-size: 20px; font-weight: 700;
    color: var(--kelp); margin-bottom: 12px; letter-spacing: -0.01em;
  }

body.page-enquire .modal p{
    font-size: 14px; font-weight: 300; line-height: 1.75; color: var(--kelp); opacity: 0.75;
  }

body.page-enquire .modal-close{
    margin-top: 28px;
    font-family: var(--font-head); font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 13px 36px; background: var(--kelp); color: var(--white);
    border: none; border-radius: 2px; cursor: pointer;
    transition: background 0.2s;
  }

body.page-enquire .modal-close:hover{ background: var(--laurel); color: var(--kelp); }

body.page-enquire .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-enquire .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-enquire .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-enquire .skip-link:focus{ top: 16px; }

body.page-enquire .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-enquire .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-enquire .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-enquire .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-enquire .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-enquire .nav-hamburger{ display: flex; }
}

body.page-enquire .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-enquire .mobile-menu.open{ display: flex; }

body.page-enquire .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-enquire .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-enquire .mobile-menu-links a:hover, body.page-enquire .mobile-menu-links a:focus{ color: var(--white); }

body.page-enquire .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }


/* booking-terms.html */
body.page-booking-terms *, body.page-booking-terms *::before, body.page-booking-terms *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-booking-terms nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }

body.page-booking-terms .nav-logo img{ height: 49px; width: auto; }

body.page-booking-terms .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-booking-terms .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-booking-terms .nav-links a:hover, body.page-booking-terms .nav-links a.active{ color: var(--white); }

body.page-booking-terms .nav-cta{ background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white) !important; padding: 9px 22px; border-radius: 2px; transition: background 0.2s, border-color 0.2s !important; }

body.page-booking-terms .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-booking-terms .page-header{
    background: var(--dark);
    padding: 96px 80px 72px;
    margin-top: var(--nav-h);
  }

body.page-booking-terms .page-header-inner{ max-width: 800px; }

body.page-booking-terms .page-header-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.06); text-shadow: 0 2px 10px rgba(15,18,12,0.35); backdrop-filter: blur(6px); }

body.page-booking-terms .page-header-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-booking-terms .page-header h1{ font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; }

body.page-booking-terms .page-header h1 em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); }

body.page-booking-terms .page-header-meta{ font-size: 12px; color: rgba(255,255,255,0.68); font-style: italic; }

body.page-booking-terms .legal-layout{
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 80px 120px;
    align-items: start;
  }

body.page-booking-terms .legal-sidebar{
    position: sticky;
    top: calc(var(--nav-h) + 32px);
    padding-right: 48px;
  }

body.page-booking-terms .sidebar-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; }

body.page-booking-terms .sidebar-nav{ list-style: none; display: flex; flex-direction: column; gap: 2px; }

body.page-booking-terms .sidebar-nav a{ display: block; font-size: 12px; font-weight: 400; color: var(--kelp); padding: 6px 0 6px 12px; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; line-height: 1.4; }

body.page-booking-terms .sidebar-nav a:hover{ color: var(--kelp); border-color: var(--laurel); }

body.page-booking-terms .sidebar-nav a.active{ color: var(--kelp); border-color: var(--kelp); font-weight: 500; }

body.page-booking-terms .legal-content{ min-width: 0; }
body.page-booking-terms .page-header,
body.page-booking-terms .legal-content,
body.page-booking-terms .legal-section{ text-align: left; }

body.page-booking-terms .company-box{
    background: var(--spring);
    border-left: 3px solid var(--laurel);
    padding: 28px 32px;
    border-radius: 0 3px 3px 0;
    margin-bottom: 56px;
  }

body.page-booking-terms .company-box h3{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--kelp); margin-bottom: 14px; }

body.page-booking-terms .company-box p{ font-size: 13.5px; line-height: 1.75; font-weight: 300; color: var(--kelp); }

body.page-booking-terms .company-box p + p{ margin-top: 4px; }

body.page-booking-terms .payment-table-scroll{ overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }

body.page-booking-terms .payment-table{
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 32px;
    font-size: 13.5px;
  }

body.page-booking-terms .payment-table thead th{
    font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--white); background: var(--kelp);
    padding: 12px 16px; text-align: left;
  }

body.page-booking-terms .payment-table tbody td{ padding: 12px 16px; border-bottom: 1px solid var(--tea); vertical-align: top; line-height: 1.6; font-weight: 300; }

body.page-booking-terms .payment-table tbody tr:last-child td{ border-bottom: none; }

body.page-booking-terms .payment-table tbody tr:nth-child(even) td{ background: rgba(196,189,177,0.12); }

body.page-booking-terms .payment-table strong{ font-weight: 600; color: var(--kelp); }

body.page-booking-terms .intro-note{ font-size: 15px; line-height: 1.85; font-weight: 300; color: var(--kelp); opacity: 0.8; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--tea); }

body.page-booking-terms .intro-note em{ font-style: italic; }

body.page-booking-terms .legal-section{ margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--tea); scroll-margin-top: calc(var(--nav-h) + 24px); }

body.page-booking-terms .legal-section:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

body.page-booking-terms .section-num{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }

body.page-booking-terms .section-heading{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--kelp); margin-bottom: 20px; letter-spacing: -0.01em; }

body.page-booking-terms .sub-heading{ font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--kelp); margin: 24px 0 10px; }

body.page-booking-terms .legal-content p{ font-size: 14px; line-height: 1.85; font-weight: 300; color: var(--kelp); margin-bottom: 16px; }

body.page-booking-terms .legal-content p:last-child{ margin-bottom: 0; }

body.page-booking-terms .legal-content strong{ font-weight: 600; }

body.page-booking-terms .legal-content em{ font-style: italic; }

body.page-booking-terms .legal-content ul, body.page-booking-terms .legal-content ol{ padding-left: 20px; margin: 12px 0 16px; }

body.page-booking-terms .legal-content li{ font-size: 14px; line-height: 1.8; font-weight: 300; color: var(--kelp); margin-bottom: 8px; }

body.page-booking-terms .legal-content li:last-child{ margin-bottom: 0; }

body.page-booking-terms .legal-content li strong{ font-weight: 600; }

body.page-booking-terms .notice-box{ background: rgba(161,173,144,0.12); border: 1px solid rgba(161,173,144,0.4); border-radius: 3px; padding: 20px 24px; margin: 20px 0; }

body.page-booking-terms .notice-box p{ font-size: 13px; line-height: 1.75; margin-bottom: 0; }

body.page-booking-terms .cancel-schedule{ display: flex; flex-direction: column; gap: 0; margin: 20px 0; border: 1px solid var(--tea); border-radius: 3px; overflow: hidden; }

body.page-booking-terms .cancel-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-bottom: 1px solid var(--tea); }

body.page-booking-terms .cancel-row:last-child{ border-bottom: none; }

body.page-booking-terms .cancel-row-head{ display: grid; grid-template-columns: 1fr 1fr; background: var(--kelp); }

body.page-booking-terms .cancel-cell{ padding: 12px 20px; font-size: 13.5px; font-weight: 300; }

body.page-booking-terms .cancel-cell.head{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }

body.page-booking-terms .cancel-cell:first-child{ border-right: 1px solid var(--tea); }

body.page-booking-terms .cancel-row-head .cancel-cell:first-child{ border-right: 1px solid rgba(255,255,255,0.15); }

body.page-booking-terms .cancel-row:nth-child(even) .cancel-cell{ background: rgba(196,189,177,0.1); }

body.page-booking-terms footer{ background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px 80px 40px; }

body.page-booking-terms .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-booking-terms .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-booking-terms .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-booking-terms .footer-social{ display: flex; gap: 12px; }

body.page-booking-terms .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; }

body.page-booking-terms .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-booking-terms .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-booking-terms .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-booking-terms .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }

body.page-booking-terms .footer-col a:hover{ color: var(--laurel); }

body.page-booking-terms .footer-bottom{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); }

body.page-booking-terms .footer-bottom a{ color: rgba(255,255,255,0.35); transition: color 0.2s; }

body.page-booking-terms .footer-bottom a:hover{ color: rgba(255,255,255,0.65); }

body.page-booking-terms .footer-bottom-links{ display: flex; gap: 24px; }

@media (max-width: 1024px){
body.page-booking-terms .legal-layout{ padding: 56px 40px 80px; }

body.page-booking-terms nav, body.page-booking-terms footer{ padding-left: 40px; padding-right: 40px; }

body.page-booking-terms .page-header{ padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px){
body.page-booking-terms nav{ padding: 0 24px; }

body.page-booking-terms .nav-links{ display: none; }

body.page-booking-terms .nav-hamburger{ display: flex; }

body.page-booking-terms .page-header{ padding: 72px 24px 48px; }

body.page-booking-terms .legal-layout{ grid-template-columns: 1fr; padding: 40px 24px 72px; gap: 0; }

body.page-booking-terms .legal-sidebar{ display: none; }

body.page-booking-terms footer{ padding: 48px 24px 32px; }

body.page-booking-terms .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-booking-terms .cancel-row, body.page-booking-terms .cancel-row-head{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px){
body.page-booking-terms .footer-top{ grid-template-columns: 1fr; }

body.page-booking-terms .payment-table{ font-size: 12px; }
}

body.page-booking-terms .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-booking-terms .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-booking-terms .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-booking-terms .skip-link:focus{ top: 16px; }

body.page-booking-terms .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-booking-terms .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-booking-terms .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-booking-terms .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-booking-terms .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-booking-terms .nav-hamburger{ display: flex; }
}

body.page-booking-terms .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-booking-terms .mobile-menu.open{ display: flex; }

body.page-booking-terms .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-booking-terms .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-booking-terms .mobile-menu-links a:hover, body.page-booking-terms .mobile-menu-links a:focus{ color: var(--white); }

body.page-booking-terms .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }


/* privacy-policy.html */
body.page-privacy-policy *, body.page-privacy-policy *::before, body.page-privacy-policy *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-privacy-policy nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }

body.page-privacy-policy .nav-logo img{ height: 49px; width: auto; }

body.page-privacy-policy .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-privacy-policy .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-privacy-policy .nav-links a:hover{ color: var(--white); }

body.page-privacy-policy .nav-cta{ background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white) !important; padding: 9px 22px; border-radius: 2px; transition: background 0.2s, border-color 0.2s !important; }

body.page-privacy-policy .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-privacy-policy .page-header{ background: var(--dark); padding: 96px 80px 72px; margin-top: var(--nav-h); }

body.page-privacy-policy .page-header-inner{ max-width: 800px; }

body.page-privacy-policy .page-header-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.06); text-shadow: 0 2px 10px rgba(15,18,12,0.35); backdrop-filter: blur(6px); }

body.page-privacy-policy .page-header-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-privacy-policy .page-header h1{ font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; }

body.page-privacy-policy .page-header h1 em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); }

body.page-privacy-policy .page-header-meta{ font-size: 12px; color: rgba(255,255,255,0.68); font-style: italic; }

body.page-privacy-policy .legal-layout{ display: grid; grid-template-columns: 240px 1fr; gap: 0; max-width: 1200px; margin: 0 auto; padding: 72px 80px 120px; align-items: start; }

body.page-privacy-policy .legal-sidebar{ position: sticky; top: calc(var(--nav-h) + 32px); padding-right: 48px; }

body.page-privacy-policy .sidebar-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; }

body.page-privacy-policy .sidebar-nav{ list-style: none; display: flex; flex-direction: column; gap: 2px; }

body.page-privacy-policy .sidebar-nav a{ display: block; font-size: 12px; font-weight: 400; color: var(--kelp); padding: 6px 0 6px 12px; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; line-height: 1.4; }

body.page-privacy-policy .sidebar-nav a:hover{ color: var(--kelp); border-color: var(--laurel); }

body.page-privacy-policy .sidebar-nav a.active{ color: var(--kelp); border-color: var(--kelp); font-weight: 500; }

body.page-privacy-policy .legal-content{ min-width: 0; }
body.page-privacy-policy .page-header,
body.page-privacy-policy .legal-content,
body.page-privacy-policy .legal-section{ text-align: left; }

body.page-privacy-policy .company-box{ background: var(--spring); border-left: 3px solid var(--laurel); padding: 28px 32px; border-radius: 0 3px 3px 0; margin-bottom: 56px; }

body.page-privacy-policy .company-box h3{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--kelp); margin-bottom: 14px; }

body.page-privacy-policy .company-box p{ font-size: 13.5px; line-height: 1.75; font-weight: 300; }

body.page-privacy-policy .company-box p + p{ margin-top: 4px; }

body.page-privacy-policy .intro-note{ font-size: 15px; line-height: 1.85; font-weight: 300; color: var(--kelp); opacity: 0.8; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--tea); }

body.page-privacy-policy .legal-section{ margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--tea); scroll-margin-top: calc(var(--nav-h) + 24px); }

body.page-privacy-policy .legal-section:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

body.page-privacy-policy .section-num{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }

body.page-privacy-policy .section-heading{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--kelp); margin-bottom: 20px; letter-spacing: -0.01em; }

body.page-privacy-policy .sub-heading{ font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--kelp); margin: 24px 0 10px; }

body.page-privacy-policy .legal-content p{ font-size: 14px; line-height: 1.85; font-weight: 300; color: var(--kelp); margin-bottom: 16px; }

body.page-privacy-policy .legal-content p:last-child{ margin-bottom: 0; }

body.page-privacy-policy .legal-content strong{ font-weight: 600; }

body.page-privacy-policy .legal-content em{ font-style: italic; }

body.page-privacy-policy .legal-content ul, body.page-privacy-policy .legal-content ol{ padding-left: 20px; margin: 12px 0 16px; }

body.page-privacy-policy .legal-content li{ font-size: 14px; line-height: 1.8; font-weight: 300; color: var(--kelp); margin-bottom: 8px; }

body.page-privacy-policy .legal-content li:last-child{ margin-bottom: 0; }

body.page-privacy-policy .legal-content li strong{ font-weight: 600; }

body.page-privacy-policy .notice-box{ background: rgba(161,173,144,0.12); border: 1px solid rgba(161,173,144,0.4); border-radius: 3px; padding: 20px 24px; margin: 20px 0; }

body.page-privacy-policy .notice-box p{ font-size: 13px; line-height: 1.75; margin-bottom: 0; }

body.page-privacy-policy footer{ background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px 80px 40px; }

body.page-privacy-policy .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-privacy-policy .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-privacy-policy .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-privacy-policy .footer-social{ display: flex; gap: 12px; }

body.page-privacy-policy .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; }

body.page-privacy-policy .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-privacy-policy .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-privacy-policy .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-privacy-policy .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }

body.page-privacy-policy .footer-col a:hover{ color: var(--laurel); }

body.page-privacy-policy .footer-bottom{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); }

body.page-privacy-policy .footer-bottom a{ color: rgba(255,255,255,0.35); transition: color 0.2s; }

body.page-privacy-policy .footer-bottom a:hover{ color: rgba(255,255,255,0.65); }

body.page-privacy-policy .footer-bottom-links{ display: flex; gap: 24px; }

@media (max-width: 1024px){
body.page-privacy-policy .legal-layout{ padding: 56px 40px 80px; }

body.page-privacy-policy nav, body.page-privacy-policy footer{ padding-left: 40px; padding-right: 40px; }

body.page-privacy-policy .page-header{ padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px){
body.page-privacy-policy nav{ padding: 0 24px; }

body.page-privacy-policy .nav-links{ display: none; }

body.page-privacy-policy .nav-hamburger{ display: flex; }

body.page-privacy-policy .page-header{ padding: 72px 24px 48px; }

body.page-privacy-policy .legal-layout{ grid-template-columns: 1fr; padding: 40px 24px 72px; }

body.page-privacy-policy .legal-sidebar{ display: none; }

body.page-privacy-policy footer{ padding: 48px 24px 32px; }

body.page-privacy-policy .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px){
body.page-privacy-policy .footer-top{ grid-template-columns: 1fr; }
}

body.page-privacy-policy .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-privacy-policy .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-privacy-policy .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-privacy-policy .skip-link:focus{ top: 16px; }

body.page-privacy-policy .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-privacy-policy .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-privacy-policy .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-privacy-policy .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-privacy-policy .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-privacy-policy .nav-hamburger{ display: flex; }
}

body.page-privacy-policy .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-privacy-policy .mobile-menu.open{ display: flex; }

body.page-privacy-policy .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-privacy-policy .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-privacy-policy .mobile-menu-links a:hover, body.page-privacy-policy .mobile-menu-links a:focus{ color: var(--white); }

body.page-privacy-policy .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }


/* cookie-policy.html */
body.page-cookie-policy *, body.page-cookie-policy *::before, body.page-cookie-policy *::after{ box-sizing: border-box; margin: 0; padding: 0; }

body.page-cookie-policy nav{ position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(79,83,66,0.97); box-shadow: 0 1px 0 rgba(255,255,255,0.08); }

body.page-cookie-policy .nav-logo img{ height: 49px; width: auto; }

body.page-cookie-policy .nav-links{ display: flex; gap: 36px; list-style: none; align-items: center; }

body.page-cookie-policy .nav-links a{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; }

body.page-cookie-policy .nav-links a:hover{ color: var(--white); }

body.page-cookie-policy .nav-cta{ background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white) !important; padding: 9px 22px; border-radius: 2px; transition: background 0.2s, border-color 0.2s !important; }

body.page-cookie-policy .nav-cta:hover{ background: rgba(255,255,255,0.12) !important; border-color: var(--white) !important; }

body.page-cookie-policy .page-header{ background: var(--dark); padding: 96px 80px 72px; margin-top: var(--nav-h); }

body.page-cookie-policy .page-header-inner{ max-width: 800px; }

body.page-cookie-policy .page-header-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px; max-width: 100%; padding: 8px 14px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; background: rgba(255,255,255,0.06); text-shadow: 0 2px 10px rgba(15,18,12,0.35); backdrop-filter: blur(6px); }

body.page-cookie-policy .page-header-eyebrow::before{ content: ''; display: block; width: 24px; height: 1.5px; background: rgba(255,255,255,0.72); }

body.page-cookie-policy .page-header h1{ font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 700; line-height: 1.08; color: var(--white); letter-spacing: -0.02em; margin-bottom: 20px; }

body.page-cookie-policy .page-header h1 em{ font-style: italic; font-weight: 300; color: rgba(255,255,255,0.88); }

body.page-cookie-policy .page-header-meta{ font-size: 12px; color: rgba(255,255,255,0.68); font-style: italic; }

body.page-cookie-policy .legal-layout{ display: grid; grid-template-columns: 240px 1fr; gap: 0; max-width: 1200px; margin: 0 auto; padding: 72px 80px 120px; align-items: start; }

body.page-cookie-policy .legal-sidebar{ position: sticky; top: calc(var(--nav-h) + 32px); padding-right: 48px; }

body.page-cookie-policy .sidebar-label{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--kelp); margin-bottom: 16px; }

body.page-cookie-policy .sidebar-nav{ list-style: none; display: flex; flex-direction: column; gap: 2px; }

body.page-cookie-policy .sidebar-nav a{ display: block; font-size: 12px; font-weight: 400; color: var(--kelp); padding: 6px 0 6px 12px; border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s; line-height: 1.4; }

body.page-cookie-policy .sidebar-nav a:hover{ color: var(--kelp); border-color: var(--laurel); }

body.page-cookie-policy .sidebar-nav a.active{ color: var(--kelp); border-color: var(--kelp); font-weight: 500; }

body.page-cookie-policy .legal-content{ min-width: 0; }

body.page-cookie-policy .intro-note{ font-size: 15px; line-height: 1.85; font-weight: 300; color: var(--kelp); opacity: 0.8; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--tea); }

body.page-cookie-policy .legal-section{ margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--tea); scroll-margin-top: calc(var(--nav-h) + 24px); }

body.page-cookie-policy .legal-section:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

body.page-cookie-policy .section-num{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--kelp); margin-bottom: 10px; }

body.page-cookie-policy .section-heading{ font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--kelp); margin-bottom: 20px; letter-spacing: -0.01em; }

body.page-cookie-policy .sub-heading{ font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--kelp); margin: 28px 0 12px; }

body.page-cookie-policy .legal-content p{ font-size: 14px; line-height: 1.85; font-weight: 300; color: var(--kelp); margin-bottom: 16px; }

body.page-cookie-policy .legal-content p:last-child{ margin-bottom: 0; }

body.page-cookie-policy .legal-content strong{ font-weight: 600; }

body.page-cookie-policy .legal-content em{ font-style: italic; }

body.page-cookie-policy .legal-content ul, body.page-cookie-policy .legal-content ol{ padding-left: 20px; margin: 12px 0 16px; }

body.page-cookie-policy .legal-content li{ font-size: 14px; line-height: 1.8; font-weight: 300; color: var(--kelp); margin-bottom: 8px; }

body.page-cookie-policy .legal-content li:last-child{ margin-bottom: 0; }

body.page-cookie-policy .legal-content li strong{ font-weight: 600; }

body.page-cookie-policy .legal-content a.inline-link{ color: var(--kelp); font-weight: 500; border-bottom: 1px solid var(--tea); transition: border-color 0.2s; }

body.page-cookie-policy .legal-content a.inline-link:hover{ border-color: var(--kelp); }

body.page-cookie-policy .cookie-cards{ display: flex; flex-direction: column; gap: 2px; margin: 24px 0; }

body.page-cookie-policy .cookie-card{ background: var(--white); border: 1px solid var(--tea); border-radius: 3px; padding: 24px 28px; border-left: 4px solid transparent; }

body.page-cookie-policy .cookie-card.essential{ border-left-color: var(--kelp); }

body.page-cookie-policy .cookie-card.analytics{ border-left-color: var(--laurel); }

body.page-cookie-policy .cookie-card.preference{ border-left-color: var(--pewter); }

body.page-cookie-policy .cookie-card.marketing{ border-left-color: var(--tea); }

body.page-cookie-policy .cookie-card-header{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; flex-wrap: wrap; gap: 8px; }

body.page-cookie-policy .cookie-card h3{ font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--kelp); }

body.page-cookie-policy .cookie-badge{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }

body.page-cookie-policy .cookie-badge.always-on{ background: rgba(79,83,66,0.1); color: var(--kelp); }

body.page-cookie-policy .cookie-badge.consent{ background: rgba(161,173,144,0.2); color: var(--kelp); }

body.page-cookie-policy .cookie-card p{ font-size: 13.5px; line-height: 1.75; font-weight: 300; margin-bottom: 0; }

body.page-cookie-policy .browser-table{ width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13.5px; }

body.page-cookie-policy .browser-table thead th{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--kelp); padding: 10px 16px; text-align: left; }

body.page-cookie-policy .browser-table tbody td{ padding: 11px 16px; border-bottom: 1px solid var(--tea); font-weight: 300; }

body.page-cookie-policy .browser-table tbody tr:last-child td{ border-bottom: none; }

body.page-cookie-policy .browser-table tbody tr:nth-child(even) td{ background: rgba(196,189,177,0.1); }

body.page-cookie-policy .browser-table a{ color: var(--kelp); font-weight: 500; border-bottom: 1px solid var(--tea); transition: border-color 0.2s; }

body.page-cookie-policy .browser-table a:hover{ border-color: var(--kelp); }

body.page-cookie-policy .notice-box{ background: rgba(161,173,144,0.12); border: 1px solid rgba(161,173,144,0.4); border-radius: 3px; padding: 20px 24px; margin: 20px 0; }

body.page-cookie-policy .notice-box p{ font-size: 13px; line-height: 1.75; margin-bottom: 0; }

body.page-cookie-policy .related-docs{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--tea); }

body.page-cookie-policy .related-doc{ background: var(--spring); border-radius: 3px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background 0.2s; }

body.page-cookie-policy .related-doc:hover{ background: var(--tea); }

body.page-cookie-policy .related-doc-text p{ font-size: 12px; font-family: var(--font-head); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--kelp); margin-bottom: 4px; }

body.page-cookie-policy .related-doc-text strong{ font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--kelp); display: block; }

body.page-cookie-policy .related-doc svg{ flex-shrink: 0; color: var(--laurel); }

body.page-cookie-policy footer{ background: var(--dark); color: rgba(255,255,255,0.65); padding: 72px 80px 40px; }

body.page-cookie-policy .footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 36px; }

body.page-cookie-policy .footer-brand img{ height: 49px; margin-bottom: 20px; }

body.page-cookie-policy .footer-brand p{ font-size: 13px; line-height: 1.75; font-weight: 300; margin-bottom: 24px; }

body.page-cookie-policy .footer-social{ display: flex; gap: 12px; }

body.page-cookie-policy .footer-social a{ width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; }

body.page-cookie-policy .footer-social a:hover{ border-color: var(--laurel); color: var(--laurel); }

body.page-cookie-policy .footer-col h4{ font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }

body.page-cookie-policy .footer-col ul{ list-style: none; display: flex; flex-direction: column; gap: 10px; }

body.page-cookie-policy .footer-col a{ font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }

body.page-cookie-policy .footer-col a:hover{ color: var(--laurel); }

body.page-cookie-policy .footer-bottom{ display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 12px; }

body.page-cookie-policy .footer-bottom a{ color: rgba(255,255,255,0.35); transition: color 0.2s; }

body.page-cookie-policy .footer-bottom a:hover{ color: rgba(255,255,255,0.65); }

body.page-cookie-policy .footer-bottom-links{ display: flex; gap: 24px; }

@media (max-width: 1024px){
body.page-cookie-policy .legal-layout{ padding: 56px 40px 80px; }

body.page-cookie-policy nav, body.page-cookie-policy footer{ padding-left: 40px; padding-right: 40px; }

body.page-cookie-policy .page-header{ padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px){
body.page-cookie-policy nav{ padding: 0 24px; }

body.page-cookie-policy .nav-links{ display: none; }

body.page-cookie-policy .nav-hamburger{ display: flex; }

body.page-cookie-policy .page-header{ padding: 72px 24px 48px; }

body.page-cookie-policy .legal-layout{ grid-template-columns: 1fr; padding: 40px 24px 72px; }

body.page-cookie-policy .legal-sidebar{ display: none; }

body.page-cookie-policy footer{ padding: 48px 24px 32px; }

body.page-cookie-policy .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px; }

body.page-cookie-policy .related-docs{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
body.page-cookie-policy .footer-top{ grid-template-columns: 1fr; }

body.page-cookie-policy .browser-table{ font-size: 12px; }
}

body.page-cookie-policy .footer-acknowledgement{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    margin-top: 28px;
  }

body.page-cookie-policy .footer-acknowledgement p{
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    font-style: italic;
    max-width: none;
  }

body.page-cookie-policy .skip-link{
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 1000;
    background: var(--kelp);
    color: var(--white);
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: top 0.2s;
  }

body.page-cookie-policy .skip-link:focus{ top: 16px; }

body.page-cookie-policy .nav-hamburger{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }

body.page-cookie-policy .nav-hamburger span{
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }

body.page-cookie-policy .nav-hamburger.open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }

body.page-cookie-policy .nav-hamburger.open span:nth-child(2){ opacity: 0; transform: scaleX(0); }

body.page-cookie-policy .nav-hamburger.open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px){
body.page-cookie-policy .nav-hamburger{ display: flex; }
}

body.page-cookie-policy .mobile-menu{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(47,50,38,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 48px;
  }

body.page-cookie-policy .mobile-menu.open{ display: flex; }

body.page-cookie-policy .mobile-menu-links{
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

body.page-cookie-policy .mobile-menu-links a{
    display: block;
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.8);
    padding: 16px;
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

body.page-cookie-policy .mobile-menu-links a:hover, body.page-cookie-policy .mobile-menu-links a:focus{ color: var(--white); }

body.page-cookie-policy .mobile-menu-links li:last-child a{
    margin-top: 24px;
    background: var(--white);
    color: var(--kelp) !important;
    padding: 16px 40px;
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: none;
  }


/* ==========================================================
   Accessibility: reduced motion & keyboard focus visibility
   ========================================================== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal{ opacity: 1 !important; transform: none !important; }
  .reveal-img{ clip-path: none !important; }
  .reveal-img img{ transform: none !important; }
  .kb-drift, body.page-index .hero-bg{ animation: none !important; scale: none !important; }
  [data-parallax]{ translate: none !important; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline: 2px solid currentColor;
  outline-offset: 3px;
}


/* Purpose section responsive (card layout) */
@media (max-width: 1024px){
  body.page-index .purpose-header{ gap: 40px; }
}
@media (max-width: 768px){
  body.page-index .purpose{ padding: 64px 24px; }
  body.page-index .purpose-header{ grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  body.page-index .purpose-grid{ grid-template-columns: 1fr; gap: 12px; }
  body.page-index .purpose-solar{ margin-top: 40px; }
}


/* ==========================================================
   Icon consistency: icons sit beside card headings, uniform
   48px circular chips and 24px glyphs across all card icons
   ========================================================== */
body.page-group-departures .expect-icon,
body.page-travel-with-purpose .operate-icon,
body.page-explore-australia .process-panel-icon,
body.page-about-us .value-icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(161,173,144,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  flex-shrink: 0;
}

body.page-about-us .value-icon{ background: rgba(161,173,144,0.18); }

body.page-index .diff-icon svg,
body.page-index .purpose-card-icon svg,
body.page-group-departures .expect-icon svg,
body.page-travel-with-purpose .operate-icon svg,
body.page-explore-australia .process-panel-icon svg,
body.page-about-us .value-icon svg{
  width: 24px;
  height: 24px;
}

/* Icon + heading share a row; body copy spans below */
body.page-index .diff-card,
body.page-index .purpose-card,
body.page-group-departures .expect-item,
body.page-travel-with-purpose .operate-item,
body.page-about-us .value-item,
body.page-explore-australia .process-panel-left{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  align-items: center;
  align-content: start;
}

body.page-index .diff-icon,
body.page-index .purpose-card-icon{ margin-bottom: 0; }

body.page-index .diff-card .diff-title,
body.page-index .purpose-card .purpose-card-title,
body.page-group-departures .expect-item h3,
body.page-travel-with-purpose .operate-item h3,
body.page-about-us .value-item .value-title,
body.page-explore-australia .process-panel-left h3{
  margin: 0;
}

body.page-index .diff-card .diff-body,
body.page-index .purpose-card .purpose-card-body,
body.page-group-departures .expect-item p,
body.page-travel-with-purpose .operate-item p,
body.page-about-us .value-item .value-desc,
body.page-explore-australia .process-panel-left .process-panel-body{
  grid-column: 1 / -1;
  margin-top: 16px;
}


/* Progressive enhancement: scroll-reveal content is visible by
   default for no-JS user agents and crawlers; JS adds the .js flag
   and re-enables the hidden initial state. */
html:not(.js) .reveal{
  opacity: 1 !important;
  transform: none !important;
}

html:not(.js) .reveal-img{ clip-path: none !important; }

html:not(.js) .reveal-img img{ transform: none !important; }

/* ============ COOKIE CONSENT BANNER ============ */
/* Bottom/right offsets mirror the index hero CTAs (96px bottom padding, 80px side padding) */
body .consent-banner{ position: fixed; bottom: 96px; right: 80px; z-index: 900; max-width: 400px; background: rgba(79,83,66,0.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 24px 28px; border-radius: 2px; box-shadow: 0 12px 40px rgba(0,0,0,0.25); }
@media (max-width: 1100px){ body .consent-banner{ right: 40px; bottom: 40px; } }
.consent-banner .consent-text{ font-size: 13px; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.consent-banner a{ color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.consent-actions{ display: flex; gap: 10px; }
body .consent-btn{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 20px; border-radius: 2px; cursor: pointer; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.consent-accept{ background: var(--white); color: var(--kelp); border: 1px solid var(--white); }
.consent-accept:hover{ background: var(--laurel); border-color: var(--laurel); color: var(--white); }
.consent-decline{ background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.35); }
.consent-decline:hover{ border-color: var(--white); color: var(--white); }
@media (max-width: 640px){ body .consent-banner{ left: 16px; right: 16px; bottom: 16px; max-width: none; padding: 20px; } }

/* Side-fade image overlays blend the image into adjacent text backgrounds;
   once layouts stack on mobile the images stand alone, so hide the fades. */
@media (max-width: 768px){
  body.page-index .about-image-overlay,
  body.page-about-us .origin-image-overlay,
  body.page-about-us .founder-image-overlay-r,
  body.page-about-us .founder-image-overlay-l,
  body.page-about-us .philosophy-image-overlay,
  body.page-explore-australia .challenge-image-overlay{ display: none; }
}

/* ============ 404 PAGE ============ */
body.page-404 .section-eyebrow{ font-family: var(--font-head); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--kelp); display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
body.page-404 .btn-primary{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 15px 32px; background: var(--kelp); color: var(--white); border: 2px solid var(--kelp); border-radius: 2px; cursor: pointer; text-decoration: none; transition: background 0.2s, border-color 0.2s; }
body.page-404 .btn-primary:hover{ background: var(--laurel); border-color: var(--laurel); }

/* Desktop carousels: wheel input never interacts with the track, so page
   scrolling passes through at native speed; prev/next buttons drive the
   carousel (programmatic scroll works on hidden overflow). Touch devices
   keep native swipe via overflow-x auto. */
@media (hover: hover) and (pointer: fine){
  body.page-explore-australia .feature-quote-track{ overflow-x: hidden; scroll-snap-type: none; }
}
