:root {
  --bg: #FAF8F4;
  --bg-2: #F3EFE7;
  --white: #fff;
  --fg: #2C2A26;
  --muted: #6E6A62;
  --border: #E4DFD5;
  --primary: #23372E;
  --primary-2: #16241D;
  --accent: #B4552C;
  --accent-2: #953F1C;
  --radius: 12px;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -6px rgba(0, 0, 0, .1);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --nav-h: 64px;
}

* { box-sizing: border-box }

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

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }

h1, h2, h3, h4 { margin: 0 0 8px; line-height: 1.2 }
h1 { font-weight: 700 }
h2 { font-weight: 700; font-size: 26px; color: var(--primary) }
h3 { font-weight: 600; font-size: 18px }
p { margin: 0 0 16px }

.container { max-width: 1152px; margin: 0 auto; padding: 0 16px }
.narrow { max-width: 820px }

.section { padding: 56px 0 }
.section > .container > h2 { margin-bottom: 20px }
.section-bone { background: var(--bg-2) }
.section-white { background: var(--white) }
.lede { font-size: 17px; color: var(--muted); max-width: 720px }
.eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 8px;
  top: 8px;
  z-index: 200;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
}

/* nav */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
  background: linear-gradient(to bottom, rgba(22, 36, 29, .75), rgba(22, 36, 29, 0));
}
.nav.scrolled {
  padding: 10px 0;
  background: rgba(250, 248, 244, .94);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 12px }
.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #F4F1EA;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.brand span { font-weight: 400; opacity: .75 }
.nav.scrolled .brand { color: var(--primary) }
.menu { display: none; gap: 26px; color: #F4F1EA; font-size: 14px; transition: color .2s }
.menu a:hover { color: #C9D9CE }
.nav.scrolled .menu { color: var(--primary) }
.nav.scrolled .menu a:hover { color: var(--accent) }
.nav-right { display: flex; align-items: center; gap: 14px }

.lang {
  appearance: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #F4F1EA;
  border-radius: 9999px;
  padding: 5px 28px 5px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 14px) 52%, calc(100% - 9px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.nav.scrolled .lang {
  background-color: rgba(35, 55, 46, .06);
  border-color: var(--border);
  color: var(--primary);
}
.lang option { color: #2C2A26; background: #fff }
.lang[data-translations="none"] { display: none }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #F4F1EA;
  z-index: 110;
}
.nav.scrolled .hamburger { color: var(--primary) }
.hamburger span { display: block; height: 2px; width: 100%; background: currentColor; transition: transform .3s, opacity .3s }
.hamburger.active { color: var(--primary) }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.hamburger.active span:nth-child(2) { opacity: 0 }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 62px 0 0 0;
  background: rgba(250, 248, 244, .98);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 16px 24px 40px;
  z-index: 90;
  overflow-y: auto;
}
.mobile-menu.active { display: block }
.mobile-menu a {
  display: block;
  padding: 15px 0;
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 880px) {
  .menu { display: flex }
  .hamburger { display: none }
  .mobile-menu { display: none !important }
}

/* hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-2);
  padding: 120px 0 150px;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url('../img/hero-exterior-twilight.jpg') center 58% / cover no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(16, 26, 21, .72), rgba(16, 26, 21, .5) 45%, rgba(16, 26, 21, .86));
}
.hero-inner { position: relative; text-align: center; color: #fff }
.hero h1 {
  font-size: 27px;
  letter-spacing: -.01em;
  margin: 0 auto 14px;
  max-width: 940px;
}
.hero h1 .line { display: block }
.hero-sub {
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto 18px;
  opacity: .92;
}
.hero-price {
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
  color: #EBDCCF;
}
@media (min-width: 768px) {
  .hero h1 { font-size: 40px }
  .hero-sub { font-size: 19px }
}
@media (min-width: 1200px) {
  .hero h1 { font-size: 46px }
}

/* featured strip */
.featured {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  padding: 0 16px;
  color: #fff;
  text-align: center;
}
.featured-label {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 12px;
}
.featured-logos {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.featured-logos a {
  display: inline-flex;
  align-items: center;
  transition: transform .3s, opacity .3s;
  opacity: .8;
}
.featured-logos a:hover { transform: scale(1.06); opacity: 1 }
.featured-logos img { height: 16px; width: auto }
.featured-logos .logo-hostaway img { height: 22px; filter: brightness(0) invert(1) }
.featured-logos .logo-airbnb img { height: 22px }
@media (min-width: 768px) {
  .featured-logos { gap: 40px }
  .featured-logos img { height: 19px }
  .featured-logos .logo-hostaway img { height: 27px }
  .featured-logos .logo-airbnb img { height: 26px }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--accent);
  cursor: pointer;
  text-align: center;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 10px 24px rgba(180, 85, 44, .22);
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px) }
.btn-glass {
  background: rgba(252, 250, 244, .92);
  color: var(--primary-2);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}
.btn-glass:hover { background: #fff; border-color: #fff }
.btn-block { width: 100% }
.cta-row { margin-top: 26px }
.cta-band {
  background: var(--primary);
  color: #F2EFE8;
  padding: 44px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: 23px }
.cta-band p { opacity: .85; max-width: 620px; margin: 0 auto 20px }
@media (hover: none), (pointer: coarse) {
  .btn:hover, .featured-logos a:hover { transform: none }
}

/* generic blocks */
.split {
  display: grid;
  gap: 28px;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 40px }
  .split-wide { grid-template-columns: 1.1fr .9fr }
}

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr) } }
@media (min-width: 980px) { .cards-3 { grid-template-columns: repeat(3, 1fr) } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.card h3 { color: var(--primary) }
.card .big {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 2px;
}
.card .big-sub {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.card-accent { border-color: rgba(180, 85, 44, .45); box-shadow: 0 8px 22px rgba(180, 85, 44, .1) }

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 16px 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.spec-row strong { color: var(--fg); font-weight: 600 }

ul.plain, ul.ticks, ul.crosses {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
ul.plain li, ul.ticks li, ul.crosses li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  font-size: 15px;
}
ul.ticks li::before, ul.crosses li::before, ul.plain li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}
ul.ticks li::before { content: "+"; color: var(--accent) }
ul.crosses li::before { content: "-"; color: var(--muted) }
ul.plain li::before {
  content: "";
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
}
.col-2 { columns: 2; column-gap: 28px }
.col-2 li { break-inside: avoid }
@media (max-width: 520px) { .col-2 { columns: 1 } }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 46px;
  margin-bottom: 20px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.steps h3 { margin-bottom: 2px }
.steps p { margin: 0; color: var(--muted); font-size: 15px }

.ladder {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.ladder li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
}
.ladder b {
  flex: 0 0 52px;
  font-size: 18px;
  color: var(--accent);
}

/* gallery */
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 10px; background: var(--bg-2) }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform .5s ease }
.gallery figure:hover img { transform: scale(1.04) }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 12px 9px;
  background: linear-gradient(to top, rgba(16, 26, 21, .8), transparent);
  color: #fff;
  font-size: 12px;
  letter-spacing: .04em;
}
.gallery .wide { grid-column: span 2 }
@media (min-width: 760px) {
  .gallery { grid-template-columns: repeat(4, 1fr) }
  .gallery .wide { grid-column: span 2 }
  .gallery .tall img { aspect-ratio: 3 / 4 }
}

/* faq */
.faq { max-width: 820px }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 34px 15px 0;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) }
.faq .answer { padding: 0 8px 16px 0; color: var(--muted) }
.faq .answer p:last-child { margin-bottom: 0 }

/* form */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .form-wrap { padding: 32px } }
.field { margin-bottom: 16px }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  transition: border-color .2s, box-shadow .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat }
.field textarea { min-height: 110px; resize: vertical }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 85, 44, .14);
}
.field-pair { display: grid; gap: 16px }
@media (min-width: 620px) { .field-pair { grid-template-columns: 1fr 1fr } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }
.form-note { font-size: 13px; color: var(--muted); margin: 14px 0 0 }
.form-msg {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}
.form-msg.error { display: block; background: #FBEAE3; border: 1px solid #E5B9A5; color: #8A3612 }
.thanks { display: none; text-align: center; padding: 18px 4px }
.thanks h3 { color: var(--primary); font-size: 22px }
.thanks p { color: var(--muted); margin-bottom: 0 }
.is-sent .form-body { display: none }
.is-sent .thanks { display: block }

/* footer */
footer {
  background: var(--primary-2);
  color: #CFD8D1;
  padding: 44px 0 26px;
  font-size: 14px;
}
.footer-brand {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-brand span { font-weight: 400; opacity: .7 }
footer a { text-decoration: underline; text-underline-offset: 2px }
footer a:hover { color: #fff }
.footer-id p { margin: 0 0 6px }
.footer-id p:last-child { margin-bottom: 0 }
.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  opacity: .62;
  font-size: 12.5px;
}

/* simple page shell for /no-contact */
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 60px;
  background: var(--bg-2);
}
.page-card {
  max-width: 560px;
  margin: 0 auto;
}
.page-card h1 { color: var(--primary); font-size: 28px }
