﻿:root {
    --ht-navy: #1B2A4A;
    --ht-navy-light: #2A3F6B;
    --ht-coral: #E8734A;
    --ht-coral-dark: #D4613A;
    --ht-coral-hover: #D4623D;
    --ht-sand: #F5E6D0;
    --ht-sand-light: #FDF8F2;
    --ht-sand-mid: #EDD9BF;
    --ht-sky: #87CEEB;
    --ht-sky-pale: #E8F4FA;
    --ht-sea: #3A8FB7;
    --ht-sea-light: #d0eaf6;
    --ht-white: #FFFFFF;
    --ht-text: #2D2D2D;
    --ht-text-light: #5A6577;
    --ht-muted: #6b7a96;
    --ht-text-muted: #6b7a96;
    --ht-border: #dde3ee;
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--ht-text);
    background: var(--ht-white);
    line-height: 1.7;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ht-navy);
    line-height: 1.25;
}

/* ── Navigation ── */
.ht-nav {
    background: var(--ht-navy);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .ht-nav .navbar {
        padding: 0.9rem 0;
    }

    .ht-nav .brand-name {
        font-family: var(--font-display);
        color: var(--ht-white);
        font-size: 1.5rem;
        text-decoration: none;
        letter-spacing: 0.02em;
    }

        .ht-nav .brand-name img {
            max-height: 40px;
        }

    /* Hamburger toggler */
    .ht-nav .navbar-toggler {
        border: 1px solid rgba(255,255,255,0.2);
        padding: 0.35rem 0.6rem;
    }

    .ht-nav .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .ht-nav .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(232,115,74,0.4);
    }

    /* Mobile collapse area */
    .ht-nav .navbar-collapse {
        margin-top: 0.6rem;
    }

@media (min-width: 768px) {
    .ht-nav .navbar-collapse {
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .ht-nav .navbar-collapse {
        max-height: calc(100vh - 70px); /* adjust 70px to your navbar height */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Nav links (shared) */
.ht-nav .nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0.8rem;
}

    .ht-nav .nav-link:hover,
    .ht-nav .nav-link:focus {
        color: var(--ht-coral);
    }

/* ── Locations dropdown ── */
.ht-nav .dropdown-toggle::after {
    margin-left: 0.3rem;
    vertical-align: 0.15em;
    border-top-color: rgba(255,255,255,0.5);
}

.ht-nav .dropdown-toggle:hover::after {
    border-top-color: var(--ht-coral);
}

/* Desktop mega menu */
@media (min-width: 768px) {
    .ht-nav .navbar {
        position: relative;
    }

    .ht-nav .nav-item.dropdown {
        position: static;
    }

    .ht-nav .dropdown-menu.ht-locations-menu {
        right: 0;
        left: auto;
    }
}

.ht-locations-menu {
    background: var(--ht-navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem 0.8rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
    margin-top: 0.5rem;
    min-width: 280px;
    width: max-content;
    max-width: 680px;
}

/* CSS columns: counties flow naturally into balanced columns */
.dropdown-columns {
    column-count: 3;
    column-gap: 2rem;
}

/* Each county is a self-contained block that won't split across columns */
.ht-county-block {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    padding-bottom: 0.6rem;
}

    .ht-county-block .county-label {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--ht-coral);
        padding: 0.4rem 0.4rem 0.3rem;
        margin: 0;
        display: block;
    }

    .ht-county-block a {
        display: block;
        color: rgba(255,255,255,0.75);
        font-size: 0.90rem;
        font-weight: 400;
        padding: 0.22rem 0.4rem 0.22rem 0.9rem;
        text-decoration: none;
        border-radius: 6px;
        transition: background 0.15s, color 0.15s;
    }

        .ht-county-block a:hover {
            background: rgba(255,255,255,0.08);
            color: var(--ht-white);
        }

.ht-locations-menu .dropdown-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.4rem;
    padding-top: 0.7rem;
    text-align: center;
}

    .ht-locations-menu .dropdown-footer a {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--ht-sand);
    }

        .ht-locations-menu .dropdown-footer a:hover {
            color: var(--ht-coral);
        }

/* Responsive: tablet drops to 2 columns, mobile drops to 1 */
@media (max-width: 991px) {
    .dropdown-columns {
        column-count: 2;
    }

    .ht-locations-menu {
        max-width: 480px;
    }
}

@media (max-width: 767px) {
    .ht-locations-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0;
        min-width: 0;
        width: 100%;
        max-width: none;
    }

    .dropdown-columns {
        column-count: 2;
        column-gap: 1rem;
    }

    .ht-county-block a {
        font-size: 0.90rem;
        padding: 0.2rem 0.4rem 0.2rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .dropdown-columns {
        column-count: 1;
    }
}

/* ─────────────────────────── HERO ─────────────────────────── */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--ht-navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/huts.jpg');
    background-size: cover;
    background-position: center 65%;
    z-index: 0;
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, var(--ht-navy) 0%, var(--ht-navy) 28%, rgba(27,42,74,0.84) 52%, rgba(27,42,74,0.38) 100% );
    }

@media (max-width: 767px) {
    .hero-wrapper {
        min-height: 100svh;
    }

    .hero-bg::after {
        background: linear-gradient( to bottom, rgba(27,42,74,0.45) 0%, var(--ht-navy) 58%, var(--ht-navy) 100% );
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 0 3.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

    .hero-badge .pulse-dot {
        width: 8px;
        height: 8px;
        background: var(--ht-coral);
        border-radius: 50%;
        flex-shrink: 0;
        animation: pulse-dot 2.2s ease-in-out infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.65);
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5.75rem);
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1.25rem;
}

    .hero-title .coral {
        color: var(--ht-coral);
    }

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: rgba(255,255,255,0.8);
    max-width: 510px;
    line-height: 1.65;
    margin-bottom: 2.25rem;
    font-weight: 300;
}

.hero .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    line-height: 1.8;
}

.hero-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

    .hero-check-list li {
        padding: .35rem 0;
        color: rgba(255,255,255,0.9);
        font-size: 1.05rem;
    }

        .hero-check-list li i {
            color: var(--ht-coral);
            margin-right: .5rem;
        }

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary-coral {
    background: var(--ht-coral);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

    .btn-primary-coral:hover {
        background: var(--ht-coral-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,115,74,0.38);
    }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.48);
    border-radius: 50px;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, background 0.2s;
}

    .btn-outline-white:hover {
        color: #fff;
        border-color: #fff;
        background: rgba(255,255,255,0.1);
    }

/* hero stats strip */
.hero-stats {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.13);
    padding: 1.5rem 0;
}

.hero-stat {
    color: rgba(255,255,255,0.88);
    text-align: center;
    padding: 0.5rem 0.75rem;
}

    .hero-stat .num {
        font-family: 'Inter', sans-serif;
        font-size: 1.9rem;
        color: var(--ht-coral);
        display: block;
        line-height: 1.1;
    }

    .hero-stat .lbl {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        opacity: 0.62;
        display: block;
        margin-top: 0.15rem;
    }

/* ── Hero ── */
.hero {
    background: var(--ht-navy);
    color: var(--ht-white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Background image layer: right-aligned, full height */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    z-index: 1;
}

    /* Gradient fade: solid navy on the left, fading to transparent on the right */
    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to right, var(--ht-navy) 0%, var(--ht-navy) 28%, rgba(27, 42, 74, 0.92) 40%, rgba(27, 42, 74, 0.7) 55%, rgba(27, 42, 74, 0.35) 75%, rgba(27, 42, 74, 0.15) 100% );
        z-index: 2;
    }

    /* Colour tint to keep the image on-brand even where it shows through */
    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(165deg, rgba(27,42,74,0.3) 0%, rgba(58,143,183,0.15) 100%);
        z-index: 2;
    }

/* Wave divider at the bottom of the hero */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FFFFFF' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,45 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 4;
}

.hero-wave-home {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0; /* removes any gap below the SVG */
    z-index: 2; /* above the overlay, below nav */
}

    .hero-wave-home svg {
        display: block;
        width: 100%;
        height: 80px;
    }

/* Hero content sits above everything */
.hero > .container {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.35rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: var(--ht-sand);
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--ht-white);
    margin-bottom: 1rem;
}

.hero p.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ht-coral);
    display: block;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-highlights {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .hero-highlights li {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        font-size: 1.05rem;
        color: rgba(255,255,255,0.9);
        font-weight: 400;
        list-style: none;
    }

        .hero-highlights li i {
            color: var(--ht-coral);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

/* ── Hut illustration decorations ── */
.hut-row {
    position: absolute;
    bottom: 80px;
    right: 5%;
    display: flex;
    gap: 10px;
    opacity: 0.15;
}

.hut-shape {
    width: 40px;
    height: 50px;
    background: var(--ht-sand);
    border-radius: 4px 4px 0 0;
    position: relative;
}

    .hut-shape::before {
        content: '';
        position: absolute;
        top: -16px;
        left: -4px;
        width: 48px;
        height: 20px;
        background: var(--ht-coral);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }

    .hut-shape:nth-child(2) {
        background: var(--ht-sky);
    }

        .hut-shape:nth-child(2)::before {
            background: var(--ht-sand);
        }

    .hut-shape:nth-child(3)::before {
        background: var(--ht-sky);
    }

/* ── Wave dividers ── */
.wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

    .wave-divider svg {
        display: block;
        width: 100%;
        height: 60px;
    }

.wave-divider-sand svg path {
    fill: var(--ht-sand-light);
}

.wave-divider-white svg path {
    fill: var(--ht-white);
}

.wave-divider-navy svg path {
    fill: var(--ht-navy);
}

/* ── Page header (compact hero for content pages) ── */
.page-header {
    background: var(--ht-navy);
    color: var(--ht-white);
    padding: 3rem 0 2.5rem;
    position: relative;
}

    .page-header::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 50px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23FFFFFF' d='M0,25 C360,50 720,0 1080,25 C1260,38 1380,30 1440,28 L1440,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat bottom center;
        background-size: cover;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        color: var(--ht-white);
        margin-bottom: 0.4rem;
    }

    .page-header .page-meta {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.6);
    }

/* ── Content area ── */
.content-area {
    padding: 3.5rem 0 4.5rem;
}

/* ── Prose styles for legal / written content ── */
.prose {
    max-width: 780px;
}

    .prose h2 {
        font-size: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--ht-sand-mid);
    }

    .prose h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

    .prose p {
        margin-bottom: 1rem;
        color: var(--ht-text);
    }

    .prose ul, .prose ol {
        margin-bottom: 1rem;
        padding-left: 1.5rem;
        color: var(--ht-text);
    }

    .prose li {
        margin-bottom: 0.4rem;
    }

    .prose a {
        color: var(--ht-sea);
        text-decoration: underline;
        text-decoration-color: rgba(58,143,183,0.3);
        text-underline-offset: 2px;
        transition: text-decoration-color 0.2s;
    }

        .prose a:hover {
            color: var(--ht-coral);
            text-decoration-color: var(--ht-coral);
        }

    .prose strong {
        font-weight: 600;
        color: var(--ht-navy);
    }

    .prose blockquote {
        border-left: 3px solid var(--ht-coral);
        background: var(--ht-sand-light);
        margin: 1.5rem 0;
        padding: 1rem 1.5rem;
        border-radius: 0 10px 10px 0;
        font-size: 0.98rem;
        color: var(--ht-text-light);
    }

/* Terms body */
.terms-body h2 {
    font-size: 1.45rem;
    margin-top: 2.75rem;
    margin-bottom: 0.85rem;
    padding-top: 0.5rem;
}

    .terms-body h2:first-child {
        margin-top: 0;
    }

.terms-body h3 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    color: var(--navy-light);
}

.terms-body p {
    margin-bottom: 0.85rem;
    font-size: 0.975rem;
}
/* Changed marker */
.changed-badge {
    display: inline-block;
    background: var(--ht-coral);
    color: #fff;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* ── Sidebar navigation for content pages ── */
.content-nav {
    position: sticky;
    top: 80px;
}

.content-nav-title {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ht-coral);
    margin-bottom: 0.8rem;
}

.content-nav a {
    display: block;
    font-size: 0.9rem;
    color: var(--ht-text-light);
    text-decoration: none;
    padding: 0.35rem 0 0.35rem 0.9rem;
    border-left: 2px solid var(--ht-sand-mid);
    transition: color 0.2s, border-color 0.2s;
}

    .content-nav a:hover,
    .content-nav a.active {
        color: var(--ht-navy);
        border-color: var(--ht-coral);
    }

/* ── Sections ── */
.section-pad {
    padding: 4.5rem 0;
}

.section-sand {
    background: var(--ht-sand-light);
}

.section-navy {
    background: var(--ht-navy);
    color: var(--ht-white);
}

    .section-navy h2, .section-navy h3 {
        color: var(--ht-white);
    }

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ht-coral);
    margin-bottom: 0.6rem;
}

.section-navy .section-label {
    color: var(--ht-sand);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--ht-text-light);
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.section-navy .section-intro {
    color: rgba(255,255,255,0.75);
}

/* ── Area cards ── */
.area-card {
    background: var(--ht-white);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    border: 1px solid var(--ht-sand-mid);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

    .area-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(27,42,74,0.08);
    }

.area-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--ht-white);
}

.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.area-card p {
    color: var(--ht-text-light);
    font-size: 0.96rem;
    margin-bottom: 1rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.area-tag {
    background: var(--ht-sand-light);
    color: var(--ht-navy);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* ── Icon colours per area ── */
.icon-coral {
    background: var(--ht-coral);
}

.icon-sea {
    background: var(--ht-sea);
}

.icon-navy {
    background: var(--ht-navy);
}

.icon-sky {
    background: #5BA4C9;
}

/* ── Rental type cards ── */
.rental-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    transition: background 0.2s;
}

    .rental-card:hover {
        background: rgba(255,255,255,0.1);
    }

    .rental-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .rental-card p {
        color: rgba(255,255,255,0.75);
        font-size: 0.96rem;
    }

.rental-icon {
    font-size: 2rem;
    color: var(--ht-coral);
    margin-bottom: 1rem;
    display: block;
}

.rental-ideal {
    font-size: 0.85rem;
    color: var(--ht-sand);
    font-weight: 600;
    margin-top: 1rem;
}

/* ── Feature blocks ── */
.feature-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ht-coral);
    color: var(--ht-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.94rem;
    color: var(--ht-text-light);
    margin: 0;
}

/* ── Benefit cards ── */
.benefit-card {
    background: var(--ht-white);
    border-radius: 16px;
    border: 1px solid var(--ht-sand-mid);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(27,42,74,0.08);
    }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ht-white);
    margin-bottom: 1.2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--ht-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Section spacing ── */
.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: var(--ht-sand-light);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ht-coral);
    margin-bottom: .5rem;
}

/* ── Choose your plan ── */
.plan-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .25s ease, box-shadow .25s ease;
    position: relative;
}

    .plan-card:hover {
        border-color: var(--ht-sea);
        box-shadow: 0 8px 32px rgba(27,42,74,0.08);
    }

    .plan-card.plan-featured {
        border-color: var(--ht-coral);
        box-shadow: 0 8px 32px rgba(232,115,74,0.12);
    }

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ht-coral);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem 1.2rem;
    border-radius: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.plan-icon-coral {
    background: rgba(232,115,74,0.1);
    color: var(--ht-coral);
}

.plan-icon-sea {
    background: rgba(58,143,183,0.1);
    color: var(--ht-sea);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ht-navy);
    margin-bottom: .25rem;
}

.plan-subtitle {
    color: var(--ht-text-muted);
    font-size: .95rem;
    margin-bottom: 1.25rem;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ht-navy);
    line-height: 1.1;
}

.plan-price-label {
    font-size: .95rem;
    color: var(--ht-text-muted);
    font-weight: 400;
}

.plan-desc {
    color: var(--ht-text-muted);
    font-size: .92rem;
    margin-top: .35rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
}

    .plan-features li {
        padding: .4rem 0;
        font-size: .98rem;
        display: flex;
        align-items: flex-start;
        gap: .6rem;
    }

        .plan-features li i {
            font-size: .85rem;
            margin-top: .25rem;
            flex-shrink: 0;
        }

            .plan-features li i.bi-check-circle-fill {
                color: var(--ht-sea);
            }

            .plan-features li i.bi-dash {
                color: #ccc;
            }

        .plan-features li.feature-absent {
            color: var(--ht-text-muted);
        }

.plan-divider {
    border-top: 1px solid #eee;
    margin: .5rem 0 1rem;
}

.btn-coral {
    background: var(--ht-coral);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: .75rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: background .2s ease;
}

    .btn-coral:hover {
        background: var(--ht-coral-dark);
        color: #fff;
    }

.btn-outline-navy {
    background: transparent;
    color: var(--ht-navy);
    border: 2px solid var(--ht-navy);
    font-weight: 600;
    padding: .7rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    transition: background .2s ease, color .2s ease;
}

    .btn-outline-navy:hover {
        background: var(--ht-navy);
        color: #fff;
    }

/* ── Comparison table ── */
.comparison-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

    .comparison-table thead th {
        background: var(--ht-navy);
        color: #fff;
        font-family: var(--font-display);
        font-weight: 400;
        font-size: 1.05rem;
        padding: 1rem;
        border: none;
        vertical-align: middle;
    }

        .comparison-table thead th:first-child {
            text-align: left;
        }

        .comparison-table thead th:not(:first-child) {
            text-align: center;
        }

    .comparison-table tbody td {
        padding: .85rem 1rem;
        vertical-align: middle;
        border-bottom: 1px solid #eee;
        font-size: .95rem;
    }

        .comparison-table tbody td:first-child {
            font-weight: 500;
            color: var(--ht-navy);
        }

        .comparison-table tbody td:not(:first-child) {
            text-align: center;
        }

    .comparison-table tbody tr:last-child td {
        border-bottom: none;
    }

    .comparison-table .bi-check-circle-fill {
        color: var(--ht-sea);
        font-size: 1.1rem;
    }

    .comparison-table .bi-x-circle {
        color: #ccc;
        font-size: 1.1rem;
    }

/* ── Opportunity ── */
.stat-card {
    text-align: center;
    padding: 1.75rem 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--ht-coral);
    line-height: 1.1;
}

.stat-label {
    color: var(--ht-text-muted);
    font-size: .95rem;
    margin-top: .35rem;
}

/* ── Features grid ── */
.feature-block {
    padding: 1.75rem;
    background: #fff;
    border-radius: 12px;
    height: 100%;
    border: 1px solid #eee;
}

    .feature-block h4 {
        font-size: 1.15rem;
        margin-bottom: .5rem;
    }

    .feature-block p {
        color: var(--ht-text-muted);
        font-size: .95rem;
        margin-bottom: 0;
    }

    .feature-block .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        background: var(--ht-sea-light);
        color: var(--ht-sea);
    }

/* ── Steps ── */
.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

    .step-item .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 50%;
        background: var(--ht-coral);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-display);
        font-size: 1.3rem;
    }

    .step-item .step-content h4 {
        font-size: 1.15rem;
        margin-bottom: .25rem;
    }

    .step-item .step-content p {
        color: var(--ht-text-muted);
        font-size: .95rem;
        margin-bottom: 0;
    }

/* ── Pricing section ── */
.pricing-box {
    background: var(--ht-white);
    border: 2px solid var(--ht-sand-mid);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .pricing-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, var(--ht-coral), var(--ht-sea));
    }

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--ht-navy);
    line-height: 1.1;
}

    .pricing-amount span {
        font-size: 1.2rem;
        color: var(--ht-text-light);
        font-family: var(--font-body);
        font-weight: 400;
    }

.pricing-label {
    font-size: 1rem;
    color: var(--ht-text-light);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.96rem;
        color: var(--ht-text);
        display: flex;
        align-items: flex-start;
        gap: 0.7rem;
        border-bottom: 1px solid var(--ht-sand-light);
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--ht-sea);
            font-size: 1rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

.pricing-zero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ht-sand-light);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ht-navy);
    margin-bottom: 1.5rem;
}

    .pricing-zero i {
        color: var(--ht-coral);
    }

/* ── Step cards ── */
.step-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    transition: background 0.2s;
}

    .step-card:hover {
        background: rgba(255,255,255,0.1);
    }

    .step-card .step-number {
        font-family: var(--font-display);
        font-size: 2.8rem;
        color: var(--ht-coral);
        line-height: 1;
        margin-bottom: 0.8rem;
        display: block;
        opacity: 0.7;
    }

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Compliance feature ── */
.compliance-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.compliance-icon-wrap {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.compliance-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(58,143,183,0.1);
    color: var(--ht-sea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.compliance-item h5 {
    font-size: 1.05rem;
    margin-bottom: .2rem;
}

.compliance-item h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin-bottom: 0.25rem;
}

.compliance-item p {
    font-size: 0.94rem;
    color: var(--ht-text-light);
    margin: 0;
}

/* ── FAQ ── */
.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
    padding: 0 15px;
}

.faq-section .accordion-button {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--ht-navy);
    padding: 1.25rem 0;
    box-shadow: none;
    background: transparent;
}

    .faq-section .accordion-button:not(.collapsed) {
        color: var(--ht-coral);
    }

    .faq-section .accordion-button::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231B2A4A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }

.faq-section .accordion-body {
    padding: 0 0 1.25rem;
    color: var(--ht-text-muted);
    font-size: .98rem;
}

/* ── Horizontal scroll carousel ── */
.ht-carousel {
    position: relative;
}

.ht-carousel-nav {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-bottom: 0.75rem;
}

.ht-carousel-btn {
    background: var(--ht-white);
    border: 1px solid var(--ht-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ht-navy);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

    .ht-carousel-btn:hover {
        background: var(--ht-sand-light);
        border-color: var(--ht-coral);
        color: var(--ht-coral);
    }

.ht-carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--ht-sand-mid) transparent;
}

    .ht-carousel-track::-webkit-scrollbar {
        height: 4px;
    }

    .ht-carousel-track::-webkit-scrollbar-track {
        background: transparent;
    }

    .ht-carousel-track::-webkit-scrollbar-thumb {
        background: var(--ht-sand-mid);
        border-radius: 4px;
    }

    .ht-carousel-track > * {
        flex: 0 0 290px;
        scroll-snap-align: start;
        min-width: 0;
    }

/* ── Hut listing card (temporary pre-search carousel) ── */
.hut-card {
    background: var(--ht-white);
    border: 1px solid var(--ht-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hut-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(27,42,74,0.09);
        color: inherit;
    }

.hut-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: var(--ht-sand);
    display: block;
    flex-shrink: 0;
}

.hut-card-body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hut-card-type {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ht-sea);
    margin-bottom: 0.3rem;
}

.hut-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ht-navy);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.hut-card-area {
    font-size: 0.82rem;
    color: var(--ht-text-light);
    margin-bottom: 0.75rem;
}

.hut-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.hut-card-price {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ht-coral);
}

.hut-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ht-sea);
    white-space: nowrap;
}

/* ── Registration form ── */
.reg-section {
    background: linear-gradient(135deg, var(--ht-coral) 0%, var(--ht-coral-dark) 100%);
    color: var(--ht-white);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

    .reg-section h2 {
        color: var(--ht-white);
    }

    .reg-section p {
        color: rgba(255,255,255,0.9);
    }

    .reg-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
    }

    .reg-section::after {
        content: '';
        position: absolute;
        bottom: -70px;
        left: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
    }

.reg-form {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

    .reg-form .form-control {
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.15);
        color: var(--ht-white);
        border-radius: 12px;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
        font-family: var(--font-body);
    }

        .reg-form .form-control::placeholder {
            color: rgba(255,255,255,0.55);
        }

        .reg-form .form-control:focus {
            background: rgba(255,255,255,0.2);
            border-color: var(--ht-white);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
            color: var(--ht-white);
        }

    .reg-form .form-select {
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.15);
        color: var(--ht-white);
        border-radius: 12px;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
        font-family: var(--font-body);
    }

        .reg-form .form-select option {
            color: var(--ht-text);
            background: var(--ht-white);
        }

        .reg-form .form-select:focus {
            border-color: var(--ht-white);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
        }

.btn-signup {
    background: var(--ht-navy);
    color: var(--ht-white);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
}

    .btn-signup:hover {
        background: var(--ht-navy-light);
        transform: translateY(-1px);
    }

.reg-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.8rem;
}

/* ── CTA / newsletter ── */
.cta-section {
    background: linear-gradient(135deg, var(--ht-coral) 0%, var(--ht-coral-dark) 100%);
    color: var(--ht-white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section h2 {
        color: var(--ht-white);
    }

    .cta-section p {
        color: rgba(255,255,255,0.9);
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
    }

    .cta-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -30px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
    }

.btn-white {
    background: var(--ht-white);
    color: var(--ht-coral);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    font-size: 1.05rem;
}

    .btn-white:hover {
        background: var(--ht-sand);
        color: var(--ht-coral-dark);
        transform: translateY(-1px);
    }

.btn-navy-outline {
    background: transparent;
    color: var(--ht-white);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
    font-size: 1.05rem;
}

    .btn-navy-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.7);
        color: var(--ht-white);
    }

.signup-form {
    max-width: 500px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 1;
}

    .signup-form .form-control {
        border: 2px solid rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.15);
        color: var(--ht-white);
        border-radius: 12px;
        padding: 0.85rem 1.2rem;
        font-size: 1rem;
        font-family: var(--font-body);
    }

        .signup-form .form-control::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .signup-form .form-control:focus {
            background: rgba(255,255,255,0.2);
            border-color: var(--ht-white);
            box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
            color: var(--ht-white);
        }

.btn-signup {
    background: var(--ht-navy);
    color: var(--ht-white);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
}

    .btn-signup:hover {
        background: var(--ht-navy-light);
        transform: translateY(-1px);
    }

.signup-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.8rem;
}

/* ── Inline signup (in content) ── */
.inline-signup {
    background: var(--ht-sand-light);
    border: 2px solid var(--ht-sand-mid);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

    .inline-signup h3 {
        margin-bottom: 0.5rem;
    }

    .inline-signup p {
        color: var(--ht-text-light);
        margin-bottom: 1.5rem;
    }

    .inline-signup .form-control {
        border: 2px solid var(--ht-sand-mid);
        border-radius: 12px;
        padding: 0.85rem 1.2rem;
        font-family: var(--font-body);
    }

        .inline-signup .form-control:focus {
            border-color: var(--ht-coral);
            box-shadow: 0 0 0 3px rgba(232,115,74,0.12);
        }

.hp-field {
    display: none;
}

.btn-coral {
    background: var(--ht-coral);
    color: var(--ht-white);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s;
}

    .btn-coral:hover {
        background: var(--ht-coral-dark);
        color: var(--ht-white);
    }

/* ── Info grid ── */
.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

    .info-card i {
        font-size: 2rem;
        color: var(--ht-sea);
        margin-bottom: 1rem;
        display: block;
    }

    .info-card h4 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1.05rem;
        margin-bottom: 0.4rem;
    }

    .info-card p {
        font-size: 0.92rem;
        color: var(--ht-text-light);
        margin: 0;
    }

/* ── Things to do cards ── */
.ttd-card {
    background: var(--ht-white);
    border: 1px solid var(--ht-sand-mid);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .ttd-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(27,42,74,0.08);
    }

.ttd-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ttd-card-date {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    background: var(--ht-navy);
    color: var(--ht-white);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
}

.ttd-card-body {
    padding: 1.3rem 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .ttd-card-body h4 {
        font-family: var(--font-body);
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--ht-navy);
        margin: 0 0 0.3rem;
    }

    .ttd-card-body p {
        font-size: 0.9rem;
        color: var(--ht-text-light);
        margin: 0 0 0.8rem;
        flex: 1;
    }

    .ttd-card-body .ttd-address {
        font-size: 0.8rem;
        color: var(--ht-text-light);
        margin-bottom: 0.8rem;
    }

        .ttd-card-body .ttd-address i {
            color: var(--ht-sea);
            margin-right: 0.25rem;
            font-size: 0.75rem;
        }

.ttd-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ht-coral);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: auto;
}

    .ttd-card-link:hover {
        color: var(--ht-coral-dark);
    }

    .ttd-card-link i {
        font-size: 0.78rem;
        transition: transform 0.2s;
    }

.ttd-card:hover .ttd-card-link i {
    transform: translateX(3px);
}

.ttd-disclosure {
    font-size: 0.8rem;
    color: var(--ht-text-light);
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ht-sand-mid);
    text-align: center;
}

.ttd-more {
    text-align: center;
    margin-top: 2rem;
}

/* ─────────────────────────── FEATURE CARDS ─────────────────────────── */
.feature-card {
    background: #fff;
    border: 1px solid rgba(27,42,74,0.09);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

    .feature-card:hover {
        box-shadow: 0 14px 44px rgba(27,42,74,0.1);
        transform: translateY(-4px);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.fi-coral {
    background: rgba(232,115,74,0.12);
    color: var(--ht-coral);
}

.fi-sea {
    background: rgba(58,143,183,0.12);
    color: var(--ht-sea);
}

.fi-navy {
    background: rgba(27,42,74,0.1);
    color: var(--ht-navy);
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--ht-navy);
}

.feature-card p {
    color: #5a6070;
    font-size: 0.97rem;
    line-height: 1.65;
    margin: 0;
}

/* ─────────────────────────── BENEFITS LIST ─────────────────────────── */
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232,115,74,0.1);
    color: var(--ht-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}

.benefit-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--ht-navy);
}

.benefit-text span {
    font-size: 0.92rem;
    color: #5a6070;
    line-height: 1.55;
}
 
/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid var(--ht-sand-mid);
    padding: 1.3rem 0;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ht-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
}

    .faq-question i {
        transition: transform 0.25s;
        color: var(--ht-coral);
        flex-shrink: 0;
    }

    .faq-question.active i {
        transform: rotate(180deg);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--ht-text-light);
    font-size: 0.96rem;
}

    .faq-answer.open {
        max-height: 300px;
        padding-top: 0.8rem;
    }

/* ── Beach conditions strip ── */
.conditions-strip {
    background: var(--ht-white);
    border-bottom: 1px solid var(--ht-sand-mid);
    padding: 0.5rem 0;
}

.condition-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--ht-white);
    border: 1px solid var(--ht-sand-mid);
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}

.condition-card-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ht-white);
}

.condition-card-text {
    min-width: 0;
}

.condition-card-text h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ht-text-light);
    margin: 0 0 0.15rem;
}

.condition-card-text p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin: 0;
    line-height: 1.3;
}

.condition-card-text .condition-detail {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--ht-text-light);
    margin-top: 0.1rem;
}

/* Water quality badge */
.wq-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

    .wq-badge svg {
        display: block;
    }

.wq-badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wq-excellent .wq-badge-label {
    color: #1B8A5A;
}
.wq-excellent svg .water-quality-colour {
    stroke: #1B8A5A;
}
.wq-excellent svg .water-quality-drop {
    fill: #1B8A5A;
}

.wq-good .wq-badge-label {
    color: #3A8FB7;
}
.wq-good svg .water-quality-colour {
    stroke: #3A8FB7;
}
.wq-good svg .water-quality-drop {
    fill: #3A8FB7;
}

.wq-sufficient .wq-badge-label {
    color: #D4944A;
}
.wq-sufficient svg .water-quality-colour {
    stroke: #D4944A;
}
.wq-sufficient svg .water-quality-drop {
    fill: #D4944A;
}

.wq-poor .wq-badge-label {
    color: #C0392B;
}
.wq-poor svg .water-quality-colour {
    stroke: #C0392B;
}
.wq-poor svg .water-quality-drop {
    fill: #C0392B;
}

/* Tide mini timeline */
.tide-events {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.tide-event {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--ht-text-light);
}

    .tide-event i {
        font-size: 0.7rem;
    }

    .tide-event .tide-high i {
        color: var(--ht-sea);
    }

    .tide-event .tide-low i {
        color: var(--ht-coral);
    }

    .tide-event strong {
        color: var(--ht-navy);
        font-weight: 600;
    }

.conditions-attr {
    font-size: 0.72rem;
    color: var(--ht-text-light);
    margin-top: 0.8rem;
    text-align: center;
}

/* ── Nearby locations ── */
.nearby-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--ht-white);
    border: 1px solid var(--ht-sand-mid);
    border-radius: 12px;
    text-decoration: none;
    color: var(--ht-text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

    .nearby-card:hover {
        border-color: var(--ht-coral);
        box-shadow: 0 6px 24px rgba(27,42,74,0.06);
        transform: translateY(-2px);
        color: var(--ht-text);
    }

.nearby-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--ht-sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ht-sea);
    transition: background 0.2s, color 0.2s;
}

.nearby-card:hover .nearby-card-icon {
    background: var(--ht-coral);
    color: var(--ht-white);
}

.nearby-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin: 0 0 0.1rem;
}

.nearby-card p {
    font-size: 0.82rem;
    color: var(--ht-text-light);
    margin: 0;
}

.nearby-card .nearby-distance {
    font-size: 0.75rem;
    color: var(--ht-coral);
    font-weight: 600;
}

/* ── Jump nav (county shortcuts) ── */
.jump-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.2rem;
}

    .jump-nav a {
        display: inline-block;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 50px;
        padding: 0.35rem 1.1rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

        .jump-nav a:hover {
            background: var(--ht-coral);
            border-color: var(--ht-coral);
            color: var(--ht-white);
        }

/* ── County group ── */
.county-group {
    margin-bottom: 3.5rem;
    scroll-margin-top: 80px;
}

    .county-group:last-child {
        margin-bottom: 0;
    }

.county-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--ht-sand-mid);
}

.county-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ht-navy);
    color: var(--ht-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.county-header h2 {
    font-size: 1.6rem;
    margin: 0;
}

.county-header p {
    font-size: 0.92rem;
    color: var(--ht-text-light);
    margin: 0.15rem 0 0;
}

.county-header .county-link {
    margin-left: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ht-sea);
    text-decoration: none;
    white-space: nowrap;
    display: none;
}

    .county-header .county-link:hover {
        color: var(--ht-coral);
    }

@media (min-width: 768px) {
    .county-header .county-link {
        display: inline;
    }
}

/* ── Town list cards ── */
.town-list-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 1.3rem;
    background: var(--ht-white);
    border: 1px solid var(--ht-sand-mid);
    border-radius: 14px;
    text-decoration: none;
    color: var(--ht-text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    height: 100%;
}

    .town-list-card:hover {
        border-color: var(--ht-coral);
        box-shadow: 0 8px 28px rgba(27,42,74,0.07);
        transform: translateY(-3px);
        color: var(--ht-text);
    }

.town-list-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.town-list-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin: 0 0 0.15rem;
}

.town-list-card p {
    font-size: 0.88rem;
    color: var(--ht-text-light);
    margin: 0 0 0.3rem;
    line-height: 1.45;
}

.town-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.town-list-tag {
    font-size: 0.72rem;
    font-weight: 600;
    background: var(--ht-sand-light);
    color: var(--ht-navy);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
}

.town-list-arrow {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--ht-sand-mid);
    font-size: 1.1rem;
    transition: color 0.2s, transform 0.2s;
}

.town-list-card:hover .town-list-arrow {
    color: var(--ht-coral);
    transform: translateX(3px);
}

/* ── Town cards (the main feature) ── */
.town-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ht-white);
    height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .town-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(27,42,74,0.18);
        color: var(--ht-white);
    }

/* Background image fills the card */
.town-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.town-card:hover .town-card-img {
    transform: scale(1.05);
}

/* Gradient overlay: transparent at top, dark navy at bottom */
.town-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(27, 42, 74, 0) 0%, rgba(27, 42, 74, 0.1) 40%, rgba(27, 42, 74, 0.55) 65%, rgba(27, 42, 74, 0.88) 100% );
    z-index: 1;
}

/* Content sits at the bottom */
.town-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem 2rem;
    z-index: 2;
}

    .town-card-body h3 {
        font-size: 1.6rem;
        color: var(--ht-white);
        margin-bottom: 0.3rem;
    }

    .town-card-body p {
        color: rgba(255,255,255,0.8);
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        max-width: 400px;
    }

.town-card-meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.town-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.25rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

    .town-card-tag i {
        font-size: 0.72rem;
    }

.town-card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ht-white);
    font-size: 1rem;
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
}

.town-card:hover .town-card-arrow {
    background: var(--ht-coral);
    border-color: var(--ht-coral);
    transform: translateX(3px);
}

/* ── Breadcrumb ── */
.breadcrumb-wrap {
    background: var(--ht-sand-light);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--ht-sand-mid);
}

    .breadcrumb-wrap a {
        color: var(--ht-sea);
        text-decoration: none;
        font-size: 0.88rem;
    }

        .breadcrumb-wrap a:hover {
            text-decoration: underline;
        }

    .breadcrumb-wrap span {
        color: var(--ht-text-light);
        font-size: 0.88rem;
    }

/* ── Founder profile ── */
.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--ht-sand-mid);
}

.founder-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ht-navy) 0%, var(--ht-sea) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ht-white);
    font-family: var(--font-display);
    font-size: 3.5rem;
    border: 4px solid var(--ht-sand-mid);
    flex-shrink: 0;
}

/* ── Value cards ── */
.value-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    height: 100%;
    transition: background 0.2s;
}

    .value-card:hover {
        background: rgba(255,255,255,0.1);
    }

.value-icon {
    font-size: 1.8rem;
    color: var(--ht-coral);
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin: 0;
}

/* ── Story quote ── */
.story-quote {
    border-left: 3px solid var(--ht-coral);
    padding: 1.2rem 0 1.2rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ht-navy);
    line-height: 1.5;
    font-style: italic;
}

/* ─────────────────────────── OWNER STRIP ─────────────────────────── */
.owner-strip {
    background: var(--ht-navy);
    padding: 4.5rem 0;
}

    .owner-strip h2 {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.75rem, 3.5vw, 2.75rem);
        color: #fff;
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .owner-strip .lead-copy {
        color: rgba(255,255,255,0.72);
        font-size: 1.05rem;
        line-height: 1.65;
        max-width: 490px;
    }

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

    .check-list li {
        color: rgba(255,255,255,0.75);
        font-size: 0.95rem;
        margin-bottom: 0.65rem;
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
    }

        .check-list li i {
            color: var(--ht-coral);
            margin-top: 2px;
            flex-shrink: 0;
        }

/* ── Contact info cards ── */
.contact-info-card {
    background: var(--ht-sand-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: transform 0.2s;
}

    .contact-info-card:hover {
        transform: translateY(-3px);
    }

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ht-white);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.contact-info-card p {
    color: var(--ht-text-light);
    font-size: 0.94rem;
    margin: 0;
}

.contact-info-card a {
    font-weight: 600;
}

/* ── Contact form ── */
.contact-form-wrap {
    background: var(--ht-white);
    border: 1px solid var(--ht-sand-mid);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(27,42,74,0.04);
}

    .contact-form-wrap h2 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .contact-form-wrap .form-intro {
        color: var(--ht-text-light);
        font-size: 0.96rem;
        margin-bottom: 1.8rem;
    }

    .contact-form-wrap label {
        font-size: 0.88rem;
        font-weight: 600;
        color: var(--ht-navy);
        margin-bottom: 0.3rem;
    }

    .contact-form-wrap .form-control,
    .contact-form-wrap .form-select {
        border: 2px solid var(--ht-sand-mid);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.98rem;
        font-family: var(--font-body);
        color: var(--ht-text);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .contact-form-wrap .form-control:focus,
        .contact-form-wrap .form-select:focus {
            border-color: var(--ht-coral);
            box-shadow: 0 0 0 3px rgba(232,115,74,0.12);
        }

        .contact-form-wrap .form-control::placeholder {
            color: #A0A8B4;
        }

    .contact-form-wrap textarea.form-control {
        min-height: 140px;
        resize: vertical;
    }

.btn-submit {
    background: var(--ht-coral);
    color: var(--ht-white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 2.4rem;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-submit:hover {
        background: var(--ht-coral-dark);
        transform: translateY(-1px);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

.form-msg {
    display: none;
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-size: 0.94rem;
    font-weight: 500;
}

.form-msg-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.form-msg-error {
    margin-top: 0;
    margin-bottom: 1rem;
    background: #FFF3E0;
    color: #BF360C;
    border: 1px solid #FFE0B2;
}

/* ── Page shell ────────────────────────────────────────────── */
.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Left panel ─────────────────────────────────────────────── */
.panel-form {
    background: #ffffff;
    padding: 2.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

    .panel-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--ht-coral) 0%, var(--ht-sea) 100%);
    }

.form-inner {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

/* Headings */
.form-heading {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--ht-navy);
    line-height: 1.15;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.form-subtext {
    font-size: 0.925rem;
    color: var(--ht-muted);
    margin-bottom: 1.75rem;
}

    .form-subtext a {
        color: var(--ht-coral);
        font-weight: 600;
        text-decoration: none;
    }

        .form-subtext a:hover {
            text-decoration: underline;
        }

/* Form fields */
.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ht-navy);
    margin-bottom: 0.3rem;
}

.form-control {
    border: 1.5px solid var(--ht-border);
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ht-text);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    background: #fff;
}

    .form-control:focus {
        border-color: var(--ht-sea);
        box-shadow: 0 0 0 3px rgba(58, 143, 183, 0.14);
        outline: none;
    }

    .form-control.is-invalid {
        border-color: #dc3545;
        box-shadow: none;
    }

        .form-control.is-invalid:focus {
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.14);
        }

    .form-control.is-valid {
        border-color: #198754;
        box-shadow: none;
    }

.invalid-feedback {
    font-size: 0.82rem;
}

/* Password toggle wrapper */
.password-group {
    position: relative;
}

    .password-group .form-control {
        padding-right: 2.8rem;
    }

.btn-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--ht-muted);
    cursor: pointer;
    padding: 0.2rem;
    line-height: 1;
    font-size: 1.05rem;
    transition: color 0.15s;
}

    .btn-password-toggle:hover,
    .btn-password-toggle:focus-visible {
        color: var(--ht-navy);
        outline: none;
    }

    .btn-password-toggle:focus-visible {
        box-shadow: 0 0 0 2px var(--ht-sea);
        border-radius: 4px;
    }

/* Checkboxes */
.form-check {
    padding-left: 1.65rem;
}

.form-check-input {
    width: 1.05rem;
    height: 1.05rem;
    margin-left: -1.65rem;
    margin-top: 0.18rem;
    border: 1.5px solid var(--ht-border);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

    .form-check-input:checked {
        background-color: var(--ht-navy);
        border-color: var(--ht-navy);
    }

    .form-check-input:focus {
        border-color: var(--ht-sea);
        box-shadow: 0 0 0 3px rgba(58, 143, 183, 0.14);
    }

.form-check-label {
    font-size: 0.875rem;
    color: var(--ht-text);
    cursor: pointer;
    line-height: 1.45;
}

    .form-check-label a {
        color: var(--ht-coral);
        font-weight: 600;
        text-decoration: none;
    }

        .form-check-label a:hover {
            text-decoration: underline;
        }

.no-spam-note {
    font-size: 0.78rem;
    color: var(--ht-muted);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding-left: 1.65rem;
}

/* Submit button */
.btn-register {
    background: var(--ht-coral);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
    letter-spacing: 0.01em;
}

    .btn-register:hover {
        background: var(--ht-coral-dark);
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(232, 115, 74, 0.32);
    }

    .btn-register:active {
        transform: translateY(0);
        box-shadow: none;
    }

    .btn-register:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(232, 115, 74, 0.4);
    }

/* Help & copyright strip */
.form-footer {
    margin-top: 2rem;
    text-align: center;
}

.help-link {
    font-size: 0.85rem;
    color: var(--ht-muted);
}

    .help-link a {
        color: var(--ht-coral);
        font-weight: 600;
        text-decoration: none;
    }

        .help-link a:hover {
            text-decoration: underline;
        }

.copyright {
    font-size: 0.78rem;
    color: var(--ht-muted);
    margin-top: 0.6rem;
}

/* ── Right panel ────────────────────────────────────────────── */
.panel-benefits {
    background: var(--ht-navy);
    color: #fff;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Decorative wave */
    .panel-benefits::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 20% 80%, rgba(58, 143, 183, 0.22) 0%, transparent 60%), radial-gradient(ellipse at 85% 10%, rgba(232, 115, 74, 0.14) 0%, transparent 55%);
        pointer-events: none;
    }

/* Wave SVG */
.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.07;
    pointer-events: none;
}

.dot-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    opacity: 0.06;
    background-image: radial-gradient(circle, #ffffff 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}

.benefits-inner {
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.benefits-kicker {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ht-coral);
    margin-bottom: 0.75rem;
}

.benefits-heading {
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.benefits-intro {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    line-height: 1.55;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}

    .benefit-item:hover {
        background: rgba(255,255,255,0.09);
    }

.benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

    .benefit-icon.coral {
        background: rgba(232, 115, 74, 0.22);
        color: #f59b78;
    }

    .benefit-icon.sea {
        background: rgba(58, 143, 183, 0.22);
        color: #7ec7e8;
    }

    .benefit-icon.sand {
        background: rgba(245, 230, 208, 0.12);
        color: #f5dfc0;
    }

    .benefit-icon.teal {
        background: rgba(56, 189, 169, 0.18);
        color: #6edfd2;
    }

    .benefit-icon.gold {
        background: rgba(213, 174, 95, 0.2);
        color: #e6c86a;
    }

    .benefit-icon.white {
        background: rgba(255, 255, 255, 0.1);
        color: #e0e8f0;
    }

.benefit-body {
    flex: 1;
}

.benefit-title {
    font-size: 0.915rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.18rem;
    line-height: 1.3;
}

.benefit-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.45;
    margin: 0;
}

.benefit-item.owner-cta {
    background: rgba(232, 115, 74, 0.12);
    border-color: rgba(232, 115, 74, 0.28);
    margin-top: 0.25rem;
}

    .benefit-item.owner-cta:hover {
        background: rgba(232, 115, 74, 0.18);
    }

/* ── Desktop 50/50 layout ──────────────────────────────────── */
@media (min-width: 992px) {
    .page-shell {
        flex-direction: row;
    }

    .panel-form {
        width: 50%;
        flex-shrink: 0;
        padding: 3rem 3.5rem;
        min-height: 100vh;
    }

    .panel-benefits {
        width: 50%;
        flex-shrink: 0;
        min-height: 100vh;
        position: sticky;
        top: 0;
        align-self: flex-start;
        height: 100vh;
    }
}

@media (min-width: 1280px) {
    .panel-form {
        padding: 3.5rem 5rem;
    }
}

/* ── Divider ─────────────────────────────────────────────── */
.field-divider {
    height: 1px;
    background: var(--ht-border);
    margin: 1.25rem 0;
}

/* Smooth reveal */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-inner {
    animation: fadeUp 0.5s ease both;
}

.benefits-inner {
    animation: fadeUp 0.6s 0.1s ease both;
}

/* ── Image gallery ── */
.ht-gallery {
    margin-bottom: 2rem;
}

.ht-gallery-main {
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}

    .ht-gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .ht-gallery-main:hover img {
        transform: scale(1.03);
    }

.ht-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 420px;
}

.ht-gallery-thumb {
    flex: 1;
    overflow: hidden;
    cursor: pointer;
}

    .ht-gallery-thumb:first-child {
        border-radius: 0 12px 0 0;
    }

    .ht-gallery-thumb:last-child {
        border-radius: 0 0 12px 0;
    }

    .ht-gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .ht-gallery-thumb:hover img {
        transform: scale(1.05);
    }

.ht-gallery-main--full {
    border-radius: 12px;
}

.ht-gallery-side--single .ht-gallery-thumb {
    border-radius: 0 12px 12px 0;
}

@media (max-width: 767.98px) {
    .ht-gallery-main {
        border-radius: 12px;
        height: 280px;
    }

    .ht-gallery-side {
        flex-direction: row;
        height: 140px;
    }

    .ht-gallery-thumb:first-child {
        border-radius: 12px 0 0 12px;
    }

    .ht-gallery-thumb:last-child {
        border-radius: 0 12px 12px 0;
    }
}

/* ── Hut header ── */
.ht-hut-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.ht-hut-location {
    color: var(--ht-mid-grey);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ht-hut-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--ht-sand-light);
    border: 1px solid rgba(27,42,74,0.1);
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ht-navy);
}

.ht-summary {
    font-size: 1.1rem;
    color: var(--ht-dark-grey);
    line-height: 1.6;
    margin: 1rem 0;
    border-left: 3px solid var(--ht-coral);
    padding-left: 1rem;
}

/* ── Content sections ── */
.ht-section-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ht-sand);
}

/* ── Description ── */
.ht-description {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ht-dark-grey);
}

/* ── Nearby features ── */
.ht-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.ht-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.85rem;
    background: var(--ht-sand-light);
    border-radius: 8px;
    font-size: 0.925rem;
    font-weight: 500;
}

.ht-feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-white);
    border-radius: 8px;
    color: var(--ht-sea);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.ht-feature-distance {
    font-weight: 400;
    color: var(--ht-mid-grey);
    font-size: 0.85rem;
}

/* ── Map ── */
.ht-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(27,42,74,0.1);
    height: 300px;
}

#hut-map {
    width: 100%;
    height: 100%;
}

/* ── Booking sidebar ── */
.ht-booking-card {
    background: var(--ht-white);
    border: 1px solid rgba(27,42,74,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(27,42,74,0.08);
    position: sticky;
    top: 1.5rem;
}

.ht-price-from {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--ht-navy);
    line-height: 1.2;
}

.ht-price-period {
    font-size: 0.9rem;
    color: var(--ht-mid-grey);
    font-weight: 400;
}

.ht-book-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--ht-coral);
    color: var(--ht-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    cursor: pointer;
}

    .ht-book-btn:hover {
        background: var(--ht-coral-hover);
        color: var(--ht-white);
        transform: translateY(-1px);
    }

    .ht-book-btn i {
        margin-right: 0.4rem;
    }

.ht-book-note {
    font-size: 0.825rem;
    color: var(--ht-mid-grey);
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.ht-council-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    background: var(--ht-sand-light);
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.ht-council-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--ht-white);
    padding: 4px;
}

.ht-council-label {
    font-size: 0.8rem;
    color: var(--ht-mid-grey);
    font-weight: 500;
    line-height: 1.2;
}

.ht-council-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ht-navy);
    line-height: 1.3;
}

.ht-occupancy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(27,42,74,0.08);
    font-size: 0.925rem;
    color: var(--ht-dark-grey);
}

    .ht-occupancy i {
        color: var(--ht-sea);
        font-size: 1.1rem;
    }

/* ── Dividers ── */
.ht-divider {
    border: none;
    border-top: 1px solid rgba(27,42,74,0.08);
    margin: 1.25rem 0;
}

/* ── Lightbox ── */
.ht-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

    .ht-lightbox.active {
        display: flex;
    }

    .ht-lightbox img {
        max-width: 90vw;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 4px;
    }

.ht-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

    .ht-lightbox-close:hover {
        opacity: 1;
    }

.ht-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

    .ht-lightbox-nav:hover {
        background: rgba(255,255,255,0.3);
    }

.ht-lightbox-prev {
    left: 1.25rem;
}

.ht-lightbox-next {
    right: 1.25rem;
}

.ht-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ── Hero ───────────────────────────────────── */
.error-hero {
    background-color: var(--ht-navy);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

    .error-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 60% at 85% 15%, rgba(58,143,183,0.13) 0%, transparent 70%), radial-gradient(ellipse 45% 45% at 10% 85%, rgba(232,115,74,0.09) 0%, transparent 70%);
        pointer-events: none;
    }

.error-ghost-code {
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 16rem);
    line-height: 1;
    color: rgba(232,115,74,0.07);
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.error-hero-content {
    position: relative;
    z-index: 2;
}

.error-label {
    display: inline-block;
    background: rgba(232,115,74,0.18);
    color: var(--ht-coral);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.error-hero h1 {
    font-family: var(--font-display);
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.error-lead {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 2rem;
}

.error-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.error-illustration {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

    .error-illustration svg {
        max-width: 420px;
        width: 100%;
        display: block;
        margin: 0 auto;
    }

.wave-into-sand {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: -1px;
}

.btn-outline-sand {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

    .btn-outline-sand:hover {
        background-color: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.6);
        color: #fff;
    }

/* ── Locations section ───────────────────────── */
.locations-section {
    background-color: var(--ht-sand);
    padding: 4rem 0 5rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ht-coral);
    margin-bottom: 0.5rem;
}

.locations-section h2 {
    font-family: var(--font-display);
    color: var(--ht-navy);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 0.4rem;
}

.section-sub {
    color: #5c6e82;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.loc-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--ht-navy);
    border: 1px solid rgba(27,42,74,0.09);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
}

    .loc-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(27,42,74,0.13);
        color: var(--ht-navy);
        text-decoration: none;
    }

.loc-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(232,115,74,0.1);
    color: var(--ht-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.loc-card-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

    .loc-card-text .region {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: #8fa0b4;
        font-weight: 600;
        display: block;
        margin-bottom: 0.1rem;
    }

    .loc-card-text .loc-name {
        font-weight: 700;
        font-size: 0.92rem;
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.loc-card-arrow {
    color: rgba(232,115,74,0.6);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.loc-card-all {
    border-style: dashed;
    border-color: rgba(232,115,74,0.4);
    background: rgba(232,115,74,0.04);
}

    .loc-card-all .loc-name {
        color: var(--ht-coral);
    }

    .loc-card-all .loc-card-icon {
        background: rgba(232,115,74,0.08);
    }

/* ── Help panel ──────────────────────────────── */
.help-panel {
    background: var(--ht-navy);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    height: 100%;
}

    .help-panel h3 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        color: #fff;
    }

    .help-panel p {
        color: rgba(255,255,255,0.6);
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

.help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    transition: color 0.15s;
}

    .help-link:last-of-type {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .help-link:hover {
        color: var(--ht-coral);
        text-decoration: none;
    }

    .help-link i.icon {
        width: 18px;
        text-align: center;
        color: var(--ht-coral);
        flex-shrink: 0;
    }

    .help-link i.arrow {
        margin-left: auto;
        color: rgba(255,255,255,0.22);
        font-size: 0.8rem;
    }

.help-contact {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .help-contact p {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.4);
        margin-bottom: 0.4rem;
    }

    .help-contact a {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        text-decoration: none;
    }

        .help-contact a:hover {
            color: var(--ht-coral);
        }

/* ── Footer ── */
.ht-footer {
    background: var(--ht-navy);
    color: rgba(255,255,255,0.65);
    padding: 3rem 0 1.5rem;
    font-size: 0.9rem;
}

    .ht-footer a {
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: color 0.2s;
    }

        .ht-footer a:hover {
            color: var(--ht-coral);
        }

    .ht-footer h5 {
        font-family: var(--font-body);
        color: var(--ht-white);
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

.footer-brand {
    font-family: var(--font-display);
    color: var(--ht-white);
    font-size: 1.5rem;
}

    .footer-brand img {
        max-height: 40px;
    }

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.42);
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-social {
    margin-top: 1.25rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(255,255,255,0.08);
        color: rgba(255,255,255,0.65);
        font-size: 0.95rem;
        text-decoration: none;
        margin-right: 0.4rem;
        transition: background 0.2s, color 0.2s;
    }

        .footer-social a:hover {
            background: var(--ht-coral);
            color: #fff;
        }

.footer-heading {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: rgba(255,255,255,0.62);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--ht-coral);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    margin-top: 3rem;
    font-size: 0.8rem;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .section-pad {
        padding: 3rem 0;
    }

    .hut-row {
        display: none;
    }

    .inline-signup {
        padding: 1.8rem;
    }

    .founder-photo, .founder-photo-placeholder {
        width: 140px;
        height: 140px;
        font-size: 2.5rem;
        margin: 0 auto 1.5rem;
    }
}

/* -- UTILITY -- */
.text-coral {
    color: var(--ht-coral) !important;
}

.bg-sand {
    background: var(--ht-sand);
}