/* ───────────────────────────────────────
   Presencia — base styles
   ─────────────────────────────────────── */

@font-face {
    font-family: 'Larken';
    src: url('../assets/fonts/larken-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Larken Otf';
    src: url('../assets/fonts/larken-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../assets/fonts/AktivGrotesk-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../assets/fonts/AktivGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aktiv Grotesk';
    src: url('../assets/fonts/AktivGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --ease-out-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);

    /* Intro sequence timings */
    --intro-bg-in: 1.2s;
    --intro-logo-sharp: 0.8s;
    --intro-logo-hold: 1.8s;
    --intro-logo-blur: 0.7s;
    --intro-fade-out: 1s;

    --t-bg-in: 0s;
    --t-logo-in: 0.8s;
    --t-logo-blur: calc(var(--t-logo-in) + var(--intro-logo-sharp) + var(--intro-logo-hold));
    --t-intro-out: calc(var(--t-logo-blur) + var(--intro-logo-blur));
    --t-total-intro: calc(var(--t-intro-out) + var(--intro-fade-out));
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Aktiv Grotesk', Arial, sans-serif;
    font-weight: 300;
    color: #fff;
    background: #fff;
    overflow-x: hidden;
}

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

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

button {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

/* ───────────────────────────────────────
   Intro layer
   ─────────────────────────────────────── */

.intro-layer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: introLayerOut var(--intro-fade-out) var(--ease-out-soft) var(--t-intro-out) forwards;
}

.intro-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/bg-intro.jpg') center center / cover no-repeat;
    opacity: 0;
    animation: fadeIn var(--intro-bg-in) var(--ease-out-soft) var(--t-bg-in) forwards;
}

.intro-logo {
    position: relative;
    z-index: 2;
    width: clamp(150px, 26vw, 200px);
    filter: blur(14px);
    opacity: 0;
    animation:
        logoReveal var(--intro-logo-sharp) var(--ease-out-soft) var(--t-logo-in) forwards,
        logoBlurOut var(--intro-logo-blur) var(--ease-in-out-soft) var(--t-logo-blur) forwards;
}

@keyframes introLayerOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        filter: blur(14px);
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
}

@keyframes logoBlurOut {
    0% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        filter: blur(18px);
        transform: scale(1.04);
    }
}

/* ───────────────────────────────────────
   Hero
   ─────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/bg-hero.jpg') center center / cover no-repeat;
    opacity: 0;
    animation: heroBgIn 1.2s var(--ease-out-soft) 4.5s forwards;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

@keyframes heroBgIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Header */

.hero-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 2rem 0;
    opacity: 0;
    transform: translateY(-12px);
    animation: fadeInUp 0.9s var(--ease-out-soft) 5.2s forwards;
    background: transparent;
    color: #fff;
}

.hero-logo {
    display: block;
    width: clamp(64px, 9vw, 140px);
}

.hero-logo img {
    width: 100%;
    height: auto;
}

/* Sticky header */

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.78);
    color: #000;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
        opacity 0.4s var(--ease-out-soft),
        transform 0.4s var(--ease-out-soft);
}

.sticky-header.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sticky-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.sticky-logo img {
    width: clamp(36px, 4vw, 48px);
    height: auto;
}

.sticky-logo span {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.sticky-header .nav-contact {
    border-color: rgba(0, 0, 0, 0.35);
    color: #000;
}

.sticky-header .nav-contact:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.05);
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 26px;
    height: 18px;
    padding: 0;
}

.nav-menu span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
}

.nav-contact {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.25rem 0.55rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nav-contact:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-social svg {
    width: 20px;
    height: 20px;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-lang .sep {
    opacity: 0.5;
    pointer-events: none;
}

.nav-lang-link {
    color: inherit;
    text-decoration: none;
    line-height: 1;
    padding-bottom: 1px;
    transition: opacity 0.3s ease;
}

.nav-lang-link:hover {
    opacity: 0.75;
}

.nav-lang-link.is-active {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

/* Hero content */

.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0 2rem 3rem;
    width: 100%;
    min-height: 0;
}

.hero-content::before {
    content: '';
    flex: 1 1 auto;
    min-height: 2vh;
    max-height: 22vh;
    width: 100%;
}

.hero-block {
    width: 100%;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.9s var(--ease-out-soft) forwards;
}

.block-title {
    animation-delay: 5.4s;
}

.block-title h1 {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.block-line {
    animation-delay: 5.5s;
}

.vertical-line {
    display: block;
    width: 1px;
    height: clamp(50px, 8vh, 80px);
    background: rgba(255, 255, 255, 0.65);
}

.block-copy {
    max-width: 320px;
    font-size: clamp(0.75rem, 1vw, 1.1rem);
    line-height: 1.5;
    animation-delay: 5.6s;
}

.block-copy p + p {
    margin-top: 1rem;
}

.block-copy .upper {
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.35;
}

.block-slogan {
    margin-top: auto;
    width: 100%;
    padding-top: 1rem;
    animation-delay: 5.8s;
}

.slogan {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.4rem, 8.9vw, 9.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ───────────────────────────────────────
   Start your journey
   ─────────────────────────────────────── */

.start-journey {
    position: relative;
    z-index: 1;
    background: #e8e6e0;
    color: #000;
    padding: 5rem 2rem 2rem 0;
    overflow: visible;
}

.journey-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.journey-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(3rem, 9vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #9e9d8a;
    margin-bottom: -8.5rem;
    margin-left: 330px;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .journey-title {
        padding: 0.75rem 1rem 0;
        text-align: center;
        margin-left: 0;
    }

    .contact-title {
        margin-left: -1rem !important;
    }
}

.journey-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.journey-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-top: 2rem;
}

.journey-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-content {
    padding-top: 11rem;
}

@media (max-width: 768px) {
    .journey-content {
        padding-top: 11rem;
    }
}

.journey-lead {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.5;
    color: #9e9d8a;
    margin-bottom: 2rem;
    max-width: 380px;
}

.journey-body {
    font-size: clamp(0.85rem, 1vw, 0.7rem);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    margin-left: 35px;
}

.journey-body p + p {
    margin-top: 1rem;
}

.journey-btn {
    display: inline-block;
    border: 1px solid #9e9d8a;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9e9d8a;
    transition: background 0.3s ease, color 0.3s ease;
    margin-left: 35px;
}

.journey-btn:hover {
    background: #9e9d8a;
    color: #fff;
}

.plant-start {
    position: absolute;
    right: 2rem;
    bottom: -10rem;
    z-index: 1;
    width: clamp(280px, 34vw, 440px);
    opacity: 0.95;
    pointer-events: none;
}

.plant-start img {
    width: 100%;
    height: auto;
}

/* ───────────────────────────────────────
   Where to stay
   ─────────────────────────────────────── */

.where-stay {
    position: relative;
    background: #fff;
    color: #000;
    padding: 5rem 2rem 5rem;
    overflow: hidden;
}

.where-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.where-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 3.5vw, 1.6rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-align: center;
    color: #9e9d8a;
    margin-bottom: 3rem;
}

.where-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.where-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.where-column-text {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.45;
    color: #000;
    max-width: 255px;
    margin: 0 auto;
}

.where-column-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.where-card {
    border-radius: 10px;
    overflow: hidden;
}

.where-card img {
    display: block;
    width: 100%;
    height: auto;
}

.plant-where {
    position: absolute;
    left: 2rem;
    bottom: 0;
    z-index: 1;
    width: clamp(280px, 32vw, 350px);
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1800px) {
    .plant-where {
        left: 12rem;
    }
}

.plant-where img {
    width: 100%;
    height: auto;
}

/* ───────────────────────────────────────
   Plan your experience
   ─────────────────────────────────────── */

.plan-experience {
    background: #fff;
    color: #000;
    padding: 0rem 2rem 4rem 0rem;
}

.plan-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
}

.plan-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.7rem, 5vw, 1.6rem);
    line-height: 1.1;
    text-align: center;
    color: #9e9d8a;
    margin-bottom: 1rem;
}

.plan-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 0.8rem);
    text-align: center;
    color: #000;
    margin-bottom: 2rem;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1.5px solid #9E9D8A;
    border-radius: 12px;
    overflow: hidden;
}

.plan-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.25rem;
    border-right: 1.5px solid #9E9D8A;
    border-bottom: 1.5px solid #9E9D8A;
}

.plan-item:nth-child(4n) {
    border-right: none;
}

.plan-item:nth-last-child(-n+4) {
    border-bottom: none;
}

.plan-icon {
    width: 80px;
    height: 80px;
}

.plan-item h3 {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9e9d8a;
    margin-bottom: 0.75rem;
}

.plan-item p {
    font-size: 0.7rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 1rem;
    flex: 1;
}

.plan-item a {
    font-family: 'Larken', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    color: #9e9d8a;
    border-top: 1px solid #9e9d8a;
    padding-top: 0.75rem;
    margin-top: auto;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.plan-item a:hover {
    color: #6e6d5d;
    border-color: #6e6d5d;
}

.plan-image {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.plan-image:nth-child(4n) {
    border-right: none;
}

.plan-image:nth-last-child(-n+4) {
    border-bottom: none;
}

.plan-image img,
.plan-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.plan-image:hover img,
.plan-image:hover video {
    transform: scale(1.05);
}

/* ───────────────────────────────────────
   Our experiences
   ─────────────────────────────────────── */

.our-experiences {
    background: #fff;
    color: #000;
    padding: 1rem 2rem 3rem 2rem;
    overflow: hidden;
}

.experiences-inner {
    display: grid;
    grid-template-columns: 25% 75%;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.experiences-text {
    position: relative;
    z-index: 2;
}

.experiences-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(3rem, 7vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #9e9d8a;
    margin-bottom: 2rem;
}

.experiences-box {
    /* border: 1px solid #9e9d8a; */
    padding: 1rem;
    max-width: 320px;
    margin-left: 20px;
    margin-right: 20px;
}

.experiences-box p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #000;
    
}

.experiences-slider {
    position: relative;
}

.slider-window {
    overflow: hidden;
    border-radius: 12px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s var(--ease-out-soft);
}

.slide {
    flex: 0 0 100%;
    aspect-ratio: 16 / 10;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #9e9d8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9d8a;
    transition: background 0.3s ease, color 0.3s ease;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-arrow:hover {
    background: #9e9d8a;
    color: #fff;
}

.experiences-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
}

.experiences-more:hover {
    color: #9e9d8a;
}

.arrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: currentColor;
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2.5px;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

/* ───────────────────────────────────────
   The people behind Presencia
   ─────────────────────────────────────── */

.people-behind {
    position: relative;
    background: #e8e6e0;
    color: #000;
    padding: 3rem 2rem 4rem;
    overflow: hidden;
}

.people-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.people-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.7rem, 4.5vw, 1.6rem);
    line-height: 1.1;
    text-align: center;
    color: #9e9d8a;
    margin-bottom: 1rem;
}

.people-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 0.8rem);
    line-height: 1.6;
    text-align: center;
    color: #000;
    margin-bottom: 2rem;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.person {
    text-align: center;
}

.person-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
}

.person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.person-name {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9e9d8a;
}

.person-role {
    font-size: 0.75rem;
    color: #000;
    margin-bottom: 0.75rem;
}

.person-arrow {
    display: block;
    font-size: 1.1rem;
    color: #9e9d8a;
    margin-bottom: 1rem;
}

.person-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #000;
    max-width: 340px;
    margin: 0 auto;
}

.plant-people {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 1;
    width: clamp(220px, 28vw, 400px);
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1800px) {
    .plant-people {
        right: 10rem;
    }
}

.plant-people img {
    width: 100%;
    height: auto;
}

/* ───────────────────────────────────────
   Aerial banners
   ─────────────────────────────────────── */

.aerial-section {
    position: relative;
    height: 180vh;
    background: #000;
}

.aerial-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.aerial-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform, clip-path;
}

.aerial-image img {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
}

.aerial-image-1 {
    z-index: 2;
    clip-path: inset(0 0 0 0);
}

.aerial-image-2 {
    z-index: 1;
}

.aerial-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

/* ───────────────────────────────────────
   Scroll reveal animations
   ─────────────────────────────────────── */

.reveal-blur {
    opacity: 0;
    filter: blur(16px);
    transform: scale(0.98);
    transition:
        opacity 1s var(--ease-out-soft),
        filter 1s var(--ease-out-soft),
        transform 1s var(--ease-out-soft);
}

.reveal-blur.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s var(--ease-out-soft),
        transform 0.8s var(--ease-out-soft);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-blur,
    .reveal-up {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

/* ───────────────────────────────────────
   Responsive
   ─────────────────────────────────────── */

@media (min-width: 1750px) {
    .slogan {
        font-size: clamp(2.8rem, 12rem, 11.5rem);
    }
}

@media (max-width: 768px) {
    .hero-header {
        align-items: center;
        padding: 1rem;
    }

    .hero-logo {
        width: clamp(84px, 30vw, 120px);
    }

    .hero-nav {
        gap: 1rem;
    }

    .nav-contact {
        display: none;
    }

    .hero-content {
        padding: 0 1rem 1.75rem;
        gap: 0.85rem;
    }

    .hero-content::before {
        flex: 0 0 auto;
        min-height: 0;
        max-height: 4vh;
        height: 4vh;
    }

    .block-title h1 {
        font-size: clamp(2rem, 6.5vw, 2.6rem);
    }

    .vertical-line {
        height: clamp(44px, 7vh, 64px);
    }

    .block-copy {
        max-width: 100%;
        font-size: clamp(1.1rem, 3.2vw, 1.05rem);
        line-height: 1.55;
    }

    .block-copy .upper {
        font-size: 1.1rem;
        letter-spacing: 0.06em;
        line-height: 1.4;
    }

    .slogan {
        font-size: clamp(2.8rem, 13.5vw, 5rem);
        line-height: 0.92;
        white-space: normal;
    }

    .start-journey {
        padding: 4rem 1rem 0;
    }

    .journey-title {
        margin-bottom: 0;
        text-align: left;
        margin-bottom: -3rem;
    }

    .journey-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-image {
        aspect-ratio: 4 / 3;
    }

    .journey-content {
        padding-top: 0;
    }

    .plant-start {
        right: 0rem;
        bottom: -4rem;
        width: 220px;
    }

    .where-stay {
        padding: 4rem 1rem 6rem;
    }

    .where-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .where-column {
        gap: 1rem;
    }

    .where-column-images {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .where-card img {
        height: auto;
    }

    .plant-where {
        left: -2rem;
        bottom: -2rem;
        width: 260px;
    }

    .plan-experience {
        padding: 4rem 1rem;
    }

    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-item:nth-child(4n) {
        border-right: 1px solid #e0e0e0;
    }

    .plan-item:nth-child(2n) {
        border-right: none;
    }

    .plan-item:nth-last-child(-n+4) {
        border-bottom: 1px solid #e0e0e0;
    }

    .plan-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .plan-image:nth-child(4n) {
        border-right: 1px solid #e0e0e0;
    }

    .plan-image:nth-child(2n) {
        border-right: none;
    }

    .plan-image:nth-last-child(-n+4) {
        border-bottom: 1px solid #e0e0e0;
    }

    .plan-image:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .our-experiences {
        padding: 4rem 1rem;
    }

    .experiences-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experiences-title {
        margin-bottom: 1.5rem;
    }

    .experiences-box {
        max-width: 100%;
    }

    .people-behind {
        padding: 4rem 1rem 6rem;
    }

    .people-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .plant-people {
        top: -2rem;
        right: -6rem;
        width: 200px;
    }
    
}

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

    .intro-layer {
        display: none;
    }

    .hero-bg,
    .hero-header,
    .hero-block {
        opacity: 1;
        transform: none;
    }
}

/* ───────────────────────────────────────
   Testimonials
   ─────────────────────────────────────── */

.testimonials-section {
    background: #fff;
    color: #000;
    padding: 6rem 2rem;
    overflow: hidden;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.7rem, 3.5vw, 1.6rem);
    line-height: 1.2;
    text-align: center;
    color: #9e9d8a;
    margin-bottom: 3rem;
}

.testimonials-slider {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s var(--ease-out-soft);
}

.testimonial-card {
    flex: 0 0 calc((100% - 5rem) / 3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-mark {
    font-family: 'Larken Otf', Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: #9e9d8a;
}

.testimonial-text {
    font-size: clamp(0.72rem, 1vw, 0.8rem);
    line-height: 1.7;
    color: #000;
    margin-bottom: 1.5rem;
    max-width: 340px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.testimonial-author strong {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9e9d8a;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: #9e9d8a;
}

.testimonial-date {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #9e9d8a;
    margin-top: 0.15rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.testimonials-dots .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0cfc4;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.testimonials-dots .dot.is-active {
    background: #000;
    transform: scale(1.15);
}

/* ───────────────────────────────────────
   Instagram / Gallery
   ─────────────────────────────────────── */

.gallery-section {
    background: #fff;
    padding: 0 2rem 6rem;
    overflow: hidden;
}

.gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ───────────────────────────────────────
   Contact / Closing
   ─────────────────────────────────────── */

.contact-section {
    position: relative;
    background: #e8e6e0;
    color: #000;
    padding: 6rem 2rem;
    overflow: hidden;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.plant-contact {
    position: absolute;
    left: 0rem;
    bottom: -3rem;
    z-index: 1;
    width: clamp(320px, 40vw, 520px);
    opacity: 0.12;
    pointer-events: none;
}

.plant-contact img {
    width: 100%;
    height: auto;
}

.contact-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 520px;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 2rem;
}

.contact-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #9e9d8a;
    margin-left: -12rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    color: #000;
    transition: color 0.3s ease;
}

.contact-row:hover {
    color: #9e9d8a;
}

.contact-info > .contact-row:not(.contact-phone) span:last-child {
    border-bottom: 1px solid #9e9d8a;
    padding-bottom: 1rem;
}

.contact-info > .contact-row:not(.contact-phone):hover span:last-child {
    border-color: #6e6d5d;
}

.contact-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid #9e9d8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9d8a;
    flex-shrink: 0;
}

.contact-arrow svg {
    width: 14px;
    height: 14px;
}

.contact-phone {
    gap: 1.25rem;
    padding-left: 3.25rem;
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
}

.contact-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9e9d8a;
    min-width: 42px;
}

/* ───────────────────────────────────────
   Footer
   ─────────────────────────────────────── */

.site-footer {
    background: #4a4a4a;
    color: #fff;
    padding: 4rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-logo {
    width: clamp(64px, 7vw, 84px);
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-name {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.footer-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #9e9d8a;
    max-width: 160px;
}

.footer-arrow svg {
    width: 100%;
    height: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.8rem;
    text-align: left;
    flex-shrink: 0;
}

.footer-contact-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    color: #9e9d8a;
}

.footer-phone {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-instagram {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    align-items: center;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 1;
}

.footer-social svg {
    width: 36px;
    height: 36px;
}

.footer-instagram-handle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 0.7rem;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-instagram-handle:hover {
    color: #9e9d8a;
}

.footer-instagram-credits {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: #9e9d8a;
    max-width: 200px;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(158, 157, 138, 0.35);
}

.footer-credits-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9e9d8a;
}

.footer-instagram-credits a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.footer-instagram-credits a:hover {
    color: #fff;
}

/* ───────────────────────────────────────
   Responsive additions
   ─────────────────────────────────────── */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }

    .testimonials-track {
        gap: 1rem;
    }

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

    .testimonials-dots {
        margin-top: 1.5rem;
    }

    .gallery-section {
        padding: 0 1rem 4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .gallery-column {
        gap: 0.75rem;
    }

    .contact-section {
        padding: 4rem 1rem;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-photo {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        margin-left: 0;
    }

    .plant-contact {
        left: -6rem;
        bottom: -6rem;
        width: 240px;
    }

    .site-footer {
        padding: 3rem 1rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-arrow {
        display: none;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-instagram {
        align-items: center;
        gap: 1rem;
    }
}

/* ───────────────────────────────────────
   Fullscreen menu overlay
   ─────────────────────────────────────── */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    pointer-events: none;
    visibility: hidden;
}

.menu-overlay.is-open,
.menu-overlay.is-closing {
    pointer-events: auto;
    visibility: visible;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-soft) 0.2s;
}

.menu-overlay.is-open .menu-backdrop {
    opacity: 1;
    transition-delay: 0s;
}

.menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    transform: translateX(100%);
    transition: transform 0.85s var(--ease-in-out-soft);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.06);
}

.menu-overlay.is-open .menu-panel {
    transform: translateX(0);
    transition-delay: 0.15s;
}

.menu-close {
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-close:hover {
    color: #9e9d8a;
}

.menu-close span {
    position: absolute;
    display: block;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition: background 0.3s ease;
}

.menu-close span:first-child {
    transform: rotate(45deg);
}

.menu-close span:last-child {
    transform: rotate(-45deg);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-link {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #9e9d8a;
    opacity: 0;
    transform: translateY(20px);
    transition:
        color 0.3s ease,
        opacity 0.35s var(--ease-out-soft),
        transform 0.35s var(--ease-out-soft);
}

.menu-overlay.is-open .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.menu-link:hover {
    color: #000;
}

/* Stagger menu links on open; close is fast and clean */
.menu-overlay.is-open .menu-link:nth-child(1) { transition-delay: 0.25s; }
.menu-overlay.is-open .menu-link:nth-child(2) { transition-delay: 0.30s; }
.menu-overlay.is-open .menu-link:nth-child(3) { transition-delay: 0.35s; }
.menu-overlay.is-open .menu-link:nth-child(4) { transition-delay: 0.40s; }
.menu-overlay.is-open .menu-link:nth-child(5) { transition-delay: 0.45s; }
.menu-overlay.is-open .menu-link:nth-child(6) { transition-delay: 0.50s; }
.menu-overlay.is-open .menu-link:nth-child(7) { transition-delay: 0.55s; }
.menu-overlay.is-open .menu-link:nth-child(8) { transition-delay: 0.60s; }

/* Hamburger to X animation */
.nav-menu.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-menu.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-menu.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Prevent body scroll when menu is open */
body.menu-is-open {
    overflow: hidden;
}

/* ───────────────────────────────────────
   Menu responsive
   ─────────────────────────────────────── */

@media (max-width: 768px) {
    .menu-panel {
        width: 100%;
        padding: 4rem 2rem;
    }

    .menu-close {
        right: 1rem;
    }

    .menu-link {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }
}

/* ───────────────────────────────────────
   Activity detail modal
   ─────────────────────────────────────── */

.activity-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.activity-modal.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.activity-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.activity-modal-panel {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border: 1px solid #9e9d8a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out-soft);
}

.activity-modal.is-open .activity-modal-panel {
    transform: translateY(0);
}

.activity-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    border: 1px solid #9e9d8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9d8a;
    background: #fff;
    z-index: 5;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.activity-modal-close:hover {
    background: #9e9d8a;
    color: #fff;
}

.activity-modal-close span {
    position: absolute;
    display: block;
    width: 10px;
    height: 1px;
    background: currentColor;
}

.activity-modal-close span:first-child {
    transform: rotate(45deg);
}

.activity-modal-close span:last-child {
    transform: rotate(-45deg);
}

.activity-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    min-height: 480px;
}

.activity-modal-content {
    padding: 2.5rem 0 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.activity-modal-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #9e9d8a;
    margin-bottom: 1.25rem;
    width: min(135%, 440px);
    position: relative;
    z-index: 2;
}

.activity-modal-text {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #5a5a5a;
    padding-left: 2rem;
    padding-right: 1rem;
    position: relative;
    z-index: 2;
}

.activity-modal-text p + p {
    margin-top: 1rem;
}

.activity-modal-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 3rem 1.5rem 2rem;
}

.activity-modal-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .activity-modal {
        padding: 1rem;
    }

    .activity-modal-panel {
        max-height: calc(100svh - 2rem);
        overflow-y: auto;
    }

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

    .activity-modal-image {
        order: -1;
        padding: 0.75rem;
    }

    .activity-modal-image img {
        position: static;
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .activity-modal-content {
        padding: 1.5rem;
    }

    .activity-modal-title {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .activity-modal-text {
        padding-left: 0;
        padding-right: 0;
    }
}


/* ───────────────────────────────────────
   Lead capture popup modal
   ─────────────────────────────────────── */

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lead-modal.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lead-modal-panel {
    position: relative;
    width: 100%;
    max-width: 820px;
    background: #e8e6e0;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out-soft);
}

.lead-modal.is-open .lead-modal-panel {
    transform: translateY(0);
}

.lead-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: #5a5a5a;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s ease, background 0.3s ease;
}

.lead-modal-close:hover {
    background: #9e9d8a;
    color: #fff;
}

.lead-modal-close span {
    position: absolute;
    display: block;
    width: 10px;
    height: 1.5px;
    background: currentColor;
}

.lead-modal-close span:first-child {
    transform: rotate(45deg);
}

.lead-modal-close span:last-child {
    transform: rotate(-45deg);
}

.lead-modal-layout {
    position: relative;
    padding: 3rem 3.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.lead-modal-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 1.25rem 1.5rem 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-modal-image {
    display: flex;
    z-index: 1;
}

.lead-modal-image--desktop {
    width: 50%;
}

.lead-modal-image--mobile {
    display: none;
}

.lead-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.lead-modal-title {
    font-family: 'Larken', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #9e9d8a;
    margin-bottom: 1.75rem;
    width: 125%;
    max-width: none;
}

.lead-modal-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2.5rem;
}

.lead-modal-arrow {
    flex: none;
    width: 1.5rem;
    height: 1.5rem;
    color: #5a5a5a;
}

.lead-modal-arrow svg {
    width: 100%;
    height: 100%;
}

.lead-modal-subtitle {
    font-family: 'Aktiv Grotesk', Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.45;
    color: #5a5a5a;
    margin: 0;
}

.lead-modal-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
    border: 1px solid #9e9d8a;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.lead-modal-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.55rem 0.75rem;
    border: none;
    font-family: 'Aktiv Grotesk', Arial, sans-serif;
    font-size: 0.75rem;
    color: #3a3a3a;
    background: transparent;
    outline: none;
}

.lead-modal-input::placeholder {
    color: #9a9a9a;
}

.lead-modal-submit {
    flex: none;
    padding: 0.55rem 0.85rem;
    border: none;
    background: #9e9d8a;
    color: #fff;
    font-family: 'Aktiv Grotesk', Arial, sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lead-modal-submit:hover {
    background: #8a8978;
}

.lead-modal-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.lead-modal-message {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    min-height: 1.2em;
    color: #5a5a5a;
}

.lead-modal-message.is-success {
    color: #5a7c5a;
}

.lead-modal-message.is-error {
    color: #a85a5a;
}

@media (max-width: 768px) {
    .lead-modal {
        padding: 1rem;
    }

    .lead-modal-panel {
        max-height: calc(100svh - 2rem);
        overflow-y: auto;
    }

    .lead-modal-layout {
        display: flex;
        flex-direction: column;
        padding: 1.25rem;
        min-height: auto;
    }

    .lead-modal-content {
        width: 100%;
        padding: 0;
    }

    .lead-modal-image--desktop {
        display: none;
    }

    .lead-modal-image--mobile {
        display: flex;
        width: 100%;
        height: 250px;
        margin-bottom: 1.25rem;
        position: relative;
    }

    .lead-modal-image--mobile::before {
        content: '';
        display: block;
        width: 100%;
        padding-bottom: 75%;
    }

    .lead-modal-image--mobile img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 12px;
        object-fit: cover;
    }

    .lead-modal-title {
        width: 100%;
        max-width: none;
        font-size: clamp(2.5rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
        margin-top: 1.25rem;
    }

    .lead-modal-subtitle-wrap {
        margin-bottom: 1.5rem;
    }

    .lead-modal-form {
        max-width: 100%;
    }
}

/* Dynamic hero background (image set inline or video element) */
.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
