﻿:root {
    --ht-navy: #1B2A4A;
    --ht-navy-light: #2A3F6B;
    --ht-coral: #E8734A;
    --ht-coral-dark: #D4613A;
    --ht-sand: #F5E6D0;
    --ht-sand-light: #FDF8F2;
    --ht-sand-mid: #EDD9BF;
    --ht-sky: #87CEEB;
    --ht-sky-pale: #E8F4FA;
    --ht-sea: #3A8FB7;
    --ht-white: #FFFFFF;
    --ht-text: #2D2D2D;
    --ht-text-light: #5A6577;
    --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;
    }
}

/* 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.88rem;
        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.85rem;
        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-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 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-top: 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);
    }

/* ── 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;
}

/* ── 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-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-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;
}

/* ── 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);
}

.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 {
    background: #FFF3E0;
    color: #BF360C;
    border: 1px solid #FFE0B2;
}

/* ── 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);
}