/* ==========================================================
   LA MAISON — A FRENCH COUNTRYSIDE RETREAT
   Editorial, photo-led. Cream + forest + terracotta.
   ========================================================== */

:root {
    --cream:        #f3ede0;
    --cream-soft:   #f8f3e8;
    --cream-warm:   #ede5d4;
    --paper:        #faf6ee;
    --ink:          #2a2520;
    --ink-soft:     #4f4940;     /* darkened for AA on cream */
    --ink-mute:     #6a6155;     /* AA on cream at small sizes (≥4.5:1) */
    --line:         #d9d0bd;
    --line-soft:    #e6dec9;
    --forest:       #3a4530;
    --forest-deep:  #29321f;
    --terracotta:   #a66442;     /* slightly darker for AA */
    --terracotta-d: #8a512f;
    --gold:         #c9a25f;

    --serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --sans:  'Inter', system-ui, -apple-system, sans-serif;

    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm:   0 1px 2px rgba(42,37,32,0.06);
    --shadow-md:   0 2px 8px rgba(42,37,32,0.06), 0 16px 40px rgba(42,37,32,0.06);
    --shadow-lg:   0 4px 16px rgba(42,37,32,0.08), 0 30px 80px rgba(42,37,32,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: 0.3s var(--ease); }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* keyboard focus visibility — invisible for mouse users, visible for keyboard */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--forest);
    outline-offset: 3px;
    border-radius: 4px;
}
.nav-cta:focus-visible,
.form-submit:focus-visible {
    outline-offset: 4px;
}

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== TYPOGRAPHY HELPERS ========== */
.display {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--ink);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: none;
}
.display em {
    font-style: italic;
    color: var(--ink-soft);
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.5s var(--ease), padding 0.4s var(--ease),
                box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(243, 237, 224, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom-color: var(--line-soft);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    display: inline-block;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--forest);
    position: relative;
    flex-shrink: 0;
}
.brand-mark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cream);
    transform: translate(-50%, -50%);
}
.brand-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
}
.nav:not(.scrolled) .brand-name { color: var(--cream); }
.nav:not(.scrolled) .brand-mark { background: var(--cream); }
.nav:not(.scrolled) .brand-mark::after { background: var(--forest); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav:not(.scrolled) .nav-links a { color: rgba(243, 237, 224, 0.85); }
.nav:not(.scrolled) .nav-links a:hover { color: var(--cream); }
/* desktop only shows the inline reserve button in nav-cta — hide the menu-version */
.nav-links .nav-links-cta { display: none; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--forest);
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s var(--ease),
                transform 0.3s var(--ease),
                box-shadow 0.3s var(--ease);
}
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(243, 237, 224, 0.18) 50%,
        transparent 80%
    );
    transition: left 0.7s var(--ease);
    pointer-events: none;
}
.nav-cta:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 37, 32, 0.18);
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:active { transform: translateY(0); }
.nav-cta svg { transition: transform 0.3s var(--ease); position: relative; z-index: 1; }
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover svg { transform: translateX(4px); }
.nav:not(.scrolled) .nav-cta {
    background: var(--cream);
    color: var(--ink);
}
.nav:not(.scrolled) .nav-cta:hover {
    background: var(--paper);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.nav:not(.scrolled) .nav-cta::before {
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(42, 37, 32, 0.08) 50%,
        transparent 80%
    );
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 102;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--cream);
    transition: transform 0.4s var(--ease),
                opacity 0.3s var(--ease),
                background 0.3s var(--ease);
    transform-origin: center;
}
.nav.scrolled .nav-toggle span,
.nav-toggle.open span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 32px 96px;
    color: var(--cream);
    overflow: hidden;
}
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(42,37,32,0.45) 0%, rgba(42,37,32,0.15) 30%, rgba(42,37,32,0.10) 60%, rgba(42,37,32,0.55) 100%),
        linear-gradient(90deg, rgba(42,37,32,0.30) 0%, rgba(42,37,32,0.05) 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-left: max(0px, calc((100vw - 1280px) / 2 + 32px));
    animation: rise 1.2s var(--ease) 0.2s both;
}
@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 26px;
    color: var(--cream);
}
.eyebrow-line {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--cream);
    opacity: 0.7;
}

.hero-title {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}
.hero-title-l1 {
    display: block;
    font-size: clamp(56px, 10vw, 132px);
    font-weight: 400;
}
.hero-title-l2 {
    display: block;
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 300;
    margin-top: 6px;
    color: rgba(243, 237, 224, 0.88);
}
.hero-title-l2 em {
    font-style: italic;
    font-weight: 400;
}

.hero-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.55;
    max-width: 480px;
    color: rgba(243, 237, 224, 0.88);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: var(--cream);
}
.scroll-line {
    display: inline-block;
    width: 1px; height: 36px;
    background: linear-gradient(180deg, rgba(243,237,224,0.05), rgba(243,237,224,0.9));
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -36px; left: 0;
    width: 100%; height: 36px;
    background: linear-gradient(180deg, transparent, var(--cream));
    animation: scrollPulse 2.2s var(--ease) infinite;
}
@keyframes scrollPulse {
    0%   { top: -36px; opacity: 0; }
    50%  { opacity: 1; }
    100% { top: 36px;  opacity: 0; }
}
.scroll-label {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(243, 237, 224, 0.85);
}

.hero-meta {
    position: absolute;
    right: 32px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(243, 237, 224, 0.7);
    font-weight: 500;
}

/* ========== SECTION ========== */
.section {
    padding: 120px 0;
    position: relative;
}
.section-head {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
}
.section-head .display {
    font-size: clamp(36px, 5vw, 60px);
    margin: 18px 0 22px;
}
.section-num {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--terracotta);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
    margin-top: 8px;
}
.section-lede {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 580px;
    margin: 0 auto;
}

/* ========== STORY ========== */
.story {
    background: var(--cream);
    padding: 140px 0 120px;
}
.story-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.8fr;
    gap: 64px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}
.story-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    position: sticky;
    top: 100px;
}
.aside-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.aside-meta .section-num { margin: 0; }
.aside-figure {
    position: relative;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--cream-warm);
    box-shadow: var(--shadow-md);
}
.aside-figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
    filter: saturate(0.96);
}
.aside-figure:hover img {
    transform: scale(1.04);
    filter: saturate(1.04);
}
.aside-figure figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px 22px 20px;
    background: linear-gradient(180deg, transparent, rgba(42,37,32,0.78));
    color: var(--cream);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: 0.005em;
}
.story-main {
    min-width: 0;
}
.story-main .display {
    font-size: clamp(34px, 4.6vw, 56px);
    margin-bottom: 36px;
}
.story-body p {
    margin-bottom: 18px;
    color: var(--ink-soft);
}
.story-body .lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 22px;
}

.facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}
.fact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.fact-num {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    color: var(--forest);
}
.fact-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
}

/* ========== HOUSE ========== */
.house {
    background: var(--cream-soft);
    padding: 140px 0 120px;
}
.room {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto 120px;
}
.room > * { min-width: 0; }
.room:last-of-type { margin-bottom: 0; }
.room-reverse { grid-template-columns: 1fr 1.1fr; }
.room-reverse .room-media { order: 2; }
.room-reverse .room-text  { order: 1; }

.room-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream-warm);
    box-shadow: var(--shadow-md);
}
.room-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.room:hover .room-media img { transform: scale(1.04); }
.room-badge {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 14px;
    background: var(--paper);
    color: var(--ink);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
}

.room-text h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 40px);
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 22px;
    overflow-wrap: break-word;
}
.room-text p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}
.room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.room-meta li {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--forest);
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-weight: 500;
}

/* ========== INTERLUDE — SLOW DAYS ========== */
.interlude {
    background: var(--cream-warm);
    padding: 120px 0 110px;
    position: relative;
}
.interlude::before,
.interlude::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 1px;
    background: var(--terracotta);
    opacity: 0.5;
}
.interlude::before { top: 60px; }
.interlude::after  { bottom: 60px; }

.interlude-head {
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.interlude-eyebrow {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--terracotta);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}
.interlude-title {
    font-size: clamp(40px, 5.5vw, 64px);
}

.interlude-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.ifig {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.ifig-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}
.ifig-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    filter: saturate(0.95);
}
.ifig:hover .ifig-media img {
    transform: scale(1.04);
    filter: saturate(1.05);
}
.ifig figcaption {
    padding: 0 4px;
}
.ifig-time {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 600;
    margin-bottom: 10px;
}
.ifig figcaption p {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 400;
    max-width: 32ch;
}

.interlude-note {
    text-align: center;
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-style: italic;
    margin-top: 56px;
    opacity: 0.7;
}

/* ========== VILLAGE ========== */
.village {
    background: var(--cream);
    padding: 140px 0 120px;
}
.village-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 90px;
}
.vfig {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--cream-warm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
    aspect-ratio: 4 / 3;
}
.vfig:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.vfig-tall {
    grid-row: span 2;
    aspect-ratio: auto;
    align-self: stretch;
}
.vfig-tall img { height: 100%; }
.vfig-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
}
.vfig img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.vfig:hover img { transform: scale(1.04); }
.vfig figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 24px 22px;
    background: linear-gradient(180deg, transparent, rgba(42,37,32,0.78));
    color: var(--cream);
}
.vfig-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--cream);
}
.vfig figcaption p {
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(243, 237, 224, 0.92);
    max-width: 340px;
}

.nearby {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 0 0;
    border-top: 1px solid var(--line);
}
.nearby-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    color: var(--ink);
    text-align: center;
    margin-bottom: 36px;
}
.nearby-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
}
.nearby-list li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 4px 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
    align-items: baseline;
}
.nearby-dist {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--terracotta);
    font-weight: 500;
    grid-row: span 2;
}
.nearby-place {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
}
.nearby-note {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4;
}

/* ========== GALLERY ========== */
.gallery {
    background: var(--cream-soft);
    padding: 140px 0;
}
.gallery .section-head { margin-bottom: 60px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: 14px;
    max-width: 1180px;
    margin: 0 auto;
}
.gitem {
    overflow: hidden;
    background: var(--cream-warm);
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}
.gitem img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter 0.4s var(--ease);
    filter: saturate(0.95);
}
.gitem:hover img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

/* gallery — feature + uniform tiles */
.g1 { grid-column: span 2; grid-row: span 2; }

/* ========== REVIEWS ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}
.review {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 2px;
    padding: 40px 28px 28px;
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.review::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 80px;
    color: var(--terracotta);
    opacity: 0.22;
    position: absolute;
    top: 8px;
    left: 22px;
    line-height: 1;
    pointer-events: none;
}
.review-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 24px;
    flex: 1;
    quotes: none;
}
.review-attr {
    border-top: 1px solid var(--line-soft);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.review-name {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
}
.review-loc {
    font-size: 12px;
    color: var(--ink-mute);
}
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.review-form-wrap {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--line-soft);
}
.review-form-title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--ink);
    margin-bottom: 32px;
}
.review-form-title em { font-style: italic; color: var(--ink-soft); }
.star-picker {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
}
.star {
    font-size: 36px;
    color: var(--line);
    cursor: pointer;
    transition: color 0.2s var(--ease), transform 0.2s var(--ease);
    line-height: 1;
    user-select: none;
}
.star.active, .star.hover { color: var(--terracotta); }
.star:hover { transform: scale(1.15); }
.review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .review-form-row { grid-template-columns: 1fr; }
}

/* ========== STAY ========== */
.stay {
    background: var(--cream);
    padding: 140px 0;
}
.stay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}
.stay-grid > * { min-width: 0; }
.stay-left .display {
    font-size: clamp(34px, 4.6vw, 56px);
    margin: 14px 0 26px;
}
.stay-left .section-lede {
    text-align: left;
    margin: 0 0 40px;
    max-width: 460px;
}

.contact-list {
    margin-top: 32px;
    border-top: 1px solid var(--line);
}
.contact-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
}
a.contact-row { transition: padding 0.4s var(--ease); }
a.contact-row:hover { padding-left: 8px; }
a.contact-row:hover .contact-arrow { transform: translateX(4px); color: var(--forest); }
.contact-key {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
}
.contact-val {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--ink);
    font-weight: 500;
}
.w3w-mark {
    color: #e11f26;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.contact-arrow {
    color: var(--ink-mute);
    transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

/* form */
.stay-form {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-md);
}
.form-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
}
.form-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
    0%,100% { opacity: 0.4; transform: scale(1); }
    50%     { opacity: 1;   transform: scale(1.3); }
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.form-field label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 8px;
}
.form-field label .opt {
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink-mute);
    font-weight: 400;
    font-style: italic;
}
.form-field input,
.form-field textarea,
.form-field select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 0 13px;
    font-size: 15px;
    color: var(--ink);
    min-height: 44px;
    transition: border-color 0.3s var(--ease),
                background 0.3s var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}
.form-field textarea { min-height: 110px; }
.form-field select {
    background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%235d564d' stroke-width='1.5'><polyline points='1 1 6 7 11 1'/></svg>") right center no-repeat;
    background-size: 12px 8px;
    padding-right: 24px;
}
.form-field textarea { resize: vertical; min-height: 100px; font-family: var(--sans); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-bottom-color: var(--forest);
    background: linear-gradient(180deg, transparent 92%, rgba(58, 69, 48, 0.04) 92%);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-mute); }

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 12px;
    min-height: 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s var(--ease),
                transform 0.3s var(--ease),
                box-shadow 0.3s var(--ease);
}
.form-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(243, 237, 224, 0.20) 50%,
        transparent 80%
    );
    transition: left 0.7s var(--ease);
    pointer-events: none;
}
.form-submit:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(42, 37, 32, 0.22);
}
.form-submit:hover::before { left: 100%; }
.form-submit:active { transform: translateY(0); }
.form-submit span { position: relative; z-index: 1; }
.form-submit svg { transition: transform 0.4s var(--ease); position: relative; z-index: 1; }
.form-submit:hover svg { transform: translateX(5px); }

.form-submit.is-success {
    background: var(--terracotta);
    pointer-events: none;
}
.form-submit.is-success:hover { transform: none; }
.form-submit.is-shake { animation: shake 0.45s var(--ease-soft); }
@keyframes shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(3px); }
    30%, 50%, 70% { transform: translateX(-5px); }
    40%, 60% { transform: translateX(5px); }
}

.form-note {
    margin-top: 18px;
    font-size: 12.5px;
    color: var(--ink-mute);
    font-style: italic;
}

/* ========== FOOTER ========== */
.foot {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 64px 0 28px;
}
.foot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.foot-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.foot-brand .brand-mark { background: var(--cream); }
.foot-brand .brand-mark::after { background: var(--forest); }
.foot-brand .brand-name {
    color: var(--cream);
    font-size: 24px;
}
.foot-social {
    display: flex;
    justify-content: center;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(243, 237, 224, 0.25);
    color: rgba(243, 237, 224, 0.8);
    transition: transform 0.4s var(--ease),
                background 0.4s var(--ease),
                color 0.4s var(--ease),
                border-color 0.4s var(--ease);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover {
    background: var(--cream);
    color: var(--forest-deep);
    border-color: var(--cream);
    transform: translateY(-3px);
}
.foot-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.foot-nav a {
    font-size: 13.5px;
    letter-spacing: 0.04em;
    color: rgba(243, 237, 224, 0.7);
    transition: color 0.3s var(--ease);
}
.foot-nav a:hover { color: var(--cream); }
.foot-bottom {
    width: 100%;
    padding-top: 28px;
    border-top: 1px solid rgba(243, 237, 224, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(243, 237, 224, 0.55);
}
.foot-link-btn {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: rgba(243, 237, 224, 0.55);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(243, 237, 224, 0.3);
    transition: color 0.3s var(--ease);
}
.foot-link-btn:hover { color: var(--cream); text-decoration-color: var(--cream); }
.foot-bottom strong {
    color: rgba(243, 237, 224, 0.85);
    font-weight: 600;
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .room { grid-template-columns: 1fr 1fr; gap: 48px; }
    .room-reverse { grid-template-columns: 1fr 1fr; }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 720px;
    }
    .story-aside {
        gap: 24px;
        position: static;
    }
    .aside-meta {
        flex-direction: row;
        align-items: baseline;
        gap: 18px;
        border-top: none;
        padding-top: 0;
    }
    .aside-figure img {
        aspect-ratio: 4 / 3;
    }
    .stay-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    /* mobile drawer */
    .nav-links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        background: var(--cream);
        padding: 90px 32px 40px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
        z-index: 101;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links > a {
        display: block;
        font-family: var(--serif);
        font-size: 32px;
        font-weight: 400;
        color: var(--ink) !important;
        padding: 14px 0;
        letter-spacing: -0.005em;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.5s var(--ease),
                    transform 0.5s var(--ease),
                    color 0.3s var(--ease);
        text-align: center;
        min-height: 44px;
    }
    .nav-links > a::after { display: none; }
    .nav-links > a:hover { color: var(--forest) !important; }
    .nav-links.open > a {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.open > a:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.open > a:nth-child(2) { transition-delay: 0.14s; }
    .nav-links.open > a:nth-child(3) { transition-delay: 0.20s; }
    .nav-links.open > a:nth-child(4) { transition-delay: 0.26s; }
    .nav-links.open > a:nth-child(5) { transition-delay: 0.32s; }

    .nav-links .nav-links-cta {
        display: inline-flex;
        align-items: center;
        margin-top: 18px;
        padding: 14px 32px;
        background: var(--forest);
        color: var(--cream) !important;
        border-radius: 999px;
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.04em;
        min-height: auto;
    }
    .nav-links .nav-links-cta:hover {
        background: var(--forest-deep);
        color: var(--cream) !important;
    }
    body.menu-open { overflow: hidden; }

    .container { padding: 0 24px; }
    .section { padding: 88px 0; }
    .section-head { margin-bottom: 56px; }
    .story { padding: 100px 0 88px; }
    .house, .village, .gallery, .stay { padding: 100px 0 88px; }

    .hero { padding: 100px 24px 88px; }
    .hero-content { margin-left: 0; }
    .hero-meta { display: none; }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .facts {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .fact-num { font-size: 38px; }

    .room, .room-reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 80px;
    }
    .room-reverse .room-media { order: 0; }
    .room-reverse .room-text { order: 1; }
    .room-media { aspect-ratio: 4 / 3; }

    .interlude { padding: 88px 0 80px; }
    .interlude-head { margin-bottom: 48px; }
    .interlude-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 480px;
    }
    .ifig-media { aspect-ratio: 4 / 3; }

    .village-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .vfig-tall { grid-row: auto; aspect-ratio: 4 / 3; }
    .vfig-wide { grid-column: auto; aspect-ratio: 4 / 3; }
    .vfig { aspect-ratio: 4 / 3; }

    .nearby-list { grid-template-columns: 1fr; gap: 16px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }
    .g1 { grid-column: span 2; grid-row: span 2; }

    .stay-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .stay-form { padding: 32px 24px 28px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    /* larger, easier-to-tap stars */
    .star-picker { gap: 10px; }
    .star { font-size: 40px; padding: 4px 2px; }

    /* roomier footer link tap targets */
    .foot-nav { gap: 22px 28px; }
    .foot-nav a { padding: 8px 0; }
}

@media (max-width: 480px) {
    .hero-title-l1 { font-size: 64px; }
    .hero-title-l2 { font-size: 28px; }
    .contact-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .contact-arrow { display: none; }
}

/* ========== COOKIE CONSENT ========== */
.consent-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    padding: 20px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
    pointer-events: none;
}
.consent-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.consent-inner {
    max-width: 640px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(42, 37, 32, 0.18);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.consent-text {
    flex: 1;
    min-width: 220px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}
.consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.consent-btn {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 11px 20px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
    white-space: nowrap;
}
.consent-decline {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
}
.consent-decline:hover { border-color: var(--ink-mute); color: var(--ink); }
.consent-accept {
    background: var(--forest);
    border: 1px solid var(--forest);
    color: var(--cream);
}
.consent-accept:hover { background: var(--forest-deep); transform: translateY(-1px); }

@media (max-width: 560px) {
    .consent-banner { padding: 14px; }
    .consent-inner { padding: 18px 20px; flex-direction: column; align-items: stretch; text-align: center; }
    .consent-actions { justify-content: center; }
}
