
  :root {
    --bg: #fbfaf7;
    --ink: #1a1a1a;
    --muted: #6b6b66;
    --line: #e7e4dc;
    --accent: #8a7a5a;
    --sand: #f1ede4;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
  h1 { font-size: clamp(2.5rem, 5.5vw, 6rem); }
  h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); margin-bottom: 1rem; }
  h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
  p { color: var(--muted); }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; height: auto; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
  }
  .logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2rem; align-items: center; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .nav-links a { color: var(--muted); transition: color 0.2s; }
  .nav-links a:hover { color: var(--ink); }
  .lang-toggle { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8rem; }
  .lang-toggle button {
    background: none; border: none; cursor: pointer; padding: 0.3rem 0.5rem;
    color: var(--muted); font-family: inherit; font-size: inherit; letter-spacing: 0.1em;
  }
  .lang-toggle button.active { color: var(--ink); border-bottom: 1px solid var(--ink); }
  .nav-actions { display: flex; gap: 0.75rem; align-items: center; }
  .menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; }

  /* HERO */
  .hero {
    height: 100vh; min-height: 600px;
    position: relative; overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
    color: #fff;
    padding: 4rem 2rem;
    background: #1a1a1a;
  }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 0; transition: opacity 2s ease-in-out;
  }
  .hero-slide.active { opacity: 1; }
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.75) 100%);
  }
  .hero-content { position: relative; z-index: 2; text-align: center; max-width: 960px; }
  .hero h1 { color: #fff; font-weight: 300; margin-bottom: 1rem; }
  .hero-sub { font-size: clamp(0.85rem, 1.1vw, 1.15rem); letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.9; margin-bottom: 2rem; }
  .hero-dates { display: inline-block; padding: 0.6rem 1.5rem; border: 1px solid rgba(255,255,255,0.5); font-size: clamp(0.8rem, 1vw, 1rem); letter-spacing: 0.2em; text-transform: uppercase; }

  /* SECTIONS */
  section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
  .eyebrow { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
  .section-head { text-align: center; margin-bottom: 4rem; }
  .section-head p { max-width: 600px; margin: 1rem auto 0; }

  /* HIGHLIGHTS */
  .highlights {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem; padding: 4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .highlight { text-align: center; }
  .highlight-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--accent); margin-bottom: 0.3rem; }
  .highlight-label { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

  /* ABOUT */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-text p + p { margin-top: 1rem; }
  .about-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

  /* GALLERY */
  .gallery-tabs { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .gallery-tabs button {
    background: none; border: 1px solid var(--line); padding: 0.6rem 1.4rem;
    font-family: inherit; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); cursor: pointer; transition: all 0.2s;
  }
  .gallery-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
  .gallery-tabs button:hover:not(.active) { color: var(--ink); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem;
  }
  .gallery-item { overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item.tall { aspect-ratio: 3/4; }

  /* AMENITIES */
  .amenities-section { background: var(--sand); max-width: none; }
  .amenities-inner { max-width: 1200px; margin: 0 auto; }
  .amenities-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
  .amenity { padding: 1.5rem 0; border-top: 1px solid var(--line); }
  .amenity h3 { font-size: 1.1rem; font-family: inherit; font-weight: 500; letter-spacing: 0.05em; }
  .amenity p { font-size: 0.9rem; margin-top: 0.3rem; }

  /* LOCATION */
  .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 5rem; max-width: 900px; margin: 0 auto; }
  .location-text ul { list-style: none; margin-top: 1.5rem; }
  .location-text li { padding: 0.8rem 0; border-bottom: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; font-size: 0.95rem; }
  .location-text li span { color: var(--ink); font-size: 0.85rem; }

  /* AVAILABILITY */
  .availability { text-align: center; background: var(--ink); color: #fff; max-width: none; padding: 6rem 2rem; }
  .availability h2 { color: #fff; }
  .availability .eyebrow { color: rgba(255,255,255,0.5); }
  .availability p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 1rem auto 2rem; }
  .availability-dates { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; margin: 2rem 0 1rem; }
  .price-tag { display: inline-block; padding: 0.5rem 1.5rem; border: 1px solid rgba(255,255,255,0.3); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

  /* CONTACT */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-form label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; display: block; }
  .contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 0.8rem 0; border: none; border-bottom: 1px solid var(--line);
    background: transparent; font-family: inherit; font-size: 1rem; color: var(--ink);
    transition: border-color 0.2s;
  }
  .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--ink);
  }
  .contact-form textarea { resize: vertical; min-height: 100px; }
  .contact-form button {
    margin-top: 1rem; padding: 1rem 2rem; background: var(--ink); color: #fff;
    border: none; cursor: pointer; font-family: inherit; font-size: 0.85rem;
    letter-spacing: 0.2em; text-transform: uppercase; transition: opacity 0.2s;
  }
  .contact-form button:hover { opacity: 0.85; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .contact-side h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }
  .contact-side ul { list-style: none; margin-top: 1.5rem; }
  .contact-side li { padding: 0.6rem 0; color: var(--muted); font-size: 0.95rem; }

  /* FOOTER */
  footer {
    text-align: center; padding: 3rem 2rem; border-top: 1px solid var(--line);
    color: var(--muted); font-size: 0.8rem; letter-spacing: 0.1em;
  }

  /* LIGHTBOX */
  .lightbox {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95);
    z-index: 1000; align-items: center; justify-content: center; padding: 2rem;
  }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
  .lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; }

  /* HOSTS */
  .hosts { background: var(--sand); max-width: none; }
  .hosts-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .hosts-inner p { font-size: 1.05rem; max-width: 600px; margin: 1rem auto 0; }

  /* FAQ */
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
  .faq-item summary {
    cursor: pointer; font-size: 1.05rem; font-weight: 400;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
    padding: 0.4rem 0;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--accent);
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item p { margin-top: 0.8rem; padding-right: 2rem; font-size: 0.95rem; }

  /* FORM ERROR */
  .form-error {
    color: #c14545; font-size: 0.85rem; margin-top: 0.5rem;
    display: none;
  }
  .form-error.show { display: block; }

  /* FORM SUCCESS */
  .form-success {
    display: none;
    text-align: center; padding: 3rem 1.5rem;
    border: 1px solid var(--line); background: var(--sand);
    animation: fadeIn 0.5s ease;
  }
  .form-success.show { display: block; }
  .form-success .check {
    width: 56px; height: 56px; margin: 0 auto 1.5rem;
    border-radius: 50%; background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    animation: pop 0.5s ease 0.2s both;
  }
  .form-success .check svg { width: 28px; height: 28px; stroke: #fff; }
  .form-success h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
    font-weight: 400; margin-bottom: 0.6rem;
  }
  .form-success p { font-size: 0.95rem; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
  @keyframes pop {
    0% { transform: scale(0); }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); }
  }

  /* SUBMIT BUTTON STATE */
  .contact-form button[type=submit] { position: relative; transition: opacity 0.2s; }
  .contact-form button[type=submit][disabled] { opacity: 0.6; cursor: not-allowed; }
  .contact-form button[type=submit].sending::after {
    content: ''; position: absolute; top: 50%; right: 1.2rem;
    width: 14px; height: 14px; margin-top: -7px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* MOBILE NAV */
  .menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.4rem; color: var(--ink);
  }
  .menu-toggle svg { width: 22px; height: 22px; }

  /* TABLET & SMALLER */
  @media (max-width: 900px) {
    .nav-inner { padding: 0.9rem 1.2rem; gap: 0.5rem; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .logo { font-size: 1.2rem; }
    .nav-actions { gap: 0.25rem; }
    .lang-toggle { font-size: 0.75rem; }
    .lang-toggle button { padding: 0.25rem 0.4rem; }
    .nav-links {
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0; align-items: stretch;
      background: var(--bg); border-bottom: 1px solid var(--line);
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
      box-shadow: 0 12px 24px -18px rgba(0,0,0,0.25);
    }
    .nav-links.open { max-height: 70vh; }
    .nav-links a { padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); display: block; }
    .nav-links a:last-child { border-bottom: none; }
    .nav-links .lang-toggle { display: none; }
    .menu-toggle.is-open svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .menu-toggle.is-open svg line:nth-child(2) { opacity: 0; }
    .menu-toggle.is-open svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
    .menu-toggle svg line { transform-origin: center; transition: transform 0.25s ease, opacity 0.2s ease; }
    section { padding: 4rem 1.2rem; }
    .section-head { margin-bottom: 2.5rem; }
    .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero { padding: 3rem 1.2rem; min-height: 540px; }
    .hero-slide { background-position: center center; }
    .hero-content { padding-bottom: 1rem; }
    .hero-sub { margin-bottom: 1.2rem; }
    .hero-dates { padding: 0.55rem 1.1rem; }
    .highlights { padding: 2.5rem 0; gap: 1.5rem; }
    .highlight-num { font-size: 2rem; }
    .amenities-list { gap: 1.2rem; }
    .amenity { padding: 1.2rem 0; }
    .faq-item { padding: 0.9rem 0; }
    .faq-item summary { padding: 0.6rem 0; font-size: 1rem; }
    .availability { padding: 4rem 1.2rem; }
  }

  /* PHONE */
  @media (max-width: 480px) {
    .nav-inner { padding: 0.8rem 1rem; }
    .logo { font-size: 1.1rem; letter-spacing: 0.12em; }
    section { padding: 3rem 1rem; }
    .section-head { margin-bottom: 2rem; }
    .hero { padding: 2.5rem 1rem; min-height: 520px; }
    .hero-dates { font-size: 0.7rem; padding: 0.5rem 1rem; letter-spacing: 0.15em; }
    .highlights { grid-template-columns: repeat(2, 1fr); padding: 2rem 0; gap: 1.5rem; }
    .highlight:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .gallery-tabs { gap: 0.3rem; }
    .gallery-tabs button { padding: 0.45rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.1em; }
    .amenities-list { grid-template-columns: 1fr; }
    .availability-dates { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; /* prevents iOS zoom on focus */ }
    .price-tag { font-size: 0.75rem; padding: 0.45rem 1.2rem; }
    footer { padding: 2rem 1rem; font-size: 0.75rem; }
  }

  /* Phone row: country code + number */
  .phone-row { display: flex; gap: 0.6rem; align-items: stretch; }
  .phone-row select#phoneCountry {
    flex: 0 0 auto; width: auto; min-width: 7.5rem;
    padding: 0.8rem 0.4rem 0.8rem 0; border: none;
    border-bottom: 1px solid var(--line);
    background: transparent; font-family: inherit;
    font-size: 1rem; color: var(--ink);
  }
  .phone-row select#phoneCountry:focus { outline: none; border-color: var(--ink); }
  .phone-row input#phoneInput { flex: 1 1 auto; }
  @media (max-width: 480px) {
    .phone-row select#phoneCountry { min-width: 6rem; font-size: 16px; }
  }

  /* Stay preview (live discount hint under dates) */
  .stay-preview {
    margin-top: -0.4rem;
    padding: 1rem 1.2rem;
    background: var(--sand);
    border-left: 2px solid var(--accent);
    animation: fadeIn 0.3s ease;
  }
  .stay-preview-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap;
  }
  .stay-preview-nights {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--ink); font-weight: 400;
  }
  .stay-preview-badge {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 0.35rem 0.8rem; border: 1px solid var(--ink);
    color: var(--ink); white-space: nowrap;
  }
  .stay-preview-badge.discount { background: var(--ink); color: #fff; border-color: var(--ink); }
  .stay-preview-badge.season { background: var(--accent); color: #fff; border-color: var(--accent); }
  .stay-preview-note {
    margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted);
  }

  /* Minimum-stay hint (always visible above date inputs) */
  .min-stay-hint {
    display: flex; align-items: flex-start; gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: var(--sand);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.2rem;
  }
  .min-stay-hint-icon {
    font-size: 1rem; line-height: 1.4;
    color: var(--accent); flex-shrink: 0;
  }
  .min-stay-hint strong { font-weight: 500; color: var(--ink); }

  /* Message field meta row (counter + error) */
  .message-meta {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 1rem; margin-top: 0.4rem;
  }
  .message-meta .form-error { margin: 0; }
  .message-counter {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); margin-left: auto; white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .message-counter.under { color: var(--muted); }
  .message-counter.ok { color: var(--accent); }
  .message-counter.near-max { color: #b8842b; }
  .message-counter.at-max { color: #b13a2a; font-weight: 500; }
