/* ═══════════════════════════════════════════════════════════════════
   Fieldroot Retreat — Main Stylesheet
   A luxury glamping retreat at Barmby Moor, near York, East Yorkshire
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────────────── */
:root {
    /* Colour Palette */
    --color-forest: #2F5848;
    --color-forest-dark: #244A3A;
    --color-sage: #588157;
    --color-sage-light: #A3B18A;
    --color-cream: #DAD7CD;
    --color-cream-light: #F2EFEA;
    --color-charcoal: #2B2D2B;
    --color-terracotta: #A67564;
    --color-terracotta-dark: #8F6354;
    --color-taupe: #CEC2B2;
    --color-white: #FAFAF8;

    /* Functional Colours */
    --color-text: #111111;
    --color-text-light: #2a2a2a;
    --color-text-muted: #4a4a4a;
    --color-bg: var(--color-cream-light);
    --color-bg-alt: var(--color-cream);
    --color-primary: var(--color-forest);
    --color-accent: var(--color-terracotta);
    --color-border: rgba(47, 88, 72, 0.12);
    --color-border-light: rgba(47, 88, 72, 0.06);
    --color-overlay: rgba(0, 0, 0, 0.4);
    --color-overlay-light: rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;

    /* Spacing (8px grid) */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3.5rem;
    --space-4xl: 5rem;
    --space-section: clamp(3rem, 6vw, 4.5rem);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.3s;
    --duration-slow: 0.6s;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 8px rgba(0,0,0,0.04), 0 16px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 8px 16px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.12);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Cookie Consent overrides */
    --cookie-bg: var(--color-charcoal);
    --cookie-text: var(--color-cream);
    --cookie-accent: var(--color-sage);
    --cookie-btn-accept-bg: var(--color-forest);
    --cookie-btn-accept-text: var(--color-white);
    --cookie-btn-reject-border: rgba(255,255,255,0.2);
    --cookie-link: var(--color-sage-light);
    --cookie-radius: var(--radius-md);
}


/* ─── Accessibility ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    padding: 0.75rem 1.5rem;
    background: var(--color-forest);
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-decoration: none;
}

.skip-link:focus {
    left: 1rem;
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--color-forest);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-forest);
    outline-offset: 2px;
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--duration-fast) ease;
}

a:hover {
    color: var(--color-accent);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}


/* ─── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -0.01em;
    line-height: 1.1;
    font-weight: 800;
}

h2 {
    font-size: clamp(2.125rem, 3.5vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    font-weight: 700;
}

.subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: var(--space-sm);
}

.lead {
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 640px;
}

blockquote {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.5;
    color: var(--color-forest);
    position: relative;
    padding-left: var(--space-lg);
    border-left: 2px solid var(--color-sage-light);
}


/* ─── Layout ─────────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-section) 0;
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--dark {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--color-white);
}

.section--dark .subtitle {
    color: var(--color-sage-light);
}

.section--dark .lead {
    color: var(--color-taupe);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__header .subtitle {
    margin-bottom: var(--space-xs);
}

.section__header h2 {
    margin-bottom: var(--space-md);
}


/* ─── Navigation ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.2rem 0;
    background: none;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.55) 30%,
        rgba(0, 0, 0, 0.3) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: -1;
}

.nav--scrolled::before {
    display: none;
}

.nav--scrolled {
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 4px 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    min-height: 60px;
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 101;
    position: relative;
}

/* White logo — visible by default on dark hero */
.nav__logo-white {
    height: 252px;
    width: auto;
    margin-top: -15px;
    margin-bottom: -83px;
    position: relative;
    z-index: 101;
    transition: opacity var(--duration-normal) ease;
}

/* Dark logo — hidden by default, shown on scroll */
.nav__logo-dark {
    height: 45px;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

/* On scroll: hide white, show dark fitted in bar */
.nav--scrolled .nav__logo-white {
    height: 50px;
    margin: 0;
}

.nav--scrolled .nav__logo-dark {
    opacity: 0;
}

.nav__logo-text {
    display: none;
}

/* ─── Logo scales down on small screens so it does not crash into the
       hero strap-line just below the nav. The default size (252px tall,
       extending ~83px below the bar) is gorgeous on desktop but eats
       the page-header subtitle on phones. */
@media (max-width: 1024px) {
    .nav__logo-white {
        height: 180px;
        margin-top: -10px;
        margin-bottom: -55px;
    }
}
@media (max-width: 860px) {
    .nav__logo-white {
        height: 140px;
        margin-top: -8px;
        margin-bottom: -38px;
    }
}
@media (max-width: 640px) {
    .nav__logo-white {
        height: 100px;
        margin-top: -4px;
        margin-bottom: -22px;
    }
    .nav--scrolled .nav__logo-white {
        height: 42px;
    }
}
@media (max-width: 420px) {
    .nav__logo-white {
        height: 80px;
        margin-top: -2px;
        margin-bottom: -14px;
    }
    .nav--scrolled .nav__logo-white {
        height: 38px;
    }
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.79rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav--scrolled .nav__link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

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

.nav--scrolled .nav__link:hover {
    color: #fff;
}

/* Nav Dropdowns */
.nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__dropdown > .nav__link::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    position: static;
    background: none;
    transition: none;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 160px;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-fast) ease, visibility var(--duration-fast) ease;
    margin-top: 0.5rem;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown-link {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    transition: background var(--duration-fast) ease;
}

.nav__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.mobile-nav__link--sub {
    padding-left: 1.5rem;
    font-size: 1.4rem;
    opacity: 0.7;
}

.nav__cta {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-forest);
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--duration-fast) ease,
                transform var(--duration-fast) ease;
}

.nav__cta:hover {
    background: var(--color-forest-dark);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* Mobile Navigation */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: transform var(--duration-normal) ease,
                opacity var(--duration-normal) ease,
                background-color var(--duration-normal) ease;
}

.nav--scrolled .nav__toggle span {
    background: #fff;
}

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

.nav__toggle--open span:nth-child(2) {
    opacity: 0;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-cream-light);
    transition: right 0.4s var(--ease-out);
    z-index: 100;
    padding: 6rem var(--space-lg) var(--space-lg);
    overflow-y: auto;
}

.mobile-nav--open {
    right: 0;
}

.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) ease;
    z-index: 99;
}

.mobile-nav--open ~ .mobile-nav__overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    min-height: 44px;
}

.mobile-nav__link:hover {
    color: var(--color-forest);
}

.mobile-nav__cta {
    display: inline-block;
    margin-top: var(--space-lg);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-forest);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
}


/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 25s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% { transform: scale(1) translate3d(0, 0, 0); }
    100% { transform: scale(1.08) translate3d(-1%, -0.5%, 0); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--container-padding) clamp(2.5rem, 6vh, 4rem);
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--space-md);
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(3.25rem, 7vw, 5.5rem);
    color: var(--color-white);
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-bottom: var(--space-md);
}

.hero__text {
    font-weight: 450;
    font-size: clamp(1.0625rem, 1.15vw, 1.1875rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* Hero availability bar */
.avail-bar {
    display: flex;
    align-items: flex-end;
    gap: var(--space-sm);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    max-width: 520px;
}

.avail-bar__field {
    flex: 1;
}

.avail-bar__field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.avail-bar__field input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    min-height: 44px;
}

.avail-bar__field input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.avail-bar .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 540px) {
    .avail-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .avail-bar .btn {
        width: 100%;
    }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}


/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) ease;
    min-height: 44px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--color-forest);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-forest-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 88, 72, 0.3);
}

.btn--accent {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.btn--accent:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-forest);
    border: 1px solid var(--color-border);
}

.btn--outline-dark:hover {
    background: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
}

.btn--lg {
    padding: 1.15rem 3rem;
    font-size: 0.875rem;
}

.btn--sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.75rem;
}


/* ─── Cards ──────────────────────────────────────────────────────── */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out),
                box-shadow 0.4s var(--ease-out);
}

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

.card__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__body {
    padding: var(--space-md) var(--space-lg);
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.card__tagline {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    margin-bottom: var(--space-sm);
}

.card__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.card__price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-charcoal);
}

.card__price span {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-text-light);
}

.card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--space-sm);
}


/* ─── Pod Cards Grid ─────────────────────────────────────────────── */
.pods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
}


/* ─── Feature Blocks (alternating image/text) ────────────────────── */
.feature-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-xl) 0;
}

.feature-block + .feature-block {
    border-top: 1px solid var(--color-border-light);
}

.feature-block__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-block__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.feature-block__content {
    padding: 0;
}

.feature-block__content .subtitle {
    margin-bottom: var(--space-xs);
}

.feature-block__content h3 {
    margin-bottom: var(--space-md);
}

.feature-block__content p {
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.feature-block__content ul {
    margin-bottom: var(--space-lg);
}

.feature-block__content li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 450;
}

.feature-block__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-sage);
}

@media (min-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

    .feature-block:nth-child(even) .feature-block__image {
        order: 2;
    }

    .feature-block__content {
        padding: 0 var(--space-lg);
    }
}


/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonial {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.5;
    color: var(--color-forest);
    position: relative;
}

.testimonial__quote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--color-sage-light);
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    line-height: 1;
    opacity: 0.5;
}

.testimonial__stars {
    color: var(--color-terracotta);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.testimonial__author {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}


/* ─── Full-Bleed Image Break ─────────────────────────────────────── */
.full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: clamp(220px, 30vw, 380px);
    overflow: hidden;
    position: relative;
}

.full-bleed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-bleed__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.full-bleed__text {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-white);
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    padding: 0 var(--container-padding);
}


/* ─── Amenities / Features Icons ─────────────────────────────────── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

.amenity {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
}

.amenity__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
}

.amenity__icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.amenity__text {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.5;
}


/* ─── Add-Ons / Extras ──────────────────────────────────────────── */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.addon-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
    display: flex;
    flex-direction: column;
}

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

.addon-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: var(--space-xs);
}

.addon-card__name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.addon-card__tagline {
    font-style: italic;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.addon-card__description {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-md);
}

.addon-card__price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-charcoal);
}

.addon-card__price span {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--color-text-muted);
}


/* ─── Gallery Grid ───────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.gallery-grid__item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-grid__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

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


/* ─── Pod Detail ─────────────────────────────────────────────────── */
.pod-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.pod-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pod-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.pod-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    color: var(--color-white);
}

.pod-gallery-scroll {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--space-lg) 0;
}

.pod-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.pod-gallery-scroll__item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.pod-gallery-scroll__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .pod-gallery-scroll__item { flex: 0 0 45%; }
}

@media (min-width: 1024px) {
    .pod-gallery-scroll__item { flex: 0 0 32%; }
}


/* ─── Pricing Table ──────────────────────────────────────────────── */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.pricing-table th {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 2px solid var(--color-border);
}

.pricing-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text);
}

.pricing-table td:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-charcoal);
}


/* ─── FAQ Accordion ──────────────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal);
    text-align: left;
    cursor: pointer;
    min-height: 44px;
    transition: color var(--duration-fast) ease;
}

.faq-item__question:hover {
    color: var(--color-forest);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: var(--space-sm);
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: var(--color-text-muted);
    transition: transform var(--duration-normal) ease;
}

.faq-item__icon::before {
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item--open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) ease;
}

.faq-item__answer-inner {
    padding: 0 0 var(--space-md);
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
}


/* ─── Contact Form ───────────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    color: var(--color-charcoal);
    margin-bottom: 0.35rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.85rem var(--space-sm);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.9375rem;
    transition: border-color var(--duration-fast) ease,
                box-shadow var(--duration-fast) ease;
    min-height: 44px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(47, 88, 72, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}


/* ─── Booking Calendar ───────────────────────────────────────────── */
.booking-calendar {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
}

.booking-summary__line {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.booking-summary__total {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0 0;
    margin-top: var(--space-xs);
    border-top: 2px solid var(--color-forest);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-charcoal);
}

/* ─── Booking Page Layout ────────────────────────────────────────── */
.booking-section-title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
}

.booking-hint {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.pod-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

/* Calendar + Summary side by side */
.booking-dates-row {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-xl);
    align-items: start;
    margin-bottom: var(--space-md);
}

@media (max-width: 860px) {
    .booking-dates-row {
        grid-template-columns: 1fr;
    }
}

.booking-summary-side {
    background: var(--color-white);
    border: 2px solid var(--color-forest);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: sticky;
    top: 100px;
}

/* Mobile — drop the sticky positioning (overlaps the nav on small screens),
   tighten the padding, and ensure the panel never blows past the viewport. */
@media (max-width: 860px) {
    .booking-summary-side {
        position: static;
        top: auto;
        padding: var(--space-md);
        border-width: 1px;
    }
    .booking-summary-side__title {
        font-size: 1.1rem;
        padding-bottom: 0.4rem;
        margin-bottom: 0.5rem;
    }
    .booking-summary__line {
        font-size: 0.92rem;
    }
}

/* Calendar container — let it horizontally scroll if absolutely needed
   rather than push the page wider than the viewport. */
.booking-dates-row__calendar {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Litepicker — single month, full-width, smaller cells, less padding */
@media (max-width: 720px) {
    .litepicker {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .litepicker .container__months {
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none;
    }
    .litepicker .container__months .month-item {
        width: 100% !important;
        padding: 0 !important;
    }
    .litepicker .month-item-header {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    .litepicker .container__days .day-item {
        font-size: 0.82rem;
        height: 36px;
        line-height: 36px;
        padding: 0;
    }
    .litepicker .container__days .day-item.is-end-date,
    .litepicker .container__days .day-item.is-start-date {
        border-radius: var(--radius-sm);
    }
}

/* Multi-step form: prevent any inner content from forcing the body wider
   than the screen (the actual fix for "everything looks too wide on mobile"). */
.msf, .booking-step-content, .form-step {
    max-width: 100%;
    overflow-x: clip;
}

/* Belt-and-braces: stop any rogue child element pushing the document wider
   than the viewport on mobile. iOS Safari otherwise renders the page at the
   widest element's width, leaving a grey strip on the right. */
@media (max-width: 860px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
}

.booking-summary-side__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 2px solid var(--color-forest);
    color: var(--color-forest);
}

.booking-summary-side__empty {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.booking-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.booking-payment-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.stripe-placeholder {
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin: var(--space-md) 0;
}

.stripe-placeholder i {
    margin-bottom: var(--space-xs);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.booking-terms {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.booking-terms input { margin-top: 3px; }
.booking-terms a { text-decoration: underline; }

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-forest);
    letter-spacing: 0.02em;
}

.trust-badge i,
.trust-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ─── Booking Steps ──────────────────────────────────────────────── */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.booking-step {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
}

.booking-step__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.8125rem;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    transition: all var(--duration-normal) ease;
}

.booking-step--active .booking-step__number {
    background: var(--color-forest);
    color: var(--color-white);
    border-color: var(--color-forest);
}

.booking-step--active {
    color: var(--color-text);
    font-weight: 700;
}

.booking-step--completed .booking-step__number {
    background: var(--color-sage);
    color: var(--color-white);
    border-color: var(--color-sage);
}

.booking-step__connector {
    width: 40px;
    height: 1px;
    background: var(--color-border);
}


/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
    background: var(--color-charcoal);
    color: var(--color-taupe);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 200px;
}

.footer__logo-text {
    display: none;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--color-sage-light);
    margin-bottom: var(--space-md);
}

.footer__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-cream);
    opacity: 0.8;
}

.footer__heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer__link {
    display: block;
    color: var(--color-cream);
    font-size: 0.9375rem;
    font-weight: 450;
    padding: 0.3rem 0;
    transition: color var(--duration-fast) ease;
}

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

.footer__newsletter {
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.newsletter-form {
    display: flex;
    gap: var(--space-xs);
}

.newsletter-form .form-input {
    flex: 1;
    min-height: 42px;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-taupe);
    transition: background var(--duration-fast) ease,
                color var(--duration-fast) ease;
}

.footer__social a:hover {
    background: var(--color-forest);
    color: var(--color-white);
}


/* ─── Map Section ────────────────────────────────────────────────── */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    background: var(--color-bg-alt);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    color: var(--color-text-light);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* ─── Location Info ──────────────────────────────────────────────── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.location-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.location-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--color-forest);
}

.location-card__icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.location-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.location-card__text {
    font-size: 0.9375rem;
    color: var(--color-text);
}


/* ─── Sticky Booking CTA ─────────────────────────────────────────── */
.sticky-book {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem var(--container-padding);
    background: var(--color-charcoal);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-book--visible {
    transform: translateY(0);
}

.sticky-book__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.sticky-book__price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-taupe);
    margin-left: 0.25rem;
}

@media (max-width: 480px) {
    .sticky-book {
        justify-content: space-between;
    }
    .sticky-book__price span {
        display: block;
        margin-left: 0;
    }
}


/* ─── About Page ─────────────────────────────────────────────────── */
.about-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-intro {
        grid-template-columns: 1.2fr 1fr;
    }
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.value-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-sage-light);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.value-card__text {
    color: var(--color-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}


/* ─── Page Header (inner pages) ──────────────────────────────────── */
.page-header {
    position: relative;
    height: 45vh;
    min-height: 320px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.page-header__image {
    position: absolute;
    inset: 0;
}

.page-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.page-header__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: var(--space-xl) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: right;
}

.page-header__title {
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.page-header__subtitle {
    font-family: var(--font-body);
    font-weight: 450;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-left: auto;
    margin-top: var(--space-sm);
    max-width: 500px;
}


/* ─── Cookie Consent (themed) ────────────────────────────────────── */
/* When the banner is shown, push body content up by the banner's approximate
   height so fixed-bottom UI (like the multi-step booking nav) isn't hidden
   behind it. JS adds .has-cookie-banner to <body> on show, removes on dismiss. */
body.has-cookie-banner { padding-bottom: 120px; }
@media (max-width: 720px) {
    body.has-cookie-banner { padding-bottom: 200px; }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--cookie-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(12px);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    color: var(--cookie-text);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner-text a {
    color: var(--cookie-link);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: var(--cookie-radius);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
}

.cookie-btn-accept {
    background: var(--cookie-btn-accept-bg);
    color: var(--cookie-btn-accept-text);
}

.cookie-btn-accept:hover { opacity: 0.85; }

.cookie-btn-reject {
    background: transparent;
    color: var(--color-taupe);
    border: 1px solid var(--cookie-btn-reject-border);
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .cookie-banner { padding: 1rem; }
    .cookie-banner-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-banner-actions { width: 100%; justify-content: center; }
    .cookie-btn { flex: 1; }
}


/* ─── Utility Classes ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.divider {
    border: none;
    height: 1px;
    background: var(--color-border);
    margin: var(--space-xl) 0;
}

/* Accent line before headings */
.accent-line::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.text-center .accent-line::before,
.accent-line--center::before {
    margin-left: auto;
    margin-right: auto;
}


/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .gallery-grid__item--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .booking-steps {
        gap: var(--space-sm);
    }

    .booking-step__connector {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── Pod Selection Cards (Booking) ──────────────────────────────── */
.pod-select-card {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: border-color var(--duration-normal) ease,
                box-shadow var(--duration-normal) ease;
}

.pod-select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.pod-select-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.pod-select-card:hover img {
    transform: scale(1.05);
}

.pod-select-card__info {
    padding: var(--space-sm);
    text-align: center;
}

.pod-select-card__info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
}

.pod-select-card__info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.pod-select-card.selected,
.pod-select-card:has(input:checked) {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(47, 88, 72, 0.15);
}

/* ─── Addon Card Selectable (Booking) ────────────────────────────── */
.addon-card--selectable {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--duration-fast) ease,
                transform 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
}

.addon-card--selectable:hover {
    border-color: var(--color-border);
}

.addon-card--selected,
.addon-card--selectable:has(input:checked) {
    border-color: var(--color-forest);
    box-shadow: 0 0 0 3px rgba(47, 88, 72, 0.12);
}

/* ─── Payment Options ────────────────────────────────────────────── */
.payment-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    padding: var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color var(--duration-fast) ease;
}

.payment-option--active {
    border-color: var(--color-forest);
    background: rgba(47, 88, 72, 0.04);
}

.payment-option input[type="radio"] {
    margin-top: 4px;
}

/* ─── Booking Layout Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
    .pod-selector-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Litepicker Overrides ───────────────────────────────────────── */
.litepicker .container__months {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.litepicker .month-item-header {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.litepicker .day-item {
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.litepicker .day-item:hover {
    background: var(--color-cream);
}

.litepicker .day-item.is-start-date,
.litepicker .day-item.is-end-date {
    background: var(--color-forest) !important;
    color: var(--color-white) !important;
}

.litepicker .day-item.is-in-range {
    background: rgba(47, 88, 72, 0.1) !important;
}

.litepicker .day-item.is-locked {
    color: var(--color-text-muted) !important;
    opacity: 0.4;
}


/* ─── Gift Voucher Cards ─────────────────────────────────────────── */
.voucher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.voucher-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

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

.voucher-card--featured {
    border: 2px solid var(--color-forest);
    box-shadow: var(--shadow-md);
}

.voucher-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-forest);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.voucher-card__badge {
    display: block;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-sage);
    margin-bottom: var(--space-sm);
}

.voucher-card__price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.voucher-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .voucher-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ─── Exit-Intent Popup ──────────────────────────────────────────── */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.exit-popup--visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.exit-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    opacity: inherit;
}

.exit-popup__box {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    z-index: 1;
}

.exit-popup__box h3 {
    margin-bottom: var(--space-xs);
}

.exit-popup__box > p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
}

.exit-popup__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-size: 1.75rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
}

.exit-popup__close:hover {
    color: var(--color-text);
}

.exit-popup__form {
    display: flex;
    gap: var(--space-xs);
}

.exit-popup__form .form-input {
    flex: 1;
}

.exit-popup__note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

@media (max-width: 480px) {
    .exit-popup__form {
        flex-direction: column;
    }
}


/* ─── Weather Widget ─────────────────────────────────────────────── */
.weather-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    max-width: 700px;
    margin: 0 auto;
}

.weather-day {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.weather-day__name {
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.weather-day i,
.weather-day svg {
    width: 28px;
    height: 28px;
    color: var(--color-forest);
    margin: var(--space-xs) auto;
    display: block;
}

.weather-day__temp {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 2px;
}

.weather-day__desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (max-width: 640px) {
    .weather-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ─── Blog Article ───────────────────────────────────────────────── */
.article-content p {
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.article-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
}

.article-content strong {
    font-weight: 600;
}

/* ─── Blog Listing Cards ─────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.blog-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: var(--space-md) var(--space-lg);
}

.blog-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    display: block;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}


/* ═══════════════════════════════════════════════════════════════════
   Component fixes — grid, card-icon cards, accordion, map, weather
   Added 2026-04-27 to repair pages whose markup referenced these
   class names but had no styles defined.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Grid system ─────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--space-xl);
    align-items: stretch;
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 960px) {
    .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .grid--2, .grid--3 { grid-template-columns: 1fr; }
    .grid { gap: var(--space-lg); }
}

/* ─── Card variants (icon-led cards on About / Contact / Location / FAQ) */
.card.text-center,
.section .card:not(.text-center) {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.card.text-center { text-align: center; align-items: center; }
.card.text-center:hover,
.section .card:not(.text-center):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
}
.card.text-center h3,
.section .card:not(.text-center) h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--color-forest);
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.01em;
}
.card.text-center p,
.section .card:not(.text-center) p {
    color: var(--color-text-light);
    line-height: 1.75;
    margin: 0 0 var(--space-sm);
    font-size: 0.98rem;
}
.card.text-center ul,
.section .card:not(.text-center) ul {
    list-style: none;
    padding: 0;
    margin: var(--space-sm) 0 0;
    text-align: left;
    width: 100%;
}
.card.text-center ul li,
.section .card:not(.text-center) ul li {
    padding: 0.55rem 0;
    color: var(--color-text-light);
    font-size: 0.94rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--color-border-light);
}
.card.text-center ul li:last-child,
.section .card:not(.text-center) ul li:last-child { border-bottom: none; }
.card.text-center ul li strong,
.section .card:not(.text-center) ul li strong { color: var(--color-forest); font-weight: 600; }
.card.text-center a,
.section .card:not(.text-center) a {
    color: var(--color-terracotta);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.2s ease;
}
.card.text-center a:hover,
.section .card:not(.text-center) a:hover { color: var(--color-terracotta-dark); }

/* ─── Card icon disc ──────────────────────────────────────────────── */
.card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #eaf0e6 0%, #d4dec9 100%);
    color: var(--color-forest);
    margin: 0 auto var(--space-md);
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(47, 88, 72, 0.06);
    transition: transform 0.4s var(--ease-out), background 0.4s var(--ease-out);
}
.section .card:not(.text-center) .card__icon { margin: 0 0 var(--space-md); }
.card__icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.5;
}
.card:hover .card__icon {
    transform: scale(1.05) rotate(-2deg);
    background: linear-gradient(140deg, #d4dec9 0%, #b9c8ad 100%);
}

/* ─── FAQ Accordion ───────────────────────────────────────────────── */
.accordion {
    border-top: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}
.accordion__item {
    border-bottom: 1px solid var(--color-border-light);
}
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
    width: 100%;
    background: none;
    border: 0;
    padding: 1.25rem var(--space-lg);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-forest);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    line-height: 1.4;
    transition: background 0.25s ease, color 0.2s ease;
}
.accordion__trigger:hover {
    background: rgba(47, 88, 72, 0.03);
    color: var(--color-terracotta);
}
.accordion__trigger:focus-visible {
    outline: 2px dashed var(--color-sage);
    outline-offset: -4px;
}
.accordion__trigger[aria-expanded="true"] {
    color: var(--color-terracotta);
    background: rgba(47, 88, 72, 0.02);
}
.accordion__title { flex: 1; }
.accordion__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-sage);
    transition: transform 0.35s var(--ease-out);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
    color: var(--color-terracotta);
}
.accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease-out);
}
.accordion__content--open { max-height: 1200px; }
.accordion__body {
    padding: 0 var(--space-lg) 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: 1rem;
}
.accordion__body p { margin: 0 0 0.85rem; }
.accordion__body p:last-child { margin-bottom: 0; }
.accordion__body strong { color: var(--color-forest); font-weight: 600; }
.accordion__body ul {
    margin: 0.5rem 0 0.85rem;
    padding-left: 1.25rem;
    list-style: disc;
}
.accordion__body ul li { padding: 0.2rem 0; }
.accordion__body a {
    color: var(--color-terracotta);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.accordion__body a:hover { color: var(--color-terracotta-dark); }

/* ─── Map (Location page) ─────────────────────────────────────────── */
.map-frame {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--color-cream);
}
@media (max-width: 640px) {
    .map-frame { height: 360px; }
}

/* ─── Weather widget — pop the numbers ────────────────────────────── */
#weatherTempValue,
#weatherWindValue,
#weatherRainValue {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-forest);
    margin: var(--space-sm) 0 0.25rem;
    letter-spacing: -0.02em;
}

/* ─── Form — textarea + select polish ─────────────────────────────── */
textarea.form-input {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-body);
}
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-forest) 50%),
        linear-gradient(135deg, var(--color-forest) 50%, transparent 50%);
    background-position: calc(100% - 18px) 55%, calc(100% - 13px) 55%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Contact form spacing */
.form-group { margin-bottom: var(--space-md); }
.form-group:last-child { margin-bottom: 0; }
form .grid--2 { gap: var(--space-md); }


/* ─── Print ──────────────────────────────────────────────────────── */
@media print {
    .nav, .footer, .cookie-banner, .sticky-book {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ─── Field-level validation (shared across forms) ──────────── */
.field-error {
    display: none;
    font-size: 0.83rem;
    color: #a13a2a;
    margin-top: 0.35rem;
    line-height: 1.3;
}
.field-error.is-visible { display: block; }
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
    border-color: #a13a2a;
    background: #fff8f7;
}
.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
    outline-color: #a13a2a;
}

/* ─── Form validation — prominent UX (booking + contact + voucher) ─ */
/* Field-level error: bigger, with icon, slide-in */
.field-error {
    font-size: 0.92rem;
    font-weight: 500;
    color: #a13a2a;
    background: #fbe9e7;
    border-left: 3px solid #a13a2a;
    border-radius: 4px;
    padding: 0.5rem 0.7rem;
    margin-top: 0.5rem;
    line-height: 1.35;
    display: none;
}
.field-error.is-visible {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    animation: fr-slide-in 0.25s ease-out;
}
.field-error__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #a13a2a;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    font-family: Georgia, serif;
    line-height: 1;
    margin-top: 1px;
}
@keyframes fr-slide-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: none; }
}

/* Field input itself when invalid */
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
    border-color: #a13a2a;
    background: #fff8f7;
    box-shadow: 0 0 0 3px rgba(161, 58, 42, 0.12);
}
.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
    outline: 2px solid #a13a2a;
    outline-offset: 1px;
}

/* Shake animation for first-flag attention */
@keyframes fr-shake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-6px); }
    40%      { transform: translateX(6px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}
.is-shaking { animation: fr-shake 0.4s ease-in-out; }

/* Form-level alert banner (top of booking form) */
.step-alert {
    background: #fbe9e7;
    border: 2px solid #a13a2a;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #6f2618;
    box-shadow: 0 4px 14px rgba(161, 58, 42, 0.12);
}
.step-alert[hidden] { display: none; }
.step-alert.is-pulse { animation: fr-shake 0.45s ease-in-out, fr-slide-in 0.3s ease-out; }
.step-alert__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #a13a2a;
    color: #fff;
    font-weight: 700;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    line-height: 1;
}
.step-alert__body { flex: 1; }
.step-alert__title {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #6f2618;
}
.step-alert__list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.step-alert__list li { margin: 0.15rem 0; }

/* Section-level "needs attention" wrap — used on tent grid and calendar */
.attention-wrap {
    border-radius: 8px;
    transition: outline 0.25s ease, background 0.25s ease;
}
.attention-wrap.needs-attention {
    outline: 3px dashed #a13a2a;
    outline-offset: 4px;
    background: rgba(251, 233, 231, 0.4);
    animation: fr-shake 0.45s ease-in-out;
}

/* Highlight a selected pod card more prominently so the user can clearly see
   what they picked — closes the loop on "select bell tent" prompts */
.pod-select-card.selected {
    outline: 3px solid #588157;
    outline-offset: 3px;
}
