/* ==========================================================
   43 The Annexe — Crantock, Cornwall
   Fonts: Fraunces (display) + Manrope (sans)
   ========================================================== */

:root {
    --navy:        #003B5C;
    --teal:        #005B5C;
    --teal-deep:   #00485C;
    --ocean:       #00ABBE;
    --sage:        #A6D8B9;
    --mist:        #E0F7FA;
    --sand:        #F4EFE6;
    --paper:       #FBF8F3;
    --ink:         #142434;
    --ink-soft:    #4A5A6A;
    --line:        rgba(20, 36, 52, 0.10);

    --radius-s: 10px;
    --radius-m: 18px;
    --radius-l: 28px;

    --shadow-soft: 0 12px 40px -18px rgba(0, 59, 92, 0.35);
    --shadow-deep: 0 30px 80px -30px rgba(0, 59, 92, 0.45);
    --section-space: clamp(3rem, 6vw, 5.5rem);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
    font-family: 'Manrope', system-ui, sans-serif;
    font-weight: 400;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(166, 216, 185, 0.12), transparent 26%),
        radial-gradient(circle at 100% 12%, rgba(0, 171, 190, 0.08), transparent 36%),
        var(--paper);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Selection */
::selection { background: var(--sage); color: var(--navy); }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--navy);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===================== Typography ===================== */
h1, h2, h3, h4, h5, h6, .display {
    font-family: 'Fraunces', 'Cormorant Garamond', serif;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -0.015em;
    line-height: 1.08;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); font-weight: 300; }
h2.section-title {
    font-size: clamp(2.05rem, 4.25vw, 3.6rem);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 1.2rem;
}
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.05rem; font-weight: 500; }
h6 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
}
em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; color: var(--teal); }

p { color: var(--ink-soft); letter-spacing: 0.005em; }
.muted { color: var(--ink-soft); }
.lead-text { font-size: 1.12rem; color: var(--ink); line-height: 1.7; }

/* Eyebrow */
.eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.1rem;
    position: relative;
    padding-left: 2.25rem;
}
.eyebrow::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 1.6rem; height: 1px;
    background: var(--teal);
}
.eyebrow-light { color: rgba(255,255,255,0.85); }
.eyebrow-light::before { background: rgba(255,255,255,0.7); }

a { color: var(--teal); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--ocean); }
a:focus-visible { outline: 2px solid var(--ocean); outline-offset: 3px; border-radius: 2px; }

/* ===================== Buttons ===================== */
.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.95rem 1.8rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 48%, transparent 66%);
    transform: translateX(-120%);
    transition: transform 0.65s var(--ease);
    z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }
.btn:focus-visible {
    outline: 2px solid var(--ocean);
    outline-offset: 3px;
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 0.92rem; }

.btn-coast {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-coast:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -12px rgba(0, 91, 92, 0.6);
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===================== NAV ===================== */
.site-nav {
    background: rgba(251, 248, 243, 0.85);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    padding: 0.85rem 0;
    transition: all 0.35s var(--ease);
}
.site-nav.scrolled {
    background: rgba(251, 248, 243, 0.96);
    border-bottom-color: var(--line);
    padding: 0.55rem 0;
    box-shadow: 0 10px 30px -25px rgba(0, 59, 92, 0.4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    transition: opacity 0.25s var(--ease);
}
.navbar-brand:hover { opacity: 0.85; }
.brand-mark {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 2rem;
    color: var(--navy);
    line-height: 1;
    padding: 0.15rem 0.7rem;
    background: var(--mist);
    border: 1px solid rgba(0, 59, 92, 0.14);
    border-radius: 8px;
    font-style: italic;
    box-shadow: 0 6px 16px -10px rgba(0, 59, 92, 0.5);
}
.brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.05;
    display: flex;
    flex-direction: column;
}
.brand-text small {
    font-family: 'Manrope', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 0.18rem;
}

.navbar-nav .nav-link {
    font-family: 'Manrope', sans-serif;
    color: var(--ink) !important;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem !important;
    position: relative;
    transition: color 0.25s var(--ease);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.9rem; right: 0.9rem;
    bottom: 0.3rem;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--teal) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .btn { color: #fff !important; padding: 0.65rem 1.4rem !important; font-size: 0.78rem !important; }
.navbar-nav .btn::after { display: none; }
.navbar-nav .btn:hover { color: #fff !important; }

.navbar-toggler { border: 1px solid var(--line); padding: 0.5rem 0.7rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(0, 91, 92, 0.2); }

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 82vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 6.5rem 0 2rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.05);
    animation: heroZoom 12s var(--ease) forwards;
}
.hero-tint {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 59, 92, 0.05) 0%, rgba(0, 59, 92, 0.35) 55%, rgba(0, 59, 92, 0.85) 100%),
        linear-gradient(120deg, rgba(0, 91, 92, 0.45) 0%, rgba(0, 171, 190, 0.15) 60%, transparent 100%);
}
.hero-grain {
    position: absolute; inset: 0;
    background-image: url('../images/crantock.webp');
    background-position: center;
    background-size: cover;
    opacity: 0.15; mix-blend-mode: overlay; pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
}

.hero-title {
    color: #fff;
    font-weight: 300;
    margin-bottom: 1.6rem;
    text-shadow: 0 2px 30px rgba(0, 30, 50, 0.25);
    animation: rise 1s var(--ease) 0.2s both;
}
.hero-title em { color: var(--sage); font-weight: 300; font-style: italic; }
.hero-num {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-style: normal;
    font-weight: 500;
    color: #fff;
}

.hero-lead {
    color: rgba(255,255,255,0.92);
    font-size: 1.18rem;
    max-width: 560px;
    margin-bottom: 2.2rem;
    animation: rise 1s var(--ease) 0.45s both;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: rise 1s var(--ease) 0.65s both; }
.hero-actions .btn-coast { background: var(--sage); color: var(--navy); border-color: var(--sage); }
.hero-actions .btn-coast:hover { background: #fff; border-color: #fff; color: var(--navy); }

.hero-meta {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.25);
    animation: rise 1s var(--ease) 0.85s both;
}
.hero-meta-item span {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: var(--sage);
    font-style: italic;
    display: block;
    margin-bottom: 0.35rem;
}
.hero-meta-item p {
    color: rgba(255,255,255,0.92);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    transform: translateX(-50%);
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    z-index: 3;
    overflow: hidden;
}
.hero-scroll-cue span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: var(--sage);
    border-radius: 999px;
    animation: scrollCue 1.8s var(--ease) infinite;
}

@keyframes heroZoom { to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes scrollCue {
    0% { opacity: 1; transform: translateY(0); }
    75% { opacity: 0; transform: translateY(14px); }
    100% { opacity: 0; transform: translateY(14px); }
}

/* ===================== SECTIONS ===================== */
.section { padding: var(--section-space) 0; position: relative; }
.section + .section { border-top: 1px solid rgba(20, 36, 52, 0.06); }
.section-sub { font-size: 1.08rem; max-width: 620px; margin: 0 auto; }
.text-white-70 { color: rgba(255,255,255,0.78); }

.section-cornwall,
.section-location,
.section-cta,
.site-footer {
    border-top: none;
}

/* ===================== ABOUT ===================== */
.section-about { background: var(--paper); }

.image-stack {
    position: relative;
    padding-bottom: 4rem;
    padding-right: 4rem;
}
.image-stack-main {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-deep);
}
.image-stack-main img {
    width: 100%; height: 520px; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.image-stack-main:hover img { transform: scale(1.04); }
.image-stack-accent {
    margin: 0;
    position: absolute;
    right: 0; bottom: 0;
    width: 55%;
    overflow: hidden;
    border-radius: var(--radius-m);
    border: 8px solid var(--paper);
    box-shadow: var(--shadow-deep);
}
.image-stack-accent img { width: 100%; height: 240px; object-fit: cover; display: block; }

.feature-list { margin-top: 2rem; display: grid; gap: 1.4rem; }
.feature-list-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.feature-list-item i {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    background: var(--mist);
    color: var(--teal);
    border-radius: 12px;
    font-size: 1.05rem;
}
.feature-list-item h6 { margin: 0 0 0.3rem; }
.feature-list-item p { margin: 0; font-size: 0.95rem; }

/* ===================== CAROUSEL ===================== */
.section-gallery {
    background:
        radial-gradient(circle at top left, rgba(176, 213, 179, 0.22), transparent 34%),
        linear-gradient(180deg, #fffdf8 0%, var(--sand) 100%);
}

.section-gallery .container-xl {
    max-width: min(96vw, 1460px);
}

.section-gallery .row.align-items-end {
    margin-bottom: clamp(1.5rem, 3vw, 2.8rem) !important;
}

.annexe-carousel {
    padding: clamp(0.85rem, 1.2vw, 1.4rem);
    border-radius: calc(var(--radius-l) + 10px);
    overflow: hidden;
    box-shadow: 0 36px 90px -30px rgba(8, 48, 67, 0.34);
    background: linear-gradient(170deg, #ffffff 0%, #f8f2e7 52%, #eef7f4 100%);
    border: 1px solid rgba(8, 48, 67, 0.12);
}
.annexe-carousel .carousel-inner {
    background: transparent;
    border-radius: calc(var(--radius-l) - 10px);
}
.annexe-carousel .carousel-item {
    padding: 0;
}
.annexe-carousel .carousel-item img {
    height: clamp(480px, 74vh, 860px);
    object-fit: cover;
    object-position: center;
}
.annexe-carousel .carousel-item img {
    border-radius: calc(var(--radius-l) - 10px);
    box-shadow: 0 22px 56px -28px rgba(8, 48, 67, 0.45);
}

@media (hover: hover) {
    .annexe-carousel:hover .carousel-item.active img {
        transform: scale(1.01);
        transition: transform 0.6s var(--ease);
    }
}

.annexe-carousel .carousel-control-prev,
.annexe-carousel .carousel-control-next {
    width: 76px;
    opacity: 1;
    z-index: 4;
}
.annexe-carousel .carousel-control-prev-icon,
.annexe-carousel .carousel-control-next-icon {
    width: 56px; height: 56px;
    background-color: rgba(255,255,255,0.96);
    border-radius: 50%;
    background-size: 42%;
    box-shadow: 0 12px 30px -18px rgba(8, 48, 67, 0.55);
    transition: all 0.3s var(--ease);
}
.annexe-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.annexe-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #fff;
    transform: scale(1.08);
}

.annexe-carousel .carousel-indicators {
    bottom: 1.6rem;
    margin: 0 5%;
    justify-content: center;
    z-index: 4;
}
.annexe-carousel .carousel-indicators [data-bs-target] {
    width: 34px; height: 4px;
    background: rgba(255,255,255,0.52);
    border: none;
    margin: 0 5px;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.annexe-carousel .carousel-indicators .active {
    background: #fff;
    width: 58px;
}

/* ===================== INCLUDED ===================== */
.section-included { background: var(--sand); }
.chip-card {
    display: flex; align-items: center; gap: 0.9rem;
    background: #fff;
    padding: 1.1rem 1.3rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    transition: all 0.35s var(--ease);
}
.chip-card i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: var(--mist);
    color: var(--teal);
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.35s var(--ease);
}
.chip-card span { font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.chip-card:hover {
    transform: translateY(-3px);
    border-color: var(--sage);
    box-shadow: var(--shadow-soft);
}
.chip-card:hover i { background: var(--sage); color: var(--navy); }

.pull-quote {
    margin: 2rem 0 0;
    padding: 1.75rem 1.75rem 1.75rem 2.5rem;
    background: #fff;
    border-radius: var(--radius-m);
    border-left: 4px solid var(--sage);
    position: relative;
}
.pull-quote i {
    position: absolute;
    left: -16px; top: -16px;
    width: 38px; height: 38px;
    background: var(--navy); color: var(--sage);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 0.85rem;
}
.pull-quote p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--navy);
    margin: 0;
    line-height: 1.45;
}

/* ===================== CRANTOCK ===================== */
.section-crantock { background: var(--paper); }
.crantock-tile-stack {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.crantock-tile-stack .info-tile-half {
    flex: 1 1 0;
    min-height: 140px;
}

.info-tile {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-m);
    border: 1px solid var(--line);
    transition: all 0.35s var(--ease);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.info-tile h6 { color: var(--navy); margin-bottom: 0.4rem; }
.info-tile p { font-size: 0.9rem; margin: 0 0 0.8rem; }
.info-tile-tall { height: 100%; min-height: 140px; background: linear-gradient(180deg, #fff 0%, var(--mist) 100%); }
.info-tile:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.weather-panel {
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    border-radius: var(--radius-m);
    background:
        radial-gradient(circle at 84% 12%, rgba(0, 171, 190, 0.32), transparent 42%),
        radial-gradient(circle at 10% 100%, rgba(166, 216, 185, 0.22), transparent 48%),
        linear-gradient(140deg, #04435f 0%, #0a5576 54%, #0f6384 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px -34px rgba(0, 33, 56, 0.85);
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}
.weather-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.weather-panel-head h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
}

.weather-panel-head p {
    color: rgba(234, 243, 250, 0.88);
}

.weather-panel .eyebrow {
    color: rgba(214, 236, 248, 0.92);
}

.weather-panel .eyebrow::before {
    background: rgba(214, 236, 248, 0.8);
}
.weather-status {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0c4f6c;
    background: rgba(224, 247, 250, 0.92);
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    white-space: nowrap;
}
.weather-current {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 1rem;
}
.weather-temp {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1;
    min-width: 110px;
}
.weather-summary-block strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.weather-summary-block p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(234, 243, 250, 0.86);
}
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}
.weather-day {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 0.95rem;
    min-height: 118px;
}
.weather-day-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.7rem;
}
.weather-day-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.92rem;
}
.weather-day i {
    color: #c7ebff;
    font-size: 1.1rem;
}
.weather-day-temp {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}
.weather-day-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: rgba(230, 242, 250, 0.84);
}

.info-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--mist);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.soft-rule { border: none; border-top: 1px solid var(--line); margin: 4rem 0 0; }

.story-card {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    position: relative;
}
.story-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--teal);
    display: block;
    margin-bottom: 0.6rem;
}
.story-card h5 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.25rem; }
.story-card p { margin: 0; font-size: 0.95rem; }

/* ===================== CORNWALL ===================== */
.section-cornwall {
    display: none;
}
.section-cornwall .section-title { color: #fff; }

.section-cornwall .section-sub {
    max-width: 720px;
}

.cornwall-map-shell {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-l);
    padding: 1.25rem;
    box-shadow: var(--shadow-deep);
}

.cornwall-map-title {
    color: #fff;
    font-size: clamp(1.5rem, 2.8vw, 2.25rem);
    margin: 0;
}

.cornwall-map-note {
    color: rgba(255,255,255,0.72);
    max-width: 360px;
    font-size: 0.95rem;
}

.cornwall-map {
    position: relative;
    height: clamp(340px, 48vw, 520px);
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: linear-gradient(180deg, rgba(6, 30, 47, 0.72), rgba(0, 42, 68, 0.92));
}

.cornwall-map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.cornwall-map .leaflet-container {
    width: 100%;
    height: 100%;
    font: inherit;
    background: #0a2336;
}

.cornwall-map .leaflet-control-zoom {
    border: 0;
    box-shadow: var(--shadow-soft);
}

.cornwall-map .leaflet-control-zoom a {
    color: var(--navy);
}

.cornwall-pin-icon {
    background: transparent;
    border: none;
}

.cornwall-pin {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50% 50% 50% 0;
    background: var(--sage);
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.7);
}

.cornwall-pin::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--navy);
}

.cornwall-home-icon {
    background: transparent;
    border: none;
}

.cornwall-home-pin {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background: var(--navy);
    border: 3px solid #fff;
    box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.7);
    position: relative;
}

.cornwall-home-pin::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--sage);
}

.cornwall-home-tooltip.leaflet-tooltip {
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cornwall-home-tooltip.leaflet-tooltip::before {
    border-top-color: var(--navy);
}

.cornwall-popup .leaflet-popup-content-wrapper,
.cornwall-popup .leaflet-popup-tip {
    background: #fff;
    color: var(--ink);
}

.popup-title {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.popup-distance {
    display: inline-block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ocean);
    margin-bottom: 0.45rem;
}

.popup-copy {
    margin: 0;
    line-height: 1.5;
}

.dest-card {
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-m);
    padding: 1.75rem;
    height: 100%;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.dest-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(180deg, var(--sage), var(--ocean));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--ease);
}
.dest-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(166, 216, 185, 0.4);
    transform: translateY(-6px);
}
.dest-card:hover::before { transform: scaleY(1); }
.dest-card.is-active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(166, 216, 185, 0.55);
    transform: translateY(-6px);
    box-shadow: 0 18px 42px -22px rgba(0, 0, 0, 0.45);
}
.dest-card.is-active::before { transform: scaleY(1); }

.dest-card:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 4px;
}

.dest-distance {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--sage);
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    display: block;
}
.dest-card h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    font-weight: 400;
}
.dest-card p {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* ===================== LOCATION ===================== */
.section-location { background: var(--paper); }

.section-location .col-lg-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-block {
    margin: 1.5rem 0;
    font-style: normal;
}
.address-block p {
    margin-bottom: 0.7rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.address-block i {
    color: var(--teal);
    width: 18px;
    text-align: center;
}
.address-block a { color: var(--ink); font-weight: 500; }
.address-block a:hover { color: var(--teal); }

.travel-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}
.travel-grid > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    align-items: baseline;
    background: #fff;
    border: 1px solid rgba(20, 36, 52, 0.1);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    box-shadow: 0 12px 24px -22px rgba(0, 59, 92, 0.45);
}
.travel-grid strong {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--teal);
    font-weight: 400;
    font-size: 1.05rem;
}
.travel-grid span { color: var(--ink-soft); font-size: 0.93rem; }

.location-map-shell {
    position: relative;
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 8px solid #fff;
    background: linear-gradient(180deg, #f5fbfd, #ebf4f7);
    min-height: 420px;
}

.cornwall-map-location {
    height: clamp(420px, 58vh, 620px);
    border: none;
    border-radius: calc(var(--radius-l) - 8px);
}

.cornwall-map-location .leaflet-container {
    background: #dbe9ef;
}

/* ===================== CTA ===================== */
.section-cta { padding-bottom: clamp(2rem, 4.5vw, 4rem); background: var(--paper); }
.cta-card {
    background:
        radial-gradient(circle at 90% 10%, rgba(0, 171, 190, 0.35), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(166, 216, 185, 0.25), transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    border-radius: var(--radius-l);
    padding: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    box-shadow: var(--shadow-deep);
    position: relative;
    overflow: hidden;
        background-image: linear-gradient(rgba(7, 40, 67, 0.62), rgba(7, 40, 67, 0.62)), url('../images/studiocornish.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
}
.cta-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.7rem;
}
.cta-sub { color: rgba(255,255,255,0.82); margin: 0; font-size: 1.05rem; }

.cta-card .btn-coast {
    background: var(--sage);
    color: var(--navy);
    border-color: var(--sage);
}
.cta-card .btn-coast:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #061e2f;
    color: rgba(255,255,255,0.75);
    padding: 5rem 0 1.5rem;
}
.footer-brand {
    font-family: 'Fraunces', serif;
    color: #fff;
    font-weight: 400;
    font-size: 1.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}
.site-footer h6 {
    color: var(--sage);
    margin-bottom: 1.2rem;
}
.site-footer p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer ul li a {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    transition: color 0.25s var(--ease);
}
.site-footer ul li a:hover { color: var(--sage); }

.site-footer address p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
    font-size: 0.92rem;
}
.site-footer address i { color: var(--sage); margin-top: 0.32rem; }
.site-footer address a { color: rgba(255,255,255,0.85); }
.site-footer address a:hover { color: var(--sage); }

.social-row { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.social-row a {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: all 0.3s var(--ease);
}
.social-row a:hover {
    background: var(--sage);
    color: var(--navy);
    border-color: var(--sage);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
}
.footer-bottom a { color: var(--sage); }
.footer-bottom a:hover { color: #fff; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--paper);
        margin-top: 1rem;
        padding: 1rem 1.25rem;
        border-radius: var(--radius-m);
        border: 1px solid var(--line);
    }
    .navbar-nav .nav-link::after { display: none; }
    .navbar-nav .btn { display: inline-block; margin-top: 0.5rem; }
    .image-stack { padding-right: 0; padding-bottom: 0; }
    .image-stack-main img { height: 380px; }
    .image-stack-accent { position: static; width: 100%; margin-top: 1rem; }
    .image-stack-accent img { height: 220px; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
    .section { padding: clamp(2.6rem, 8vw, 4rem) 0; }
}

@media (max-width: 767.98px) {
    .hero { padding: 6rem 0 2.5rem; min-height: auto; }
    .hero-inner { gap: 2rem; }
    .hero-scroll-cue { display: none; }
    .hero-actions .btn { width: 100%; }
    .annexe-carousel .carousel-caption { left: 7%; right: 7%; max-width: none; bottom: 10%; }
    .annexe-carousel .carousel-caption h3 { font-size: 1.5rem; }
    .annexe-carousel .carousel-caption p { font-size: 0.9rem; }
    .annexe-carousel .carousel-item img { height: clamp(300px, 54vh, 420px); }
    .annexe-carousel .carousel-indicators { margin: 0 7%; }
    .annexe-carousel .carousel-control-prev,
    .annexe-carousel .carousel-control-next { width: 58px; }
    .annexe-carousel .carousel-control-prev-icon,
    .annexe-carousel .carousel-control-next-icon { width: 44px; height: 44px; }
    .location-map-shell { border-width: 6px; }
    .cornwall-map-location { height: 380px; }
    .travel-grid > div { grid-template-columns: 1fr; gap: 0.2rem; }
    .info-tile-tall { min-height: auto; }
    .weather-panel-head { flex-direction: column; }
    .weather-current { align-items: flex-start; }
    .weather-forecast { grid-template-columns: 1fr; }
}

/* Accessibility — reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }