/* ════════════════════════════════════════════════════
   CHALOOO — chalooo.in
   Design language: deep forest green + cream,
   Playfair Display headlines / Poppins body.
════════════════════════════════════════════════════ */

:root {
    --white: #ffffff;
    --off-white: #f7f6f3;
    --cream: #f0ede6;

    /* --green-mid is the exact green from the Chalooo logo */
    --green-deep: #00451f;
    --green-mid: #00612a;
    --green-light: #158a4c;
    --green-pale: #e6f1ea;
    --green-accent: #21d17a;

    --text-dark: #0d1b13;
    --text-mid: #3a4f42;
    --text-muted: #7a9080;

    --border: rgba(4, 67, 31, 0.12);
    --shadow-sm: 0 2px 12px rgba(4, 67, 31, 0.08);
    --shadow-md: 0 8px 32px rgba(4, 67, 31, 0.12);
    --shadow-lg: 0 20px 60px rgba(4, 67, 31, 0.18);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 8px);
    /* stop iOS bumping up font sizes when the phone is turned sideways */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: rgba(0, 97, 42, 0.12);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
}

.section {
    padding: clamp(64px, 9vw, 120px) 0;
}

.section.alt {
    background: var(--off-white);
}

/* ── Section header ── */
.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 64px);
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    background: var(--green-pale);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--green-mid);
}

.section-sub {
    max-width: 54ch;
    margin: 18px auto 0;
    font-size: 0.94rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-mid);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* a slow sheen that crosses the button on hover */
.btn-primary,
.btn-white {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-white::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 -60%;
    width: 40%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-white::after {
    background: linear-gradient(100deg, transparent, rgba(0, 97, 42, 0.14), transparent);
}

.btn-primary:hover::after,
.btn-white:hover::after {
    left: 110%;
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--green-deep);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── Reveal on scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-height);
    z-index: 900;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    position: relative;
    display: block;
    width: 148px;
    height: 41px;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

/* two versions of the real logo, cross-faded as the nav turns solid */
.logo-mark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity var(--transition);
}

.logo-on-light {
    opacity: 0;
}

.navbar.scrolled .logo-on-dark {
    opacity: 0;
}

.navbar.scrolled .logo-on-light {
    opacity: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .nav-links {
    color: var(--text-dark);
}

.nav-links a:not(.nav-cta) {
    position: relative;
    padding-bottom: 3px;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
    width: 100%;
}

.nav-cta {
    border: 1.5px solid currentColor;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--text-dark);
}

/* burger folds into an X */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
    position: relative;
    /* vh first — older mobile browsers ignore svh and would collapse the hero */
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    /* slow settle on load — the parallax translate lives on .hero-img */
    animation: heroZoom 20s ease-out forwards;
}

.hero-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    /* the sunrise ridges sit low in the frame — bias the crop downward */
    object-position: 50% 72%;
    transform: translate3d(0, 0, 0) scale(1.06);
    will-change: transform;
}

@keyframes heroZoom {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* dark enough on the left for the headline, light enough on the right
       that the photograph keeps its own colour */
    background:
        linear-gradient(100deg, rgba(2, 26, 13, 0.82) 0%, rgba(2, 38, 19, 0.5) 42%, rgba(0, 69, 31, 0.1) 100%),
        linear-gradient(to top, rgba(2, 26, 13, 0.62), transparent 42%);
}

.hero-content {
    padding-top: var(--nav-height);
    width: min(1200px, 100% - 3rem);
    margin-inline: auto;
    max-width: 1200px;
}

/* each line of the hero arrives on its own beat */
.hero-eyebrow,
.hero-title .line,
.hero-sub,
.hero-actions,
.hero-stats {
    animation: fadeUp 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-eyebrow {
    animation-delay: 0.15s;
}

.hero-title .line:nth-of-type(1) {
    animation-delay: 0.3s;
}

.hero-title .line:nth-of-type(2) {
    animation-delay: 0.45s;
}

.hero-sub {
    animation-delay: 0.65s;
}

.hero-actions {
    animation-delay: 0.8s;
}

.hero-stats {
    animation-delay: 0.95s;
}

.hero-title .line {
    display: inline-block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-eyebrow {
    color: var(--green-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7.5vw, 5.6rem);
    font-weight: 700;
    line-height: 1.03;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: italic;
    color: var(--cream);
}

.hero-sub {
    margin-top: 22px;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    font-weight: 300;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-scroll-hint {
    position: absolute;
    right: 28px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7));
}

.hero-stats {
    position: absolute;
    inset: auto 0 0 0;
    background: rgba(4, 67, 31, 0.72);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 6vw, 80px);
    padding: 22px 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.stat-divider {
    width: 1px;
    height: 38px;
    background: rgba(255, 255, 255, 0.22);
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.9vw, 1.45rem);
    line-height: 1.55;
    color: var(--green-deep);
    margin-bottom: 20px;
}

.about-body {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.85;
}

.about-cards {
    display: grid;
    gap: 18px;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 67, 31, 0.25);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--green-pale);
    color: var(--green-mid);
    margin-bottom: 16px;
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   PACKAGES
════════════════════════════════════════════════════ */
.places-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 42px;
}

.place-chip {
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    background: #f1f3f1;
    color: var(--text-mid);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.section.alt .place-chip:not(.active) {
    background: var(--white);
}

.place-chip:hover {
    background: var(--green-pale);
    border-color: rgba(4, 67, 31, 0.2);
}

.place-chip.active,
.place-chip.active:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
}

.place-chip .chip-count {
    opacity: 0.6;
    font-size: 0.75rem;
    margin-left: 6px;
}

/* trails that aren't open yet */
.place-chip.is-soon {
    color: var(--text-muted);
}

.place-chip .chip-soon {
    margin-left: 8px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-light);
    background: var(--green-pale);
    padding: 3px 8px;
    border-radius: 999px;
}

.place-chip.is-soon.active .chip-soon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 26px;
}

/* one or two packages shouldn't stretch across four columns */
.discover-grid.is-sparse {
    grid-template-columns: repeat(auto-fit, minmax(290px, 360px));
    justify-content: center;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pkg-media {
    position: relative;
    /* portrait — the trip photos are all shot vertically */
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.pkg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pkg-card:hover .pkg-media img {
    transform: scale(1.07);
}

.pkg-duration {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 999px;
}

.pkg-place {
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.pkg-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pkg-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

.pkg-features {
    display: grid;
    gap: 7px;
    margin-bottom: 20px;
}

.pkg-features li {
    font-size: 0.82rem;
    color: var(--text-mid);
    display: flex;
    gap: 8px;
}

.pkg-features li::before {
    content: '✓';
    color: var(--green-light);
    font-weight: 700;
}

.pkg-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.pkg-price {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.pkg-price strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--green-deep);
}

/* quote-only trips show no figure at all */
.pkg-price.quote strong {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.modal-price-row.quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
}

.modal-price-row.quote strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.modal-price-row.quote span {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-mid);
}

/* Playfair ships no rupee glyph — set the symbol in Poppins instead */
.rupee {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78em;
    margin-right: 2px;
}

.pkg-price span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pkg-view {
    background: var(--green-pale);
    color: var(--green-deep);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    transition: var(--transition-fast);
}

.pkg-view:hover {
    background: var(--green-deep);
    color: var(--white);
}

/* Custom / empty-state card */
.custom-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 5vw, 52px);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.custom-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    margin-bottom: 10px;
}

.custom-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    max-width: 52ch;
    margin: 0 auto;
}

.custom-card .btn {
    margin-top: 26px;
}

/* ── "Coming soon" pill with a slow pulse ── */
.soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    margin-bottom: 16px;
}

.soon-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-accent);
    box-shadow: 0 0 0 0 rgba(33, 209, 122, 0.7);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 9px rgba(33, 209, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(33, 209, 122, 0);
    }
}

/* ════════════════════════════════════════════════════
   COMING SOON SECTION
════════════════════════════════════════════════════ */
.soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.soon-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.soon-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.soon-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.soon-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* muted until the trip actually opens */
    filter: grayscale(0.38);
    transition: filter 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.soon-card:hover .soon-media img {
    filter: none;
    transform: scale(1.05);
}

.soon-media .soon-pill {
    position: absolute;
    left: 14px;
    bottom: 14px;
    margin: 0;
    background: rgba(0, 69, 31, 0.72);
    backdrop-filter: blur(6px);
}

.soon-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.soon-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.soon-body p {
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
}

.soon-link {
    margin-top: 18px;
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-mid);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.soon-link span {
    transition: transform var(--transition);
}

.soon-link:hover span {
    transform: translateX(5px);
}

/* ════════════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green-pale);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ════════════════════════════════════════════════════
   POLICY
════════════════════════════════════════════════════ */
.policy-box {
    max-width: 860px;
    margin-inline: auto;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--green-deep);
    border-radius: var(--radius-md);
    padding: clamp(26px, 4vw, 42px);
}

.policy-box li {
    position: relative;
    padding-left: 26px;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.policy-box li+li {
    margin-top: 12px;
}

.policy-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--green-light);
}

/* ════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════ */
.founder {
    max-width: 940px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(28px, 4vw, 52px);
    align-items: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 48px);
    box-shadow: var(--shadow-md);
}

.founder-portrait {
    position: relative;
}

/* stand-in until there's a photo of him */
.founder-monogram {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, var(--green-mid), var(--green-deep));
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 7vw, 4.6rem);
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-md);
}

.founder-badge {
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--green-deep);
    border: 1px solid var(--border);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.founder-name {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
}

.founder-role {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-light);
    margin: 8px 0 20px;
}

.founder-lead {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.9vw, 1.35rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--green-deep);
    padding-left: 18px;
    border-left: 3px solid var(--green-pale);
    margin-bottom: 18px;
}

.founder-body p:not(.founder-lead):not(.founder-role) {
    font-size: 0.94rem;
    color: var(--text-mid);
    line-height: 1.85;
}

.founder-body p+p {
    margin-top: 14px;
}

.founder-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 36px;
    margin: 26px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.founder-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-deep);
    line-height: 1.2;
}

.founder-stats span {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.founder-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.founder-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-mid);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.founder-link span {
    transition: transform var(--transition);
}

.founder-link:hover span {
    transform: translateX(5px);
}

@media (max-width: 760px) {
    .founder {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 22px 30px;
    }

    .founder-portrait {
        width: 150px;
        margin: 0 auto 30px;
    }

    .founder-monogram {
        font-size: 3rem;
    }

    /* long paragraphs stay left-aligned — centred body copy is hard to read */
    .founder-body p {
        text-align: left;
    }

    .founder-role {
        text-align: center;
    }

    .founder-stats {
        justify-content: center;
        gap: 14px 28px;
    }

    .founder-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .founder-actions .btn {
        width: 100%;
    }

    .founder-link {
        justify-content: center;
    }
}

/* ════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════ */
.testimonials-track-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
    color: var(--green-pale);
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    flex: 1;
}

.testimonial-user {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-user span {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-top: 8px;
    color: #f5a623;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 1.35rem;
    line-height: 1;
    color: var(--green-deep);
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--green-deep);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(4, 67, 31, 0.2);
    transition: var(--transition-fast);
}

.testimonial-dots button.active {
    width: 24px;
    border-radius: 999px;
    background: var(--green-deep);
}

/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.faq-list {
    max-width: 820px;
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 67, 31, 0.25);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--green-light);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-a p {
    padding: 0 24px 22px;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ════════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════════ */
.cta-strip {
    background: linear-gradient(120deg, var(--green-deep), var(--green-mid) 70%, var(--green-light));
    color: var(--white);
    padding: clamp(56px, 8vw, 96px) 0;
}

.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
}

.cta-strip-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.2;
}

.cta-strip-text h2 em {
    font-style: italic;
    color: var(--cream);
}

.cta-strip-text p {
    margin-top: 14px;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 300;
}

.cta-strip-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cta-phone {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.cta-phone:hover {
    color: var(--white);
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
    background: #032f16;
    color: rgba(255, 255, 255, 0.72);
    padding-top: clamp(48px, 7vw, 80px);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: clamp(32px, 5vw, 64px);
    padding-bottom: 48px;
}

.footer-logo {
    width: 168px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 36ch;
}

.footer-socials {
    display: flex;
    gap: 18px;
    margin-top: 18px;
    font-size: 0.82rem;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--green-accent);
    border-color: var(--green-accent);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
}

.footer-links h4 {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li+li {
    margin-top: 10px;
}

.footer-links a {
    font-size: 0.86rem;
    transition: var(--transition-fast);
}

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

.footer-links a em {
    font-style: normal;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 1px 7px;
    margin-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    text-align: center;
    font-size: 0.78rem;
}

/* ════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════ */
.wa-cta {
    position: fixed;
    right: 22px;
    /* clears the iPhone home indicator */
    bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    z-index: 800;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.wa-cta:hover {
    transform: scale(1.08);
}

/* ════════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════════ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(4, 22, 12, 0.6);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: min(980px, 100%);
    max-height: 90svh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    transform: translateY(24px) scale(0.98);
    transition: var(--transition);
}

.modal-overlay.open .modal {
    transform: none;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-dark);
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
}

.modal-carousel {
    background: var(--off-white);
    padding: 16px;
}

.carousel-main-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.carousel-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-main-img.fade-in {
    animation: imgFade 0.45s ease both;
}

@keyframes imgFade {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1;
    display: grid;
    place-items: center;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--white);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 999px;
}

.carousel-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
}

.carousel-thumbs img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.carousel-thumbs img.active {
    opacity: 1;
    border-color: var(--green-deep);
}

.modal-details {
    padding: clamp(22px, 3vw, 34px);
    display: flex;
    flex-direction: column;
}

.modal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.modal-badges span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--green-pale);
    color: var(--green-deep);
    padding: 5px 12px;
    border-radius: 999px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    color: var(--text-dark);
    line-height: 1.25;
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin: 14px 0 18px;
    font-size: 0.85rem;
    color: var(--text-mid);
}

.modal-meta span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.modal-meta i {
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.modal-list {
    margin-top: 20px;
}

.modal-list h4 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 10px;
}

.modal-list li {
    font-size: 0.86rem;
    color: var(--text-mid);
    display: flex;
    gap: 8px;
    line-height: 1.7;
}

.modal-list li+li {
    margin-top: 6px;
}

.modal-list li::before {
    content: '✓';
    color: var(--green-light);
    font-weight: 700;
}

.modal-list.exclusions li::before {
    content: '✕';
    color: #c0563f;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 24px;
}

.modal-price-row strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--green-deep);
}

.modal-price-row span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.modal-book-btn {
    margin-top: 16px;
    width: 100%;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 980px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {

    /* ── layout ── */
    .container,
    .nav-container {
        width: min(1200px, 100% - 2.5rem);
    }

    .section {
        padding: 56px 0;
    }

    .hamburger {
        display: flex;
        /* a proper thumb-sized target */
        margin: -10px;
        padding: 10px;
    }

    .nav-links {
        position: fixed;
        inset: var(--nav-height) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        color: var(--text-dark);
        box-shadow: var(--shadow-md);
        padding: 8px 24px 22px;
        /* clear the whole panel AND the navbar above it — a percentage alone
           left a white sliver of the closed menu showing over the nav */
        transform: translateY(calc(-100% - var(--nav-height)));
        visibility: hidden;
        transition: transform 0.35s ease, visibility 0s linear 0.35s;
    }

    .nav-links.open {
        transform: none;
        visibility: visible;
        transition: transform 0.35s ease, visibility 0s;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-cta {
        border: none;
        color: var(--green-deep);
        font-weight: 700;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-stats {
        gap: 16px;
        /* extra right padding keeps the stats clear of the WhatsApp button */
        padding: 16px 72px 16px 12px;
    }

    .stat-label {
        font-size: 0.58rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    /* chips become a single swipeable row instead of six stacked pills */
    .places-chips {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* bleed to the screen edges so the row reads as swipeable */
        margin-inline: -1.25rem;
        padding: 2px 1.25rem 6px;
    }

    .places-chips::-webkit-scrollbar {
        display: none;
    }

    .place-chip {
        scroll-snap-align: center;
    }

    .cta-strip-actions {
        width: 100%;
    }

    .cta-strip-actions .btn {
        width: 100%;
    }

    /* ── touch targets ── */
    .pkg-view,
    .soon-link {
        min-height: 44px;
        padding-inline: 22px;
    }

    .testimonial-btn {
        width: 46px;
        height: 46px;
    }

    /* dots stay small but get a finger-sized hit area around them */
    .testimonial-dots {
        gap: 0;
    }

    .testimonial-dots button {
        box-sizing: content-box;
        width: 9px;
        height: 9px;
        padding: 11px;
        background-clip: content-box;
    }

    /* the base .active rule uses the `background` shorthand, which resets
       background-clip — restate it so the hit area stays invisible */
    .testimonial-dots button.active {
        width: 22px;
        background-clip: content-box;
    }

    .faq-q {
        padding: 18px 20px;
    }

    .footer-links a,
    .footer-socials a {
        display: inline-block;
        padding-block: 7px;
    }

    .cta-phone {
        display: inline-block;
        padding-block: 10px;
    }

    /* ── the modal becomes a sheet ── */
    .modal-overlay {
        padding: 0;
        align-items: end;
    }

    .modal {
        width: 100%;
        max-height: 92vh;
        max-height: 92svh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(40px);
        overscroll-behavior: contain;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    /* close button rides along as the sheet scrolls, without taking up a row */
    .modal-close {
        position: sticky;
        display: block;
        top: 12px;
        right: auto;
        z-index: 5;
        width: 40px;
        height: 40px;
        margin: 12px 12px -52px auto;
    }

    .modal-carousel {
        padding: 12px;
    }

    .carousel-main-wrap {
        aspect-ratio: 1 / 1;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .modal-details {
        padding: 20px 20px 28px;
    }

    /* ── type ── */
    .hero-sub {
        font-size: 0.95rem;
    }

    .about-lead {
        font-size: 1.08rem;
    }

    .section-sub {
        font-size: 0.9rem;
    }
}

/* very small phones */
@media (max-width: 400px) {
    .nav-logo {
        width: 124px;
        height: 34px;
    }

    .hero-stats {
        gap: 12px;
        padding: 14px 68px 14px 8px;
    }

    .stat-num {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.54rem;
        letter-spacing: 0.1em;
    }

    .btn {
        padding: 13px 22px;
    }
}
