/**
 * Landing Page - Native Article Template
 * SunLouvre Pergolas
 *
 * Design tokens inherited from existing theme:
 *   Primary:    #333230 (dark charcoal)
 *   Secondary:  #946955 (warm brown)
 *   Accent-alt: #A27461 (lighter brown)
 *   Light-bg:   #f5f0eb (warm cream)
 *   White:      #ffffff
 *   Dark-gray:  #404142 (body text)
 *
 * Fonts:
 *   Headings:     futura-pt (TypeKit)
 *   Serif accent: Cormorant Garamond (Google)
 *   Body:         Montserrat (Google)
 */

/* ==========================================================================
   Font Face
   ========================================================================== */
@font-face {
    font-family: 'Feature Display';
    src: url('fonts/Feature-Display-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --ln-primary: #333230;
    --ln-secondary: #946955;
    --ln-secondary-hover: #7a5843;
    --ln-accent-alt: #A27461;
    --ln-light-bg: #f5f0eb;
    --ln-white: #ffffff;
    --ln-dark-gray: #404142;
    --ln-border: #d6cfc6;
    --ln-gold: #d4b896;
    --ln-muted: #9a8e82;
    --ln-font-heading: 'futura-pt', 'Futura', sans-serif;
    --ln-font-serif: 'Feature Display', Georgia, serif;
    --ln-font-body: 'Montserrat', sans-serif;
    --ln-section-pad: 80px;
    --ln-section-pad-tablet: 60px;
    --ln-section-pad-mobile: 48px;
    --ln-max-width: 1200px;
}

/* ==========================================================================
   Landing Page Base
   ========================================================================== */
/* ==========================================================================
   Dark Navigation Override (landing page only)
   ========================================================================== */
.page-template-template-landing-native-php header[role="banner"] {
    background: transparent !important;
    background-color: transparent !important;
}

.page-template-template-landing-native-php .nxs-header {
    --tw-bg-opacity: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    color: var(--ln-light-bg);
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Scrolled state - solid dark bg */
.page-template-template-landing-native-php .nxs-header.ln-nav-scrolled {
    --tw-bg-opacity: 1 !important;
    background: var(--ln-primary) !important;
    background-color: var(--ln-primary) !important;
}

.page-template-template-landing-native-php header[role="banner"].ln-nav-scrolled {
    background: var(--ln-primary) !important;
    background-color: var(--ln-primary) !important;
}

/* Swap logo to white version */
.page-template-template-landing-native-php .nxs-header .logo #logo1,
.page-template-template-landing-native-php .nxs-header .logo #logo2 {
    filter: brightness(0) invert(1);
}

/* Nav-up: force all text white */
.page-template-template-landing-native-php .nxs-header .nav-up,
.page-template-template-landing-native-php .nxs-header .nav-up *  {
    color: rgba(255, 255, 255, 0.7) !important;
}

.page-template-template-landing-native-php .nxs-header .nav-up a:hover,
.page-template-template-landing-native-php .nxs-header .nav-up .phone a:hover {
    color: #fff !important;
}

.page-template-template-landing-native-php .nxs-header .nav-down a,
.page-template-template-landing-native-php .nxs-header .nav-down li {
    color: #fff;
}

.page-template-template-landing-native-php .nxs-header .nav-down a:hover {
    color: var(--ln-secondary);
}

/* Hamburger icon invert for mobile */
.page-template-template-landing-native-php .nxs-header .hamburger {
    filter: brightness(0) invert(1);
}

/* Region dropdown on dark nav */
.page-template-template-landing-native-php .nxs-header .selected-store {
    z-index: 50;
}

.page-template-template-landing-native-php .nxs-header .selected-store:not(:hover) .submenu-regions {
    visibility: hidden;
}

.page-template-template-landing-native-php .nxs-header .selected-store:hover .submenu-regions {
    visibility: visible;
}

.page-template-template-landing-native-php .nxs-header .submenu-regions {
    --tw-bg-opacity: 1 !important;
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-top: 12px;
    padding: 8px 0;
    z-index: 50 !important;
}

.page-template-template-landing-native-php .nxs-header .nav-up {
    position: relative;
    z-index: 40;
}

.page-template-template-landing-native-php .nxs-header .nav-down {
    position: relative;
    z-index: 30;
}

.page-template-template-landing-native-php .nxs-header .submenu-regions li {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-template-template-landing-native-php .nxs-header .submenu-regions li:hover {
    color: #fff !important;
}

/* CTA button in nav - outline style on dark */
.page-template-template-landing-native-php .nxs-header .nav-down .btn-sunlouvre,
.page-template-template-landing-native-php .nxs-header .nav-down li:last-child a[class*="btn"],
.page-template-template-landing-native-php .nxs-header .nav-down .menu-item:last-child > a {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.page-template-template-landing-native-php,
.page-template-template-landing-native-php html,
html:has(.page-template-template-landing-native-php) {
    scroll-behavior: smooth !important;
}

/* Prevent horizontal scroll caused by 100vw full-bleed elements
   (.ln-article__image). 100vw on iOS Safari / FB in-app browser can
   exceed the layout viewport by 1-2px and leak past parent overflow:hidden. */
html:has(.page-template-template-landing-native-php),
body.page-template-template-landing-native-php {
    overflow-x: hidden;
}

.landing-native {
    position: relative;
    z-index: 1;
    background: var(--ln-white);
}

.landing-native *,
.landing-native *::before,
.landing-native *::after {
    box-sizing: border-box;
}

.landing-native img {
    max-width: 100%;
    height: auto;
    display: block;
}

.landing-native section {
    position: relative;
}

/* ==========================================================================
   1. HERO SECTION - Full-screen background image
   ========================================================================== */
.ln-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.ln-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px 0;
    width: 100%;
}

.ln-hero__text {
    max-width: 600px;
}

.ln-hero__title {
    font-family: var(--ln-font-serif);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ln-hero__subtitle {
    font-family: var(--ln-font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 32px;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-hero__inner {
        padding: 0 40px 60px;
    }
    .ln-hero__title {
        font-size: 44px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-hero {
        background-image: url('../img/landing/hero-vertical.jpg') !important;
        background-attachment: scroll;
        background-position: center bottom;
        align-items: flex-start;
        padding-top: 280px;
    }
    .ln-hero__inner {
        padding: 0 24px;
    }
    .ln-hero__text {
        max-width: 100%;
        text-align: center;
    }
    .ln-hero__title {
        font-size: 36px;
    }
    .ln-hero__subtitle {
        font-size: 15px;
    }
    .ln-hero__text .ln-cta {
        margin: 0 auto;
    }
}

/* ==========================================================================
   CTA Button (shared)
   ========================================================================== */
.ln-cta {
    display: inline-block;
    font-family: var(--ln-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ln-white);
    background: var(--ln-secondary);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.ln-cta:hover {
    background: var(--ln-secondary-hover);
    transform: translateY(-1px);
}

.ln-cta:focus-visible {
    outline: 2px solid var(--ln-secondary);
    outline-offset: 3px;
}

/* ==========================================================================
   2. ARTICLE SECTION - Cream/image/cream sandwich layout
   ========================================================================== */
.ln-article {
    background: var(--ln-light-bg);
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    max-width: 100vw;
}

/* Top and bottom cream blocks */
.ln-article__top,
.ln-article__bottom {
    padding: 64px 40px;
}

.ln-article__content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.ln-article__heading {
    font-family: var(--ln-font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--ln-primary);
    margin: 0 0 24px;
    line-height: 1.15;
}

.ln-article__text {
    font-family: var(--ln-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--ln-dark-gray);
    margin: 0 0 16px;
}

.ln-article__text--bold {
    font-weight: 600;
    color: var(--ln-primary);
}

/* Full-width video with pullquote overlay */
.ln-article__image {
    position: relative;
    height: calc(100vh - 130px);
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%) !important;
}

.ln-article__image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ln-article__pullquote {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 0;
    background: rgba(0, 0, 0, 0.15);
}

.ln-article__pullquote p {
    font-family: var(--ln-font-serif);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    text-align: center;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-article__heading {
        font-size: 38px;
    }
    .ln-article__pullquote p {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-article__top,
    .ln-article__bottom {
        padding: 48px 20px;
    }
    .ln-article__heading {
        font-size: 32px;
    }
    .ln-article__image {
        height: 60vh;
    }
    .ln-article__pullquote {
        padding: 24px;
    }
    .ln-article__pullquote p {
        font-size: 26px;
    }
}

/* ==========================================================================
   3. TRUST STRIP - Full-height with glassmorphic cards
   ========================================================================== */
.ln-trust {
    min-height: calc(100vh - 130px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ln-trust__overlay {
    position: absolute;
    inset: 0;
    background: rgba(51, 50, 48, 0.25);
    z-index: 1;
}

.ln-trust__inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.ln-trust__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: 1fr 1fr auto;
    gap: 16px;
}

/* Glassmorphic card - adapted from Levelr */
.ln-trust__card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 8px 32px rgba(0, 0, 0, 0.12);
    transition: background 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ln-trust__card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Bento: card 1 spans both rows (tall left), cards 2-3 stack on right, card 4 full bottom */
.ln-trust__card:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.ln-trust__card:nth-child(2) {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.ln-trust__card:nth-child(3) {
    grid-row: 2 / 2;
    grid-column: 2 / 3;
}

.ln-trust__card:nth-child(4) {
    grid-row: 3 / 4;
    grid-column: 1 / 3;
}

.ln-trust__title {
    font-family: var(--ln-font-serif);
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

/* Hero card - big number title */
.ln-trust__title--hero {
    font-size: 24px;
    line-height: 1.2;
}

.ln-trust__big-number {
    display: block;
    font-family: var(--ln-font-serif);
    font-size: 72px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
    margin-bottom: 8px;
}

.ln-trust__desc {
    font-family: var(--ln-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.65;
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-trust {
        min-height: 80vh;
    }
    .ln-trust__inner {
        padding: 60px 24px;
    }
    .ln-trust__title {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-trust {
        min-height: auto;
    }
    .ln-trust__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    .ln-trust__inner {
        padding: 60px 20px;
    }
    .ln-trust__card,
    .ln-trust__card:nth-child(2),
    .ln-trust__card:nth-child(3),
    .ln-trust__card:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
        padding: 28px 24px;
    }
    .ln-trust__title {
        font-size: 22px;
    }
}

/* ==========================================================================
   4. EXPERIENCE SECTION
   ========================================================================== */
.ln-experience {
    background: var(--ln-white);
    padding: var(--ln-section-pad) 0;
}

.ln-experience__inner {
    max-width: var(--ln-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.ln-experience__text {
    flex: 0 0 50%;
    max-width: 50%;
}

.ln-experience__heading {
    font-family: var(--ln-font-serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--ln-primary);
    margin: 0 0 24px;
    line-height: 1.3;
}

.ln-experience__body {
    font-family: var(--ln-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--ln-dark-gray);
    margin: 0 0 16px;
}

.ln-experience__image {
    flex: 0 0 50%;
    max-width: 50%;
}

.ln-experience__image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-experience {
        padding: var(--ln-section-pad-tablet) 0;
    }
    .ln-experience__inner {
        padding: 0 24px;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-experience {
        padding: var(--ln-section-pad-mobile) 0;
    }
    .ln-experience__inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 24px;
    }
    .ln-experience__text,
    .ln-experience__image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .ln-experience__heading {
        font-size: 26px;
    }
}

/* ==========================================================================
   5. REVIEWS - Static 3x2 grid (landing page only)
   ========================================================================== */
.ln-reviews {
    background: var(--ln-light-bg);
    padding: var(--ln-section-pad) 0;
}

.ln-reviews__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.ln-reviews__heading {
    font-family: var(--ln-font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--ln-primary);
    margin: 0 0 48px;
    line-height: 1.2;
}

.ln-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Review card */
.ln-review-card {
    background: var(--ln-white);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ln-review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ln-review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ln-secondary), #b8897a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ln-font-body);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.ln-review-card__info {
    flex: 1;
}

.ln-review-card__name {
    font-family: var(--ln-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--ln-primary);
    margin: 0 0 4px;
    letter-spacing: normal;
}

.ln-review-card__stars {
    display: flex;
    gap: 2px;
    color: var(--ln-secondary);
}

.ln-review-card__text {
    font-family: var(--ln-font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ln-dark-gray);
    margin: 0;
    flex: 1;
}

.ln-review-card__footer {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ln-review-card__badge {
    font-family: var(--ln-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: normal;
    color: var(--ln-muted);
}

/* CTA button */
.ln-reviews__cta {
    text-align: center;
    margin-top: 40px;
}

.ln-reviews__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--ln-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    text-decoration: none;
    font-family: var(--ln-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ln-primary);
    transition: all 0.25s ease;
}

.ln-reviews__link:hover {
    background: var(--ln-primary);
    color: #fff;
    border-color: var(--ln-primary);
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-reviews {
        padding: var(--ln-section-pad-tablet) 0;
    }
    .ln-reviews__inner {
        padding: 0 24px;
    }
    .ln-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-reviews {
        padding: var(--ln-section-pad-mobile) 0;
    }
    .ln-reviews__inner {
        padding: 0 20px;
    }
    .ln-reviews__heading {
        font-size: 28px;
    }
    .ln-reviews__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   6. FORM SECTION
   ========================================================================== */
.ln-form {
    background: var(--ln-white);
    padding: var(--ln-section-pad) 0;
}

.ln-form__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 56px;
    text-align: center;
    background: var(--ln-light-bg);
    border-radius: 16px;
}

.ln-form__heading {
    font-family: var(--ln-font-serif);
    font-size: 38px;
    font-weight: 300;
    color: var(--ln-primary);
    margin: 0 0 20px;
    line-height: 1.2;
}

.ln-form__subheading {
    font-family: var(--ln-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ln-dark-gray);
    margin: 0 auto 36px;
    text-align: center;
    max-width: 480px;
}

/* CF7 Form overrides for landing page */
.ln-form .wpcf7 {
    text-align: left;
}

.ln-form .wpcf7-form p {
    margin: 0;
}

/* Hide elements not needed on landing form */
.ln-form .quote-form__uploads,
.ln-form .quote-form__upload-label,
.ln-form .quote-form__upload-hint,
.ln-form .quote-form__upload-row,
.ln-form .quote-form__radio-row,
.ln-form .quote-form__comment {
    display: none !important;
}

/* 2-column rows */
.ln-form .quote-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

/* Field styling - cream bg, subtle border, rounded */
.ln-form .wpcf7-form input[type="text"],
.ln-form .wpcf7-form input[type="email"],
.ln-form .wpcf7-form input[type="tel"],
.ln-form .wpcf7-form select,
.ln-form .wpcf7-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 18px 20px;
    font-family: var(--ln-font-body);
    font-size: 15px;
    color: var(--ln-primary);
    background: var(--ln-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ln-form .wpcf7-form input:focus,
.ln-form .wpcf7-form select:focus,
.ln-form .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--ln-secondary);
    box-shadow: 0 0 0 3px rgba(148, 105, 85, 0.08);
}

.ln-form .wpcf7-form input::placeholder,
.ln-form .wpcf7-form select,
.ln-form .wpcf7-form textarea::placeholder {
    color: #b0a89e;
}

.ln-form .wpcf7-form select {
    color: #b0a89e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%239a8e82'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.ln-form .wpcf7-form select:valid {
    color: var(--ln-primary);
}

/* Submit button - brand brown, large, serif font */
.ln-form .wpcf7-form input[type="submit"],
.ln-form .wpcf7-submit {
    width: 100%;
    background: var(--ln-secondary);
    color: var(--ln-white);
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-family: var(--ln-font-serif);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.25s ease;
    margin-top: 12px;
    letter-spacing: 0.01em;
}

.ln-form .wpcf7-form input[type="submit"]:hover,
.ln-form .wpcf7-submit:hover {
    background: var(--ln-secondary-hover);
}

.ln-form .wpcf7-form input[type="submit"]:focus-visible {
    outline: 2px solid var(--ln-secondary);
    outline-offset: 3px;
}

/* CF7 validation messages */
.ln-form .wpcf7-not-valid-tip {
    font-family: var(--ln-font-body);
    font-size: 13px;
    color: #c0392b;
    margin-top: 4px;
}

.ln-form .wpcf7-response-output {
    font-family: var(--ln-font-body);
    font-size: 14px;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0 0;
}

/* Trust signals below form */
.ln-form__trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ln-form__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ln-font-body);
    font-size: 13px;
    color: var(--ln-muted);
}

.ln-form__trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-form {
        padding: var(--ln-section-pad-tablet) 0;
    }
    .ln-form__inner {
        margin: 0 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-form {
        padding: var(--ln-section-pad-mobile) 0;
    }
    .ln-form__inner {
        margin: 0 16px;
        padding: 40px 24px;
    }
    .ln-form__heading {
        font-size: 28px;
    }
    .ln-form .quote-form__row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   7. GALLERY / CAROUSEL SECTION
   ========================================================================== */
.ln-gallery {
    background: var(--ln-light-bg);
    padding: var(--ln-section-pad) 0 calc(var(--ln-section-pad) + 20px);
    overflow: hidden;
}

.ln-gallery__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.ln-gallery__heading {
    font-family: var(--ln-font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--ln-primary);
    margin: 0 0 48px;
    text-align: center;
    line-height: 1.3;
}

/* Slick carousel overrides - large immersive images */
.ln-gallery__carousel .slick-slide {
    padding: 0 10px;
}

.ln-gallery__carousel .slick-slide img {
    border-radius: 12px;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ln-gallery__carousel .slick-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

/* Slick dots */
.ln-gallery__carousel .slick-dots {
    bottom: -40px;
    list-style: none;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 32px 0 0;
}

.ln-gallery__carousel .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.ln-gallery__carousel .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ln-border);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.ln-gallery__carousel .slick-dots li.slick-active button {
    background: var(--ln-secondary);
    transform: scale(1.3);
}

/* Slick arrows */
.ln-gallery__carousel .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 0;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.2s ease;
    backdrop-filter: blur(4px);
}

.ln-gallery__carousel:hover .slick-arrow {
    opacity: 1;
}

.ln-gallery__carousel .slick-prev {
    left: 24px;
}

.ln-gallery__carousel .slick-next {
    right: 24px;
}

.ln-gallery__carousel .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--ln-primary);
    border-right: 2px solid var(--ln-primary);
    position: absolute;
    top: 50%;
    left: 50%;
}

.ln-gallery__carousel .slick-prev::before {
    transform: translate(-30%, -50%) rotate(-135deg);
}

.ln-gallery__carousel .slick-next::before {
    transform: translate(-70%, -50%) rotate(45deg);
}

.ln-gallery__carousel .slick-arrow:hover {
    background: var(--ln-white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-gallery {
        padding: var(--ln-section-pad-tablet) 0 calc(var(--ln-section-pad-tablet) + 20px);
    }
    .ln-gallery__carousel .slick-slide img {
        height: 50vh;
        min-height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-gallery {
        padding: var(--ln-section-pad-mobile) 0 calc(var(--ln-section-pad-mobile) + 20px);
    }
    .ln-gallery__heading {
        font-size: 28px;
    }
    .ln-gallery__carousel .slick-slide img {
        height: 45vh;
        min-height: 300px;
        border-radius: 8px;
    }
    .ln-gallery__carousel .slick-arrow {
        display: none !important;
    }
}

/* ==========================================================================
   8. CLOSING SECTION - Curtain reveal with background image
   ========================================================================== */

/* Wrapper creates the curtain reveal: the closing section is sticky
   so it sits fixed while the previous section scrolls away above it */
.ln-closing-wrapper {
    height: calc(100vh - 130px);
}

.ln-closing {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(100vh - 130px);
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.ln-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.ln-closing__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.ln-closing__logo {
    display: block;
    margin: 0 auto 32px;
    width: 220px;
    height: auto;
}

.ln-closing__tagline {
    font-family: var(--ln-font-serif);
    font-size: 42px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 40px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.ln-closing .ln-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.ln-closing .ln-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Tablet */
@media (max-width: 1024px) {
    .ln-closing__tagline {
        font-size: 34px;
    }
    .ln-closing__logo {
        width: 180px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ln-closing__inner {
        padding: 0 24px;
    }
    .ln-closing__tagline {
        font-size: 28px;
    }
    .ln-closing__logo {
        width: 160px;
    }
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .ln-cta,
    .ln-gallery__carousel .slick-slide img,
    .ln-gallery__carousel .slick-slide .ln-gallery__placeholder,
    .ln-gallery__carousel .slick-arrow,
    .ln-gallery__carousel .slick-dots li button {
        transition: none;
    }
    .ln-cta:hover,
    .ln-gallery__carousel .slick-slide img:hover {
        transform: none;
    }
}
