
    :root {
        --c-ink: #1f241f;
        --c-ink-soft: #4a5148;
        --c-pine: #2d4a3a;
        --c-pine-deep: #1c2f25;
        --c-ember: #b35728;
        --c-bone: #f6f3ec;
        --c-bone-warm: #ede7d9;
        --c-line: #d9d3c3;
        --c-white: #ffffff;
        --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
        --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
        --maxw: 1200px;
        --gutter: clamp(1.25rem, 4vw, 2.5rem);
        --section-pad: clamp(4rem, 9vw, 7rem);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
        margin: 0;
        font-family: var(--font-body);
        color: var(--c-ink);
        background: var(--c-bone);
        line-height: 1.6;
        font-size: 17px;
        -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4 {
        font-family: var(--font-head);
        font-weight: 500;
        color: var(--c-ink);
        line-height: 1.15;
        letter-spacing: -0.01em;
        margin: 0 0 0.75em;
    }
    h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
    h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
    h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
    p { margin: 0 0 1em; color: var(--c-ink-soft); }
    a { color: var(--c-pine); text-decoration: none; }
    a:hover { color: var(--c-ember); }

    .container {
        max-width: var(--maxw);
        margin: 0 auto;
        padding-left: var(--gutter);
        padding-right: var(--gutter);
    }

    .btn {
        display: inline-block;
        padding: 0.95rem 1.75rem;
        border-radius: 2px;
        font-weight: 500;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: all 0.2s ease;
        border: 1.5px solid transparent;
        cursor: pointer;
    }
    .btn-primary {
        background: var(--c-pine);
        color: var(--c-bone);
        border-color: var(--c-pine);
    }
    .btn-primary:hover {
        background: var(--c-pine-deep);
        border-color: var(--c-pine-deep);
        color: var(--c-bone);
    }
    .btn-ghost {
        background: transparent;
        color: var(--c-bone);
        border-color: rgba(246,243,236,0.7);
    }
    .btn-ghost:hover {
        background: var(--c-bone);
        color: var(--c-pine-deep);
    }
    .btn-ink {
        background: transparent;
        color: var(--c-ink);
        border-color: var(--c-ink);
    }
    .btn-ink:hover {
        background: var(--c-ink);
        color: var(--c-bone);
    }

    /* NAV */
    .site-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        padding: 1.5rem 0;
    }
    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        font-family: var(--font-head);
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--c-bone);
        letter-spacing: 0.02em;
    }
    .logo span { display: block; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.85; margin-top: 2px; font-family: var(--font-body); }
    .nav-links {
        display: flex;
        gap: 2.2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nav-links a {
        color: var(--c-bone);
        font-size: 0.9rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    .nav-links a:hover { color: var(--c-ember); }
    .nav-book {
        padding: 0.6rem 1.25rem;
        border: 1px solid var(--c-bone);
        border-radius: 2px;
    }
    .nav-book:hover {
        background: var(--c-bone);
        color: var(--c-pine-deep) !important;
    }

    /* Mobile menu (CSS-only checkbox hack) */
    .nav-toggle { display: none; }
    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 6px;
    }
    .hamburger span {
        width: 26px;
        height: 2px;
        background: var(--c-bone);
        display: block;
    }

    @media (max-width: 860px) {
        .hamburger { display: flex; }
        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            background: var(--c-pine-deep);
            padding: 1.5rem var(--gutter);
            gap: 1.25rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding-top: 0;
            padding-bottom: 0;
        }
        .nav-toggle:checked ~ .nav-links {
            max-height: 500px;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }
    }

    /* HERO */
    .hero {
        position: relative;
        min-height: 92vh;
        display: flex;
        align-items: center;
        color: var(--c-bone);
        overflow: hidden;
    }
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('https://images.unsplash.com/photo-1714227667702-54ac7d02eb9e?w=1800&h=1100&fit=crop');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(28,47,37,0.55) 0%, rgba(28,47,37,0.35) 40%, rgba(28,47,37,0.75) 100%);
        z-index: -1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 780px;
        padding-top: 4rem;
    }
    .hero-eyebrow {
        font-size: 0.8rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }
    .hero h1 { color: var(--c-bone); margin-bottom: 1.25rem; }
    .hero p.lede {
        font-size: clamp(1.05rem, 1.6vw, 1.3rem);
        color: rgba(246,243,236,0.9);
        max-width: 620px;
        margin-bottom: 2.25rem;
        line-height: 1.55;
    }
    .hero-ctas {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* SECTIONS */
    section { padding: var(--section-pad) 0; }
    .alt { background: var(--c-bone-warm); }
    .dark { background: var(--c-pine-deep); color: var(--c-bone); }
    .dark h2, .dark h3 { color: var(--c-bone); }
    .dark p { color: rgba(246,243,236,0.8); }

    .eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--c-ember);
        margin-bottom: 1rem;
        font-weight: 500;
    }
    .dark .eyebrow { color: #e89a6b; }

    /* INTRO / ABOUT */
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 5rem);
        align-items: center;
    }
    .intro-grid img {
        border-radius: 3px;
        aspect-ratio: 3/4;
        object-fit: cover;
    }
    @media (max-width: 800px) {
        .intro-grid { grid-template-columns: 1fr; }
    }

    /* PILLARS */
    .pillars-head {
        max-width: 720px;
        margin-bottom: 3.5rem;
    }
    .pillars {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .pillar {
        background: var(--c-white);
        padding: 2rem 1.75rem 2.25rem;
        border: 1px solid var(--c-line);
    }
    .pillar-num {
        font-family: var(--font-head);
        font-size: 0.85rem;
        color: var(--c-ember);
        letter-spacing: 0.15em;
        display: block;
        margin-bottom: 1rem;
    }
    .pillar h3 { margin-bottom: 0.6rem; }
    .pillar p { font-size: 0.95rem; margin-bottom: 1.25rem; }
    .pillar a {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
        border-bottom: 1px solid var(--c-pine);
        padding-bottom: 2px;
    }
    @media (max-width: 1000px) {
        .pillars { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
        .pillars { grid-template-columns: 1fr; }
    }

    /* WELLNESS FEATURE */
    .wellness {
        display: grid;
        grid-template-columns: 5fr 6fr;
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: center;
    }
    .wellness img {
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: 3px;
    }
    .wellness-badge {
        display: inline-block;
        padding: 0.4rem 0.9rem;
        border: 1px solid var(--c-ember);
        color: var(--c-ember);
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        border-radius: 2px;
    }
    .wellness ul {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0 2rem;
    }
    .wellness li {
        padding: 0.75rem 0 0.75rem 1.75rem;
        border-top: 1px solid var(--c-line);
        position: relative;
        color: var(--c-ink);
    }
    .wellness li:last-child { border-bottom: 1px solid var(--c-line); }
    .wellness li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 1.3rem;
        width: 10px;
        height: 1px;
        background: var(--c-ember);
    }
    @media (max-width: 800px) {
        .wellness { grid-template-columns: 1fr; }
    }

    /* STAY / ROOMS */
    .stay-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    .stay-card {
        position: relative;
        overflow: hidden;
        border-radius: 3px;
        aspect-ratio: 4/5;
    }
    .stay-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }
    .stay-card:hover img { transform: scale(1.04); }
    .stay-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(28,47,37,0) 40%, rgba(28,47,37,0.85) 100%);
    }
    .stay-caption {
        position: absolute;
        bottom: 1.75rem;
        left: 1.75rem;
        right: 1.75rem;
        color: var(--c-bone);
        z-index: 2;
    }
    .stay-caption h3 { color: var(--c-bone); margin-bottom: 0.4rem; }
    .stay-caption p { color: rgba(246,243,236,0.85); font-size: 0.9rem; margin: 0; }
    @media (max-width: 800px) {
        .stay-grid { grid-template-columns: 1fr; }
    }

    /* REBUILD STORY */
    .rebuild {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 5rem);
        align-items: center;
    }
    .rebuild img {
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 3px;
    }
    .rebuild blockquote {
        font-family: var(--font-head);
        font-size: clamp(1.3rem, 2vw, 1.6rem);
        line-height: 1.45;
        color: var(--c-bone);
        margin: 1.5rem 0 1.75rem;
        padding-left: 1.25rem;
        border-left: 2px solid var(--c-ember);
        font-style: italic;
    }
    .rebuild cite {
        display: block;
        font-style: normal;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(246,243,236,0.7);
        margin-top: 0.5rem;
    }
    @media (max-width: 800px) {
        .rebuild { grid-template-columns: 1fr; }
    }

    /* PLAN / BOOKING PLACEHOLDER */
    .plan-wrap {
        background: var(--c-white);
        padding: clamp(2rem, 4vw, 3.5rem);
        border: 1px solid var(--c-line);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    .ep-placeholder {
        background: var(--c-bone-warm);
        border: 1px dashed var(--c-line);
        padding: 2rem;
        text-align: center;
        color: var(--c-ink-soft);
        font-size: 0.9rem;
        border-radius: 3px;
    }
    @media (max-width: 800px) {
        .plan-wrap { grid-template-columns: 1fr; }
    }

    /* CONTACT */
    .contact {
        background: var(--c-bone-warm);
    }
    .contact-grid {
        display: grid;
        grid-template-columns: 5fr 6fr;
        gap: clamp(2rem, 5vw, 4.5rem);
    }
    .contact-info dl {
        margin: 2rem 0 0;
    }
    .contact-info dt {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--c-ember);
        margin-top: 1.25rem;
        margin-bottom: 0.3rem;
    }
    .contact-info dd {
        margin: 0;
        font-size: 1rem;
        color: var(--c-ink);
    }
    @media (max-width: 800px) {
        .contact-grid { grid-template-columns: 1fr; }
    }

    /* FOOTER */
    footer {
        background: var(--c-pine-deep);
        color: rgba(246,243,236,0.75);
        padding: 4rem 0 2rem;
        font-size: 0.9rem;
    }
    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(246,243,236,0.15);
    }
    footer h4 {
        color: var(--c-bone);
        font-family: var(--font-body);
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 1.25rem;
    }
    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    footer li { margin-bottom: 0.6rem; }
    footer a { color: rgba(246,243,236,0.75); }
    footer a:hover { color: var(--c-ember); }
    .footer-brand .logo { color: var(--c-bone); margin-bottom: 1rem; }
    .footer-brand p { color: rgba(246,243,236,0.65); max-width: 320px; font-size: 0.88rem; }
    .footer-bottom {
        padding-top: 1.75rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.8rem;
        color: rgba(246,243,236,0.5);
    }
    @media (max-width: 800px) {
        .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 500px) {
        .footer-top { grid-template-columns: 1fr; }
    }


/* ========================================
   PAGE TEMPLATE STYLES
   ======================================== */

.template-page .content-section {
    padding: 4rem 0;
}

.template-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.template-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.template-page .page-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.template-page .page-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.template-page .page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.template-page .page-content p {
    margin-bottom: 1.25rem;
}

.template-page .page-content a {
    text-decoration: none;
}

.template-page .page-content a:hover {
    text-decoration: underline;
}

.template-error .content-section {
    padding: 6rem 0;
    text-align: center;
}

/* Contact form on pages */
.ep-contact-form-wrapper {
    max-width: 600px;
    margin: 2rem auto;
}

.ep-contact-form input[type="text"],
.ep-contact-form input[type="email"],
.ep-contact-form textarea {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.ep-contact-form input:focus,
.ep-contact-form textarea:focus {
    outline: none;
}

.ep-contact-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ep-contact-form .form-field {
    margin-bottom: 1.5rem;
}

.ep-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.ep-contact-form button,
.ep-contact-form input[type="submit"] {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

/* Container padding (prevents content running to browser edge) */
.container, .section-inner, [class*="-inner"] {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}
section, [class*="section"] {
    overflow-x: hidden;
}

.site-footer {
    position: relative;
    z-index: 1;
}

/* Structural button fallbacks (colour comes from the brand CSS, never from here).
   If the brand CSS uses class names the converter renamed, the button will be
   clickable but uncoloured, which is a visible signal something needs fixing
   rather than a misleading hardcoded blue. */
.button, a.button,
a.btn-primary, a.btn-secondary, a.btn-dark, a.btn-outline, a.btn-light {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.4;
}

a.read-more, .read-more {
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: opacity 0.2s;
}
.read-more:hover { opacity: 0.7; }

a[class*="hero-btn"] {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hero-cta, .hero-actions, .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Button class alias shim — converter renamed .btn-primary → .button, .btn-ghost → .button.action. */
.button {
    display: inline-block;
    padding: 0.95rem 1.75rem;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    background: var(--c-pine);
    color: var(--c-bone);
    border-color: var(--c-pine);
}
.button:hover { background: var(--c-pine-deep); border-color: var(--c-pine-deep); color: var(--c-bone); }
.button.action { background: transparent; color: var(--c-bone); border-color: rgba(246,243,236,0.7); }
.button.action:hover { background: var(--c-bone); color: var(--c-pine-deep); }
