:root {
  --ink: #15201f;
  --paper: #f5efe7;
  --cream: #fffdf9;
  --green: #183f3c;
  --copper: #c8783f;
  --muted: #6e746f;
  --line: #ded7cc;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.55; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 16px clamp(20px, 5vw, 78px); background: rgba(255,253,249,.96); border-bottom: 1px solid rgba(0,0,0,.06); backdrop-filter: blur(10px); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
.brand-mark { display:grid; place-items:center; width:34px; height:34px; border-radius:50%; background:var(--ink); color:white; font-family:var(--serif); }
.brand-text { font-family: var(--serif); font-size: 1.05rem; }
.nav { display:flex; align-items:center; gap:24px; font-size:.95rem; }
.nav a { text-decoration:none; }
.lang { position: relative; display:flex; align-items:center; gap:4px; }
.lang-current { font-weight:800; }
.lang-menu { display:none; position:absolute; right:0; top:28px; min-width:175px; padding:10px; border:1px solid var(--line); background:var(--cream); box-shadow:0 12px 32px rgba(0,0,0,.12); border-radius:12px; }
.lang:hover .lang-menu, .lang:focus-within .lang-menu { display:grid; gap:4px; }
.lang-menu a { display:block; padding:8px 10px; border-radius:8px; white-space:nowrap; }
.lang-menu a:hover { background:var(--paper); }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:0 24px; border-radius:999px; text-decoration:none; font-weight:700; border:1px solid transparent; transition:.2s ease; }
.button:hover { transform: translateY(-1px); }
.button-dark { background:var(--green); color:white; }
.button-light { background:white; color:var(--ink); }
.button-outline { border-color:rgba(255,255,255,.7); color:white; background:transparent; }
.hero { position:relative; min-height:72vh; display:flex; align-items:center; color:white; overflow:hidden; background:#243332; }
.hero-slide { position:absolute; inset:0; background-position:center; background-size:cover; opacity:0; transform:scale(1.015); transition:opacity 1.2s ease, transform 7s ease; }
.hero-slide.active { opacity:1; transform:scale(1); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(10,20,19,.66), rgba(10,20,19,.18) 62%, rgba(10,20,19,.08)); z-index:1; }
.hero-content { position:relative; z-index:2; width:min(820px, 88vw); margin-left:clamp(28px, 7vw, 135px); padding:90px 0 130px; }
.eyebrow { margin:0 0 14px; text-transform:uppercase; letter-spacing:.16em; font-size:.78rem; font-weight:800; }
.copper { color:var(--copper); }
h1,h2,h3 { font-family:var(--serif); line-height:1.05; margin:0; }
h1 { font-size:clamp(3.1rem, 6.2vw, 6.1rem); max-width:760px; }
.hero-subtitle { font-size:clamp(1.05rem,1.8vw,1.35rem); margin:20px 0 28px; max-width:760px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; }
.hero-location { position:absolute; z-index:2; left:clamp(28px,7vw,135px); bottom:28px; font-size:.95rem; }
.hero-dots { position:absolute; z-index:3; right:clamp(24px,5vw,80px); bottom:28px; display:flex; gap:8px; }
.hero-dot { width:9px; height:9px; border-radius:50%; border:0; background:rgba(255,255,255,.55); cursor:pointer; padding:0; }
.hero-dot.active { background:white; transform:scale(1.25); }
.section { padding:88px clamp(24px,4vw,70px); }
.intro { background:var(--paper); }
.section h2, .direct h2 { font-size:clamp(2.5rem,4.3vw,4.5rem); }
.section-lead { max-width:760px; color:var(--muted); font-size:1.08rem; margin:18px 0 42px; }
.property-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; max-width:1800px; margin:0 auto; }
.property-card { background:white; border-radius:22px; overflow:hidden; box-shadow:0 12px 34px rgba(30,25,20,.08); display:flex; flex-direction:column; height:100%; }
.property-card img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.property-body { padding:24px; display:flex; flex-direction:column; flex:1; }
.rating { font-family:var(--serif); font-size:1.08rem; margin-bottom:14px; }
.property-card h3 { font-size:clamp(1.55rem,2vw,2.25rem); margin-bottom:10px; }
.property-card p { font-size:.98rem; }
.location { color:var(--muted); margin:0 0 16px; }
.facts { display:flex; gap:14px; flex-wrap:wrap; padding:16px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); font-size:.9rem; margin-top:auto; }
.card-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:20px; }
.text-link { font-weight:700; }
.direct { position:relative; background:linear-gradient(rgba(15,24,23,.72),rgba(15,24,23,.72)), url('/images/telemark.jpg') center/cover no-repeat; color:white; padding:110px clamp(24px,7vw,135px); }
.direct-inner { max-width:760px; }
.direct p:not(.eyebrow) { font-size:1.22rem; max-width:700px; }
.light-outline { border-color:rgba(255,255,255,.8); }
.contact { display:grid; grid-template-columns:1.4fr 1fr; gap:60px; align-items:start; }
.contact p { max-width:620px; color:var(--muted); }
.contact-card { display:grid; gap:12px; padding:28px; border:1px solid var(--line); border-radius:22px; background:var(--paper); }
.contact-card a { font-weight:700; text-decoration:none; }
footer { display:flex; justify-content:space-between; gap:30px; flex-wrap:wrap; padding:40px clamp(24px,6vw,90px); background:var(--ink); color:#f7f2ea; font-size:.92rem; }
footer div:first-child { display:grid; gap:5px; }
@media (max-width: 1050px) {
  .nav { gap:14px; }
  .nav > a:not(.button) { display:none; }
  .property-grid { grid-template-columns:1fr; max-width:760px; }
}
@media (max-width: 700px) {
  .brand-text { display:none; }
  .nav .button { display:none; }
  .site-header { padding:12px 18px; }
  .hero { min-height:78vh; }
  .hero-content { margin-left:24px; padding-right:24px; padding-top:70px; }
  h1 { font-size:clamp(3rem,14vw,5rem); }
  .section { padding:66px 20px; }
  .contact { grid-template-columns:1fr; }
  .hero-location { left:24px; }
  .hero-dots { right:24px; }
}

/* reviews-v1 */
.reviews-section { background: var(--cream); }
.reviews-heading { display:flex; justify-content:space-between; gap:28px; align-items:end; margin-bottom:34px; }
.reviews-summary { display:flex; gap:12px; align-items:center; flex-wrap:wrap; color:var(--muted); font-size:1.05rem; margin:18px 0 0; }
.reviews-summary strong { color:var(--ink); font-family:var(--serif); font-size:2.1rem; line-height:1; }
.reviews-stars { color:#f2b400; letter-spacing:.08em; font-size:1.18rem; }
.review-filters { display:flex; gap:8px; flex-wrap:wrap; }
.review-filter { border:1px solid var(--line); background:white; color:var(--ink); padding:9px 14px; border-radius:999px; cursor:pointer; font:inherit; font-weight:700; }
.review-filter.active { background:var(--ink); color:white; border-color:var(--ink); }
.reviews-carousel { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; align-items:stretch; }
.review-card { border:1px solid var(--line); border-radius:22px; padding:24px; background:white; box-shadow:0 10px 26px rgba(30,25,20,.06); display:flex; flex-direction:column; min-height:315px; }
.review-card.hidden-review { display:none; }
.review-top { display:flex; justify-content:space-between; gap:14px; align-items:flex-start; margin-bottom:16px; }
.review-name { font-family:var(--serif); font-size:1.35rem; font-weight:700; }
.review-source { display:inline-flex; align-items:center; padding:5px 9px; border-radius:999px; background:#f8ecec; color:#b44d4d; font-size:.76rem; font-weight:800; }
.review-source.vrbo { background:#eef2f7; color:#44576d; }
.review-meta { color:var(--muted); font-size:.86rem; margin-top:4px; }
.review-stars { color:#f2b400; letter-spacing:.04em; margin-bottom:12px; }
.review-text { white-space:pre-line; margin:0; font-size:1rem; }
.review-property { margin-top:auto; padding-top:18px; color:var(--muted); font-size:.82rem; border-top:1px solid var(--line); }
.review-response { margin-top:14px; padding:12px 14px; border-left:3px solid var(--copper); background:var(--paper); border-radius:0 10px 10px 0; font-size:.9rem; }
.review-response strong { display:block; margin-bottom:4px; }
.reviews-actions { display:flex; justify-content:center; margin-top:28px; }
.button-review { background:transparent; border-color:var(--green); color:var(--green); cursor:pointer; }
.button-review:hover { background:var(--green); color:white; }
@media (max-width: 1050px) { .reviews-carousel { grid-template-columns:1fr 1fr; } }
@media (max-width: 700px) { .reviews-heading { align-items:flex-start; flex-direction:column; } .reviews-carousel { grid-template-columns:1fr; } .review-card { min-height:0; } }

.booking-note{margin:.55rem 0 0;font-size:.82rem;line-height:1.35;color:#6f6a63;}


.hero-review { position:absolute; z-index:2; right:clamp(24px,6vw,86px); bottom:76px; width:min(440px, calc(100vw - 48px)); padding:18px 20px; border-radius:18px; background:rgba(14,25,24,.34); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.16); box-shadow:0 16px 40px rgba(0,0,0,.14); }
.hero-quote { margin:0; font-family:var(--serif); font-style:italic; font-size:clamp(1rem,1.5vw,1.2rem); line-height:1.5; color:white; }
.hero-attribution { margin:10px 0 0; font-size:.84rem; letter-spacing:.04em; text-transform:uppercase; color:rgba(255,255,255,.86); }
@media (max-width: 980px) {
  .hero-review { left:24px; right:24px; bottom:74px; width:auto; }
  .hero-location { bottom:28px; }
  .hero-dots { bottom:30px; }
}
@media (max-width: 700px) {
  .hero-content { padding-bottom:220px; }
  .hero-review { left:20px; right:20px; bottom:66px; padding:16px 16px; }
  .hero-quote { font-size:1rem; }
  .hero-location { left:20px; bottom:24px; font-size:.88rem; }
  .hero-dots { right:20px; bottom:24px; }
}

/* mobile-polish-v3 */
.brand { display:inline-flex; align-items:center; text-decoration:none; }
.brand-logo { display:block; width:58px; height:58px; object-fit:cover; border-radius:50%; }
.mobile-hero-review { display:none; }

@media (max-width: 700px) {
  /* Compact header: logo left, language right */
  .site-header { min-height:68px; padding:8px 18px; }
  .brand-logo { width:46px; height:46px; }
  .lang-current { font-size:1rem; }

  /* Cleaner mobile hero: less text, more image */
  .hero { min-height:61vh; align-items:flex-end; }
  .hero-overlay { background:linear-gradient(180deg, rgba(10,20,19,.10) 0%, rgba(10,20,19,.17) 38%, rgba(10,20,19,.70) 100%); }
  .hero-content { width:auto; margin:0; padding:0 22px 74px; }
  .hero-content .eyebrow { display:none; }
  h1 { font-size:clamp(2.45rem, 11.2vw, 3.65rem); line-height:.98; max-width:10ch; }
  .hero-subtitle { margin:13px 0 18px; max-width:25rem; font-size:.97rem; line-height:1.38; }
  .hero .hero-actions { display:block; }
  .hero .hero-actions .button { width:auto; min-height:44px; padding:0 20px; font-size:.94rem; }
  .hero .hero-actions .button-outline { display:none; }
  .hero-review { display:none; }
  .hero-location { display:none; }
  .hero-dots { right:22px; bottom:24px; }

  /* Review becomes its own calm section below the hero */
  .mobile-hero-review { display:block; margin:0; padding:30px 24px 32px; background:var(--paper); border-top:10px solid var(--cream); border-bottom:1px solid var(--line); }
  .mobile-hero-quote { margin:0; font-family:var(--serif); font-style:italic; font-size:1.08rem; line-height:1.52; color:var(--ink); }
  .mobile-hero-review-meta { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-top:14px; color:var(--muted); font-size:.73rem; letter-spacing:.05em; text-transform:uppercase; }
  .mobile-hero-attribution { font-weight:800; }
  .mobile-hero-location { text-transform:none; letter-spacing:0; }

  .section { padding:54px 20px; }
  .section h2, .direct h2 { font-size:clamp(2.15rem, 10.5vw, 3.2rem); }
  .property-body { padding:20px; }
  .card-actions { align-items:stretch; }
  .card-actions .button { width:100%; }
  .card-actions .text-link { text-align:center; padding:6px 0; }
  .reviews-summary { gap:8px 10px; }
  .review-filters { overflow-x:auto; flex-wrap:nowrap; width:100%; padding-bottom:4px; }
  .review-filter { white-space:nowrap; }
  .contact-card { padding:22px; overflow-wrap:anywhere; }
  footer { padding:34px 20px; }
}


/* mobile-clean-v4: keep the hero calm and uncluttered */
@media (max-width: 700px) {
  .hero { min-height:62vh; }
  .hero-content { padding:0 22px 92px; }
  .hero-subtitle { margin:12px 0 17px; max-width:23rem; font-size:.94rem; line-height:1.34; }
  .hero .hero-actions .button { min-height:42px; padding:0 19px; font-size:.92rem; }
  .hero-dots { bottom:22px; }
  .mobile-hero-review { display:none !important; }
}

/* mobile-minimal-v5: let the photography lead */
@media (max-width: 700px) {
  .hero { min-height: 64vh; align-items: flex-end; }
  .hero-content { width: auto; margin: 0; padding: 0 22px 96px; }
  .hero-content h1 { display: none; }
  .hero-subtitle {
    margin: 0 0 16px;
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.38;
    text-shadow: 0 2px 18px rgba(0,0,0,.28);
  }
  .hero .hero-actions { display: block; }
  .hero .hero-actions .button-light {
    min-height: 44px;
    padding: 0 20px;
    font-size: .95rem;
  }
  .hero-dots { bottom: 22px; }
}

/* mobile-visual-v6: image first, single low CTA */
@media (max-width: 700px) {
  .hero { min-height: 66vh; align-items: flex-end; }
  .hero-content { width: auto; margin: 0; padding: 0 22px 58px; }
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-subtitle { display: none !important; }
  .hero .hero-actions { display: block; margin: 0; }
  .hero .hero-actions .button-light {
    min-height: 42px;
    padding: 0 18px;
    font-size: .92rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
  }
  .hero .hero-actions .button-outline { display: none !important; }
  .hero-dots { right: 20px; bottom: 18px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,20,19,.03) 0%, rgba(10,20,19,.06) 55%, rgba(10,20,19,.38) 100%);
  }
}


/* mobile-corner-review-v7: tiny social proof without stealing the photo */
.hero-review-mobile { display:none; }
@media (max-width: 700px) {
  .hero-review-mobile {
    display:block;
    position:absolute;
    z-index:3;
    top:22px;
    right:18px;
    width:min(47vw, 176px);
    padding:10px 12px 9px;
    border:1px solid rgba(255,255,255,.30);
    border-radius:14px;
    background:rgba(17,29,27,.25);
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
    box-shadow:0 8px 26px rgba(0,0,0,.10);
    pointer-events:none;
  }
  .hero-quote-mobile {
    margin:0;
    font-family:var(--serif);
    font-style:italic;
    font-size:.82rem;
    line-height:1.28;
    color:white;
    text-shadow:0 1px 8px rgba(0,0,0,.24);
  }
  .hero-attribution-mobile {
    margin:6px 0 0;
    font-size:.56rem;
    line-height:1.2;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:rgba(255,255,255,.84);
  }
}

/* desktop-review-position-v8: right side, slightly below the top */
@media (min-width: 701px) {
  .hero-review {
    top: clamp(128px, 17vh, 178px);
    right: clamp(28px, 5vw, 78px);
    bottom: auto;
    left: auto;
    width: min(390px, 31vw);
    padding: 16px 18px;
    background: rgba(14,25,24,.30);
  }
  .hero-quote {
    font-size: clamp(.98rem, 1.2vw, 1.12rem);
    line-height: 1.42;
  }
  .hero-attribution {
    margin-top: 8px;
    font-size: .76rem;
  }
}


/* responsive navigation v10: dropdown menu matching language selector */
.mobile-nav { display:none; position:relative; }
.mobile-nav-toggle {
  width:42px;
  height:42px;
  padding:0;
  border:0;
  border-radius:10px;
  background:transparent;
  display:grid;
  place-content:center;
  gap:4px;
  cursor:pointer;
  color:var(--ink);
}
.mobile-nav-toggle span {
  display:block;
  width:23px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .18s ease, opacity .18s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
.mobile-nav-menu {
  display:none;
  position:absolute;
  right:0;
  top:50px;
  width:min(285px, calc(100vw - 36px));
  padding:12px;
  border:1px solid var(--line);
  background:var(--cream);
  box-shadow:0 14px 36px rgba(0,0,0,.14);
  border-radius:16px;
  z-index:60;
}
.mobile-nav.open .mobile-nav-menu { display:grid; gap:3px; }
.mobile-nav-menu a {
  display:block;
  padding:13px 14px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  color:var(--ink);
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a:focus-visible { background:var(--paper); outline:none; }

@media (max-width: 1050px) {
  .mobile-nav { display:block; }
  .nav { gap:8px; }
}
@media (max-width: 700px) {
  .site-header { overflow:visible; }
  .nav { margin-left:auto; gap:8px; }
  .lang { min-height:42px; align-items:center; }
  .lang-current { font-size:1rem; }
  .mobile-nav-toggle { width:42px; height:42px; }
  .mobile-nav-menu { top:48px; }
}
