/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
    --dk:      #28160a;
    --mid:     #3d200e;
    --warm:    #6b3a1f;
    --pale:    #b9ad94;
    --green:   #5a8a2e;
    --green-h: #3d6a1a;
    --orange:  #973c13;
    --ora-h:   #732f0f;
    --cream:   #f5efe6;
    --cdk:     #e8ddd0;
    --white:   #ffffff;
    --text:    #28160a;
    --tmid:    #5a3a20;
    --sh:      0 2px 14px rgba(40,22,10,.13);
    --shl:     0 6px 28px rgba(40,22,10,.22);
    --tr:      .2s ease;
}

/* ── BASE ── */
html, body { height: 100%; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Lato', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: #f0ebe3; display: flex; flex-direction: column; min-height: 100vh; }
img   { max-width: 100%; display: block; }
a     { color: var(--green); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--green-h); }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.2; color: var(--orange); }
h1 { font-size: 40px; }
h2 { font-size: 34px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 17px; color: var(--dk); }
p  { margin: 0 0 10px; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.page-content { flex: 1 0 auto; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 8px 22px;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--tr);
    line-height: 1.2;
}
.btn-green  { background: var(--green);  color: var(--white); border-color: var(--green); }
.btn-green:hover { background: var(--green-h); border-color: var(--green-h); color: var(--white); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: var(--white); color: var(--dk); border-color: var(--white); }
.btn-outline-dk { background: transparent; color: var(--dk); border-color: var(--dk); }
.btn-outline-dk:hover { background: var(--dk); color: var(--white); }

/* ═══════════════════════════════════════
   HEADER — masthead (non-sticky, wood bg)
═══════════════════════════════════════ */
.site-header {
    background-image: url('../img/layout/top-wood.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
}
.masthead {
    background-color: rgba(0,0,0,0.70);
}
.masthead-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 20px;
    padding-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.masthead .logo {
    flex-shrink: 0;
    display: block;
    position: relative;
    z-index: 510;
    margin: 1px 0 -80px;
}
.masthead .logo img {
    height: 120px;
    width: auto;
}
.masthead-center {
    flex: 1;
    padding-left: 10px;
}
.masthead-center .tagline {
    font-family: 'Courgette', cursive;
    font-style: normal;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2px;
}
.masthead-center .site-desc {
    font-family: 'Kreon', serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--white);
    letter-spacing: 0.02em;
}
.masthead-phone {
    text-align: right;
    flex-shrink: 0;
}
.masthead-phone a {
    font-family: 'Kreon', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.masthead-phone a:hover { color: var(--pale); }

/* ═══════════════════════════════════════
   STICKY NAV — logo + menu inline
═══════════════════════════════════════ */
.main-nav {
    background: var(--dk);
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 46px;
    gap: 0;
}

.nav-logo { display: none; }

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    margin-left: auto;
}
.nav-menu > li {
    position: relative;
}
.nav-menu > li > a {
    display: block;
    color: var(--white);
    font-family: 'Courgette', cursive;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 14px 18px;
    white-space: nowrap;
    transition: color var(--tr), background var(--tr);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: var(--pale);
    background: rgba(255,255,255,.05);
}
.nav-menu > li.has-children > a::after {
    content: ' ▾';
    font-size: .7em;
    opacity: .75;
}

/* Dropdown */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dk);
    min-width: 175px;
    border-top: 2px solid var(--pale);
    box-shadow: 0 6px 20px rgba(0,0,0,.5);
    list-style: none;
    z-index: 600;
}
.sub-menu li a {
    display: block;
    color: rgba(255,255,255,.85);
    font-family: 'Courgette', cursive;
    font-size: 1rem;
    padding: 11px 20px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background var(--tr), color var(--tr);
}
.sub-menu li a:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-menu > li:hover > .sub-menu { display: block; }

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 4px;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: .3s;
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background: var(--dk);
}
.hero-wrap .splide { position: relative; }
.hero-wrap .splide__slide-bg {
    height: 480px;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.hero-wrap .splide__slide-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-wrap .splide__slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.30) 0%,
        rgba(0,0,0,.12) 40%,
        rgba(0,0,0,.52) 100%
    );
    pointer-events: none;
}
.hero-wrap .splide__arrow {
    background: rgba(0,0,0,.32);
    border-radius: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.22);
    z-index: 20;
}
.hero-wrap .splide__arrow:hover { background: rgba(0,0,0,.62); }
.hero-wrap .splide__arrow svg { fill: var(--white); width: 16px; height: 16px; }
.hero-wrap .splide__pagination { display: none; }
.hero-wrap .splide__slide { position: relative; }

/* Hero overlay text */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero-text {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    pointer-events: auto;
}
.hero-text .hero-tagline {
    font-family: 'Courgette', cursive;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: rgba(255,255,255,.88);
    margin-bottom: 12px;
    text-shadow: 0 1px 8px rgba(0,0,0,.7);
    letter-spacing: .04em;
}
.hero-text h2 {
    font-family: 'Courgette', cursive;
    font-weight: 400;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,.75);
}
.hero-text .hero-sub {
    font-family: 'Kreon', serif;
    font-size: clamp(.82rem, 1.6vw, 1.05rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.80);
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-cta .btn {
    padding: 11px 28px;
    font-size: .82rem;
}

/* ═══════════════════════════════════════
   HOME — CABINS GRID
═══════════════════════════════════════ */
.home-section {
    background: #f0ebe3;
    padding: 76px 0 72px;
}
.home-h1 {
    font-family: 'Courgette', cursive;
    font-size: 44px;
    color: var(--dk);
    text-align: center;
    margin: 0 0 12px;
    font-weight: 400;
}
.home-subtitle {
    text-align: center;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--tmid);
    margin-bottom: 52px;
    margin-bottom: 40px;
}
.cabins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cabin-card {
    background: var(--white);
    box-shadow: var(--sh);
    overflow: hidden;
    transition: transform var(--tr), box-shadow var(--tr);
    border-bottom: 3px solid transparent;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.cabin-card:hover { transform: translateY(-5px); box-shadow: var(--shl); border-bottom-color: var(--orange); }
.cabin-thumb {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .45s ease;
    overflow: hidden;
}
.cabin-card:hover .cabin-thumb { transform: scale(1.05); }
.box-info {
    padding: 22px 22px 28px;
    text-align: center;
}
.box-info h4 {
    font-family: 'Courgette', cursive;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}
.box-info h4 a { color: var(--orange); }
.box-info h4 a:hover { color: var(--ora-h); }
.box-info hr {
    border: none;
    border-top: 2px solid var(--orange);
    width: 50%;
    margin: 0 auto 10px;
}
.box-info .overview {
    list-style: none;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--tmid);
    margin-bottom: 52px;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-section {
    position: relative;
    background-image: url('../img/layout/about-bg.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(40,22,10,.72);
}
.about-section .container { position: relative; z-index: 1; }
.about-section h2 {
    font-family: 'Courgette', cursive;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
    margin: 12px 20px 0;
    line-height: 1.2;
}
.about-section h2 span {
    font-size: 30px;
    display: block;
    line-height: 1.8;
}
.about-section p {
    font-family: Georgia, serif;
    font-style: italic;
    line-height: 1.8;
    font-size: 0.97rem;
    max-width: 860px;
    margin: 12px auto 0;
    color: rgba(255,255,255,.92);
}
.about-section p a { color: #ffc073; }
.about-section p a:hover { color: var(--white); }
.about-section .signature {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 16px;
    color: var(--white);
}

/* ═══════════════════════════════════════
   ON THE FARM SECTION
═══════════════════════════════════════ */
.farm-section {
    background: var(--dk);
    color: var(--white);
    padding: 56px 0 48px;
}
.farm-heading {
    font-family: 'Courgette', cursive;
    font-size: clamp(28px, 4vw, 38px);
    color: var(--pale);
    text-align: center;
    margin-bottom: 6px;
}
.farm-sub {
    text-align: center;
    font-family: 'Kreon', serif;
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .06em;
    margin-bottom: 36px;
}
.farm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.farm-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.farm-card-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.farm-card-photos .farm-card-img:only-child {
    grid-column: 1 / -1;
}
.farm-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.farm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.farm-card:hover .farm-card-img img { transform: scale(1.04); }
.farm-card-body {
    padding: 18px 20px 22px;
    flex: 1;
}
.farm-card h3 {
    font-family: 'Kreon', serif;
    font-size: 1.05rem;
    color: var(--orange);
    margin-bottom: 8px;
}
.farm-card p {
    font-size: .88rem;
    line-height: 1.65;
    color: rgba(255,255,255,.8);
    margin-bottom: 8px;
}
.farm-card p:last-child { margin-bottom: 0; }
/* Cards without images get padding on top */
.farm-card:not(.has-img) .farm-card-body { padding-top: 24px; }
.farm-note {
    font-size: .78rem !important;
    font-style: italic;
    color: rgba(255,255,255,.5) !important;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 8px;
    margin-top: 4px;
}
.farm-cta {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.farm-cta p {
    font-family: 'Kreon', serif;
    font-size: 1rem;
    color: rgba(255,255,255,.7);
}
.farm-cta a { color: var(--orange); }

/* ═══════════════════════════════════════
   HOSTS SECTION
═══════════════════════════════════════ */
.hosts-section {
    background: #f8f4ee;
    padding: 80px 0;
}
.hosts-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.host-text { flex: 1; }
.host-text h3 {
    font-family: 'Courgette', cursive;
    font-size: 34px;
    font-weight: 400;
    color: var(--dk);
    margin-bottom: 16px;
}
.host-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--tmid);
    margin-bottom: 12px;
}
.host-signature {
    font-family: 'Courgette', cursive;
    font-size: 1.25rem;
    color: var(--green);
    margin-top: 16px;
    line-height: 1.5;
}

/* Host image — round with border */
.host-img {
    flex-shrink: 0;
    position: relative;
}
.host-img::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--pale);
    pointer-events: none;
    z-index: 1;
}
.host-img::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(107,58,31,.15);
    pointer-events: none;
    z-index: 1;
}
.host-img img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 5px solid var(--white);
    box-shadow: 0 8px 32px rgba(40,22,10,.18);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-section {
    position: relative;
    background-image: url('../img/layout/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 72px 0 80px;
}
.testi-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30,15,5,.52);
}
.testi-section .container { position: relative; z-index: 1; }
.testi-section h3 {
    font-family: 'Courgette', cursive;
    font-size: 34px;
    font-weight: 400;
    color: var(--white);
    text-align: center;
    margin-bottom: 28px;
    margin-bottom: 20px;
}
.testi-splide { max-width: 720px; margin: 0 auto; }
.testi-splide .splide__slide {
    text-align: center;
    padding: 10px 40px 28px;
}
.testi-splide .splide__slide p {
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,.92);
    margin-bottom: 14px;
}
.testi-splide .splide__slide .guest-name {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pale);
    font-style: normal;
    font-family: 'Lato', sans-serif;
}
.testi-splide .splide__pagination { bottom: 10px; }
.testi-splide .splide__pagination__page {
    background: rgba(255,255,255,.28);
    border: none;
    width: 10px; height: 10px;
    margin: 2px 4px;
    transition: background var(--tr), transform var(--tr);
}
.testi-splide .splide__pagination__page.is-active {
    background: #c39958;
    transform: scale(1.2);
}
.testi-splide .splide__arrows { display: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    position: relative;
    background-image: url('../img/layout/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    margin-top: auto;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,7,2,.72);
}
.site-footer .container {
    position: relative;
    z-index: 1;
    padding-top: 22px;
    padding-bottom: 18px;
    text-align: center;
    color: #b7b7b7;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.75;
}
.footer-nav { margin-bottom: 14px; }
.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav ul li a {
    display: block;
    font-family: 'Kreon', serif;
    font-style: normal;
    font-size: 1.05rem;
    color: var(--pale);
    padding: 4px 14px;
    transition: color var(--tr);
}
.footer-nav ul li a:hover { color: var(--white); }
.footer-social { margin-bottom: 12px; }
.footer-social a { display: inline-block; }
.footer-social img { width: 36px; height: 36px; opacity: .8; transition: opacity var(--tr); }
.footer-social a:hover img { opacity: 1; }
.footer-info { font-size: 0.95rem; margin-bottom: 4px; }
.footer-info a { color: var(--pale); }
.footer-info a:hover { color: var(--white); }
.dev-info { font-size: 0.78rem; opacity: .5; }

/* ═══════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════ */
.page-header {
    background: var(--dk);
    padding: 44px 0 36px;
    text-align: center;
    border-bottom: 3px solid var(--warm);
    margin-bottom: 32px;
}
.page-header h1 {
    color: var(--white);
    margin: 0;
    font-family: 'Courgette', cursive;
    font-size: 38px;
    font-weight: 400;
}
.page-header p {
    color: var(--pale);
    font-family: Georgia, serif;
    font-style: italic;
    margin-top: 6px;
    font-size: 0.97rem;
}

/* ═══════════════════════════════════════
   CABINS LIST PAGE
═══════════════════════════════════════ */
.cabins-intro {
    font-family: Georgia, serif;
    font-style: italic;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.82;
    color: var(--tmid);
}
.cabin-list-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    background: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--sh);
    overflow: hidden;
    transition: box-shadow var(--tr);
}
.cabin-list-item:hover { box-shadow: var(--shl); }
.cabin-list-img { overflow: hidden; }
.cabin-list-img img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.cabin-list-item:hover .cabin-list-img img { transform: scale(1.04); }
.cabin-list-body { padding: 24px 28px; }
.cabin-list-body h4 {
    font-family: 'Courgette', cursive;
    font-size: 24px;
    font-weight: 400;
    color: var(--orange);
    margin-bottom: 4px;
}
.cabin-list-body h4 a { color: var(--orange); }
.cabin-list-body h4 a:hover { color: var(--ora-h); }
.cabin-list-body hr { border: none; border-top: 2px solid var(--orange); width: 50px; margin: 0 0 12px; }
.cabin-list-body ul { list-style: none; margin-bottom: 8px; }
.cabin-list-body ul li { font-family: Georgia, serif; font-style: italic; font-size: 0.92rem; color: var(--tmid); line-height: 1.75; }
.cabin-list-body .cabin-desc { font-size: 0.92rem; color: var(--tmid); margin-bottom: 8px; font-family: Georgia, serif; font-style: italic; }
.cabin-list-body .amenities-text { font-size: 0.8rem; color: #aaa; margin-bottom: 14px; line-height: 1.65; }

/* ═══════════════════════════════════════
   SINGLE CABIN
═══════════════════════════════════════ */
.single-cabin-layout {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 24px;
    margin-bottom: 24px;
    align-items: start;
    width: 100%;
    min-width: 0;
}
.single-cabin-layout > * { min-width: 0; overflow: hidden; }
.cabin-gallery-main { width: 100%; overflow: hidden; }
.cabin-gallery-main .splide { width: 100%; }
.cabin-gallery-main .splide__track { width: 100%; overflow: hidden; }
.cabin-gallery-main .splide__slide-bg {
    height: 480px;
    background-size: cover;
    background-position: center;
    width: 100%;
}
.cabin-thumbs { background: var(--dk); margin-top: 3px; width: 100%; overflow: hidden; }
.cabin-thumbs .splide__slide { opacity: .55; transition: opacity var(--tr); cursor: pointer; }
.cabin-thumbs .splide__slide.is-active { opacity: 1; }
.cabin-thumbs .splide__slide img { width: 100%; height: 78px; object-fit: cover; display: block; }
.cabin-thumbs .splide__arrow { background: rgba(0,0,0,.5); border-radius: 0; }
.cabin-thumbs .splide__arrow svg { fill: var(--white); width: 13px; height: 13px; }

.cabin-info-box {
    background: var(--white);
    box-shadow: var(--sh);
    padding: 18px 20px 22px;
    text-align: center;
    position: sticky;
    top: 56px;
}
.cabin-info-box h4 { font-family: 'Courgette', cursive; font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.cabin-info-box hr { border: none; border-top: 2px solid var(--orange); width: 50%; margin: 0 auto 12px; }
.cabin-info-box .price { font-family: 'Kreon', serif; font-size: 1rem; color: var(--green); line-height: 1.5; margin-bottom: 8px; }
.cabin-info-box .checkin { font-family: 'Kreon', serif; font-size: 0.92rem; color: var(--tmid); line-height: 1.5; margin-bottom: 5px; }
.cabin-info-box .checkin-note { font-size: 0.76rem; color: #aaa; margin-bottom: 14px; line-height: 1.5; }
.cabin-info-box .short-info { font-size: 0.88rem; color: var(--tmid); margin-bottom: 14px; }
.cabin-info-box .inquire-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--tmid); margin-bottom: 8px; }
.cabin-info-box .btn { display: block; margin-bottom: 8px; text-align: center; }

.text-box {
    background: var(--white);
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: var(--sh);
}
.text-box h3 { text-align: center; font-family: 'Courgette', cursive; font-size: 32px; font-weight: 400; margin-bottom: 14px; }
.text-box p { color: var(--tmid); line-height: 1.8; }
.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px 0; margin-top: 14px; }
.amenity-item { padding: 2px 0; }
.amenity-item h5 { display: inline; font-size: 0.9rem; font-weight: 700; color: var(--dk); font-family: 'Kreon', serif; }
.amenity-extra { display: inline; font-size: 0.8rem; color: #aaa; font-family: 'Lato', sans-serif; }

.cabin-testi {
    background: #f0ebe3;
    padding: 52px 0 64px;
    margin-bottom: 24px;
    text-align: center;
}
.cabin-testi h3 { font-family: 'Courgette', cursive; font-weight: 400; color: var(--orange); margin-bottom: 20px; }
.cabin-testi-splide { max-width: 680px; margin: 0 auto; }
.cabin-testi-splide .splide__slide { padding: 0 10px 20px; }
.cabin-testi-splide .splide__slide p { font-family: Georgia, serif; font-style: italic; font-size: 0.97rem; line-height: 1.82; color: var(--tmid); margin-bottom: 12px; }
.cabin-testi-splide .splide__slide .guest-name { display: block; font-weight: 700; font-size: 0.8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green); font-style: normal; font-family: 'Lato', sans-serif; }
.cabin-testi-splide .splide__arrows { display: none; }
.cabin-testi-splide .splide__pagination { bottom: 10px; }
.cabin-testi-splide .splide__pagination__page { background: var(--pale); border: none; }
.cabin-testi-splide .splide__pagination__page.is-active { background: var(--orange); transform: scale(1.25); }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
    padding-bottom: 40px;
}
.gallery-item { overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item a { display: block; width: 100%; height: 100%; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.zoom-overlay {
    position: absolute; inset: 0;
    background: rgba(40,22,10,.32);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--tr);
}
.gallery-item:hover .zoom-overlay { opacity: 1; }
.zoom-overlay svg { width: 30px; height: 30px; fill: var(--white); }

/* ═══════════════════════════════════════
   ATTRACTIONS
═══════════════════════════════════════ */
.attraction-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    background: var(--white);
    padding: 32px 24px 36px;
    border-bottom: 2px solid #e8e0d4;
    position: relative;
}
.attraction-item:last-child { border-bottom: none; }
.attraction-item.hidden { display: none; }

/* TEXT LEFT */
.attraction-body {
    flex: 1;
    min-width: 0;
    padding-right: 0;
}
.attraction-body h4 {
    font-family: 'Courgette', cursive;
    color: var(--orange);
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 0 14px;
    line-height: 1.2;
}
.attraction-body .attraction-meta {
    font-size: 0.84rem;
    color: var(--tmid);
    margin-bottom: 10px;
    line-height: 1.6;
}
.attraction-body p {
    font-size: 0.92rem;
    line-height: 1.78;
    color: var(--text);
    margin-bottom: 14px;
}
.attraction-body .btn { font-size: 0.75rem; padding: 7px 20px; }

/* IMAGE RIGHT */
.attraction-img {
    flex-shrink: 0;
    width: 240px;
    order: 2;
}
.attraction-img a { display: block; }
.attraction-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border: 6px solid var(--pale);
    box-shadow: 2px 2px 8px rgba(0,0,0,.12);
    transition: transform .35s ease;
}
.attraction-item:hover .attraction-img img { transform: scale(1.02); }

/* No image — body takes full width */
.attraction-item.no-img .attraction-body { padding-right: 0; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-wrap {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 44px;
    padding-bottom: 40px;
    align-items: start;
}
.contact-info-box h3 { font-family: 'Courgette', cursive; font-weight: 400; margin-bottom: 14px; }
.contact-info-box p { font-size: 0.95rem; line-height: 1.75; color: var(--tmid); margin-bottom: 8px; }
.contact-info-box strong { color: var(--dk); }
.contact-info-box a { color: var(--green); }

.contact-form-box h3 { font-family: 'Courgette', cursive; font-weight: 400; margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px; color: var(--dk); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 9px 12px;
    border: 1px solid var(--cdk); border-radius: 3px;
    font-family: 'Lato', sans-serif; font-size: 0.92rem;
    background: #faf7f2; color: var(--text);
    transition: border var(--tr), box-shadow var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(98,120,40,.1); }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.74rem; color: #bbb; margin-top: 3px; line-height: 1.4; }
.mandatory { color: #c0392b; }
.btn-submit {
    background: var(--green); color: var(--white);
    padding: 11px 34px; border: none; border-radius: 4px;
    font-family: 'Lato', sans-serif; font-size: 0.82rem;
    font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    cursor: pointer; transition: background var(--tr);
}
.btn-submit:hover { background: var(--green-h); }

/* ═══════════════════════════════════════
   DIRECTIONS
═══════════════════════════════════════ */
.directions-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 44px;
    padding-bottom: 40px;
    align-items: start;
}
.directions-info h3 { font-family: 'Courgette', cursive; font-weight: 400; margin-bottom: 12px; }
.directions-info p { font-size: 0.94rem; line-height: 1.7; color: var(--tmid); margin-bottom: 6px; }
.directions-steps h3 { font-family: 'Courgette', cursive; font-weight: 400; margin-bottom: 16px; }
.directions-steps ol { padding-left: 20px; }
.directions-steps ol li { margin-bottom: 10px; line-height: 1.7; color: var(--tmid); font-size: 0.94rem; }
.map-embed { margin-top: 20px; border: 3px solid var(--cdk); }
.map-embed iframe { width: 100%; height: 310px; display: block; border: none; }

/* ═══════════════════════════════════════
   POLICIES
═══════════════════════════════════════ */
.policies-wrap { max-width: 820px; margin: 0 auto; padding-bottom: 40px; }
.policies-intro {
    font-family: Georgia, serif; font-style: italic;
    font-size: 0.97rem; line-height: 1.85; color: var(--tmid);
    background: var(--white); padding: 22px 26px;
    border-left: 4px solid var(--orange); box-shadow: var(--sh); margin-bottom: 28px;
}
hr.dashed { border: none; border-top: 2px dashed var(--cdk); margin: 24px 0; }
.policies-wrap h3 { font-family: 'Courgette', cursive; font-weight: 400; margin-bottom: 18px; }
.policy-section { margin-bottom: 20px; }
.policy-section h5 {
    font-family: 'Lato', sans-serif; font-weight: 700;
    font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--white); background: var(--warm);
    padding: 5px 13px; display: inline-block; margin-bottom: 10px;
}
.policy-section p, .policy-section ul { font-size: 0.93rem; line-height: 1.8; color: var(--tmid); }
.policy-section ul { padding-left: 18px; margin-top: 6px; }
.policy-section ul li { margin-bottom: 6px; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* Large tablet */
@media (max-width: 1024px) {
    .cabins-grid { grid-template-columns: repeat(2, 1fr); }
    .cabin-list-item { grid-template-columns: 280px 1fr; }
    .single-cabin-layout { grid-template-columns: 1fr 270px; }
    .attraction-img { width: 220px; }
    .attraction-img img { height: 160px; }
}

/* Tablet */
@media (max-width: 860px) {
    .masthead-phone { display: none; }
    .cabins-grid { grid-template-columns: repeat(2, 1fr); }
    .cabin-list-item { grid-template-columns: 240px 1fr; }
    .single-cabin-layout { grid-template-columns: 1fr; }
    .cabin-info-box { position: static; }
    .contact-wrap { grid-template-columns: 1fr; gap: 28px; }
    .directions-wrap { grid-template-columns: 1fr; gap: 28px; }
    .hosts-inner { gap: 24px; }
    .host-img img { width: 220px; }
    .about-section { background-attachment: scroll; }
    .testi-section { background-attachment: scroll; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 640px) {
    /* Header */
    .masthead-inner { padding: 10px 14px; gap: 10px; }
    .masthead .logo { margin-bottom: 0; }
    .masthead .logo img { height: 60px; }
    .masthead-center .tagline { font-size: 0.9rem; }
    .masthead-center .site-desc { font-size: 0.8rem; }

    /* Nav */
    .nav-logo { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--mid);
        box-shadow: 0 8px 24px rgba(0,0,0,.5);
        z-index: 600;
        border-top: 2px solid var(--pale);
        max-height: 75vh;
        overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a {
        padding: 12px 18px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        font-size: 0.95rem;
    }
    .sub-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        background: rgba(0,0,0,.2);
        display: none;
        min-width: 0;
    }
    .nav-menu > li.open > .sub-menu { display: block; }
    .sub-menu li a { padding: 9px 18px 9px 32px; font-size: 0.82rem; }

    /* Hero */
    .hero-wrap .splide__slide-bg { height: 260px; }
    .hero-scroll-btn { display: none; }

    /* Home */
    .home-h1 { font-size: 32px; margin-bottom: 20px; }
    .cabins-grid { grid-template-columns: 1fr; gap: 16px; }
    .cabin-thumb { height: 220px; }

    /* About */
    .about-section h2 { font-size: 28px; }
    .about-section h2 span { font-size: 22px; }
    .about-section { padding: 28px 0; }

    /* Farm */
    .farm-grid { grid-template-columns: 1fr; }
    .farm-section { padding: 36px 0 32px; }

    /* Hosts */
    .hosts-inner { flex-direction: column; text-align: center; gap: 16px; }
    .host-img img { width: 200px; margin: 0 auto; }
    .hosts-section { padding: 24px 0; }

    /* Testi */
    .testi-section { padding: 16px 0 52px; }
    .testi-section h3 { font-size: 26px; }

    /* Cabin list */
    .cabin-list-item { grid-template-columns: 1fr; }
    .cabin-list-img img { min-height: 200px; max-height: 240px; }

    /* Cabin single */
    .cabin-gallery-main .splide__slide-bg { height: 240px; }
    .cabin-thumbs .splide__slide img { height: 54px; }
    .amenities-grid { grid-template-columns: repeat(2,1fr); }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }

    /* Hosts */
    .hosts-inner { flex-direction: column; gap: 32px; text-align: center; }
    .host-img::before, .host-img::after { display: none; }
    .host-img img { width: 200px; height: 200px; }

    /* Attractions */
    .attraction-item { flex-direction: column-reverse; gap: 16px; padding: 24px 0 28px; }
    .attraction-img { width: 100%; margin-left: 0; }
    .attraction-img img { height: 220px; border-width: 4px; }
    .attraction-body { padding-right: 0; }
    .attraction-body h4 { font-size: 1.2rem; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; }

    /* Page header */
    .page-header h1 { font-size: 28px; }
    .page-header { padding: 22px 0 16px; margin-bottom: 22px; }

    /* Footer */
    .footer-nav ul li a { padding: 4px 8px; font-size: 0.88rem; }
}

/* Small mobile */
@media (max-width: 400px) {
    .masthead .logo img { height: 50px; }
    .home-h1 { font-size: 26px; }
    .about-section h2 { font-size: 22px; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 4px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .cabin-gallery-main .splide__slide-bg { height: 220px; }
}

/* ── GLOBAL OVERFLOW PROTECTION ── */
body { overflow-x: hidden; }
.page-content { overflow-x: hidden; }

/* Splide absolute fix - prevent any slide from overflowing */
.splide__list { flex-wrap: nowrap !important; }
.splide__slide { box-sizing: border-box; }
.cabin-gallery-main .splide__list,
.cabin-thumbs .splide__list { width: 100%; }

/* Cabin page full width protection */
.single-cabin-layout,
.cabin-gallery-main,
.cabin-thumbs,
.cabin-info-box,
.text-box,
.cabin-testi { max-width: 100%; }

/* Container protection */
.container { box-sizing: border-box; }

/* Amenities grid - prevent text overflow */
.amenity-item { overflow: hidden; }
.amenity-item h5, .amenity-extra { word-break: break-word; }


/* ── PHONE LABEL ── */
.masthead-phone .phone-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pale);
    text-align: right;
    margin-top: 2px;
}
.masthead-phone a strong {
    font-size: 1.55rem;
    letter-spacing: .04em;
}

/* ── BOOK DIRECT BANNER ── */
.book-direct-bar {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 14px 20px;
    font-family: 'Lato', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
}
.book-direct-bar a {
    color: var(--white);
    text-decoration: underline;
}
.book-direct-bar a:hover { color: var(--cdk); }
.book-direct-bar .bdb-phone {
    font-size: 1rem;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .05em;
    margin-left: 8px;
}
.book-direct-bar .bdb-hours {
    display: block;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .03em;
    margin-top: 8px;
    opacity: 1;
    color: #fff8e1;
}

/* ── CALL HOURS NOTICE (reusable) ── */
.call-hours-notice {
    display: block;
    background: #fff8e6;
    border: 1px solid #e8d28a;
    border-left: 4px solid var(--orange);
    color: #5a3a00;
    padding: 12px 18px;
    font-family: 'Lato', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 14px 0;
    border-radius: 3px;
    text-align: center;
}
.call-hours-notice strong { color: #3a2500; }
.call-hours-notice .ch-label {
    display: block;
    font-family: 'Kreon', serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    margin-bottom: 4px;
}
/* Inverse variant for dark/green backgrounds */
.call-hours-notice.on-dark {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.35);
    border-left: 4px solid #fff;
    color: #fff;
}
.call-hours-notice.on-dark strong { color: #fff; }
.call-hours-notice.on-dark .ch-label { color: #fff8e1; }
/* Compact variant for narrow sidebars */
.call-hours-notice.compact {
    padding: 10px 12px;
    font-size: .85rem;
    margin: 10px 0;
}
.call-hours-notice.compact .ch-label { font-size: .72rem; }

/* ── CABIN NAME FONT — more legible ── */
.box-info h4,
.cabin-list-body h4,
.cabin-info-box h4 {
    font-family: 'Kreon', serif !important;
    font-weight: 700 !important;
}
.home-h1 { font-family: 'Kreon', serif !important; }

/* ── SEO HIDDEN KEYWORDS (accessible) ── */
.seo-region {
    font-size: 0;
    height: 0;
    overflow: hidden;
    position: absolute;
}

/* ── ATTRACTIONS FILTER CENTERED ── */
.att-filters-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

/* ── HERO SLIDE CAPTION (text per slide) ── */
.hero-slide-caption {
    position: absolute;
    inset: 0;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 60px;
    pointer-events: none;
    text-align: center;
}
.hero-slide-caption .slide-title {
    font-family: 'Courgette', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    text-shadow: 0 2px 16px rgba(0,0,0,.75);
    margin-bottom: 8px;
    line-height: 1.15;
    font-weight: 400;
    max-width: 700px;
    padding: 0 20px;
}
.hero-slide-caption .slide-subtitle {
    font-family: 'Kreon', serif;
    font-size: clamp(.78rem, 1.5vw, 1rem);
    color: rgba(255,255,255,.85);
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,.7);
    max-width: 600px;
    padding: 0 20px;
}

/* ═══════════════════════════════════════
   POLICIES PAGE
═══════════════════════════════════════ */
.policies-wrap { max-width: 900px; margin: 0 auto; padding: 32px 0 0; }

.policies-intro {
    background: #f8f4ee;
    border-left: 4px solid var(--green);
    padding: 24px 28px;
    margin-bottom: 36px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--tmid);
}
.policies-sig {
    margin-top: 14px;
    font-weight: bold;
    font-style: normal;
    font-family: 'Kreon', serif;
    color: var(--dk);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.policy-card {
    background: var(--white);
    border: 1px solid #e8e0d4;
    border-top: 3px solid var(--green);
    padding: 22px 24px;
}
.policy-card h3 {
    font-family: 'Kreon', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dk);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e0d4;
}
.policy-card p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--tmid);
    margin-bottom: 52px;
    margin-bottom: 10px;
}
.policy-card p:last-child { margin-bottom: 0; }

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.policy-list li {
    font-size: .88rem;
    line-height: 1.7;
    color: var(--tmid);
    padding: 6px 0 6px 16px;
    border-bottom: 1px solid #f0ebe3;
    position: relative;
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}
.policy-list li strong { color: var(--dk); }

.policy-note {
    background: #fff8f0;
    border-left: 3px solid var(--orange);
    padding: 10px 14px;
    font-size: .82rem !important;
    font-style: italic;
    color: var(--tmid) !important;
    margin-top: 12px;
}

.policies-contact {
    background: var(--dk);
    color: var(--white);
    text-align: center;
    padding: 32px 24px;
    margin-top: 8px;
}
.policies-contact h3 {
    font-family: 'Kreon', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}
.policies-contact p {
    color: var(--pale);
    font-size: .92rem;
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    .policies-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS HEIGHT FIX ── */
.testi-splide .splide__track,
.cabin-testi-splide .splide__track {
    overflow: hidden;
}
.testi-splide .splide__slide,
.cabin-testi-splide .splide__slide {
    height: auto !important;
}

/* ── ATTRACTION WITHOUT IMAGE ── */
.attraction-item.no-img {
    grid-template-columns: 1fr;
}
.attraction-item.no-img .attraction-body {
    padding-left: 0;
}

/* ── GALLERY SECTION TITLE ── */
.gallery-section-title {
    margin: 32px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pale);
}
.gallery-section-title h3 {
    font-family: 'Courgette', cursive;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--dk);
}
