*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: 'Cormorant Garamond', Georgia, serif; color: #283618; background: #e9e5dc; line-height: 1.7; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    :root {
      --olive-leaf:   #606c38;
      --black-forest: #283618;
      --cornsilk:     #edeadc;
      --sunlit-clay:  #dda15e;
      --copperwood:   #bc6c25;
      /* Derived tints */
      --olive-mist:   #b8c199;
      --olive-pale:   #d1d8c0;
      --parchment:    #ede7db;
      --text:         #2d3819;
      --mid:          #6b7a50;
      --border:       #c0cba0;
    }

    .label {
      font-family: 'Quicksand', sans-serif;
      font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--copperwood); font-weight: 600;
    }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: normal; line-height: 1.25; color: var(--black-forest); }
    .divider { width: 50px; height: 3px; background: var(--copperwood); margin: .9rem 0 1.5rem; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    .section--beige    { background: var(--olive-pale); }
    .section--papaya   { background: var(--parchment); }
    .section--tea      { background: var(--olive-mist); }
    .section--dark     { background: var(--black-forest); color: #fff; }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--black-forest);
      padding: .6rem 1.5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo img { height: 100px; width: auto; }
    .nav-links { display: flex; gap: 1.8rem; list-style: none; }
    .nav-links a {
      font-family: 'Quicksand', sans-serif;
      font-size: .82rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.85); transition: color .2s;
    }
    .nav-links a:hover { color: var(--sunlit-clay); }
    .nav-cta {
      background: var(--sunlit-clay) !important; color: #fff !important;
      padding: .45rem 1.1rem; border-radius: 4px;
      transition: background .2s !important;
    }
    .nav-cta:hover { background: var(--copperwood) !important; }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; }

    /* ── HERO ── */
    #hero {
      position: relative; min-height: 90vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
      background: #0c1107;
    }
    .hero-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; z-index: 0;
    }
    .sound-toggle {
      position: absolute; bottom: 2rem; right: 2rem; z-index: 3;
      background: rgba(40,54,24,.5); border: 1px solid rgba(255,255,255,.3);
      color: #fff; border-radius: 50%;
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; backdrop-filter: blur(4px);
      transition: background .2s;
    }
    .sound-toggle:hover { background: rgba(40,54,24,.8); }
    #hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(to bottom, rgba(254,250,224,.30) 0%, rgba(40,54,24,.55) 100%);
    }
    .hero-content { position: relative; z-index: 2; padding: 2rem 1.5rem; max-width: 820px; }
    .hero-eyebrow {
      font-family: 'Quicksand', sans-serif;
      font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.85); margin-bottom: 1.2rem;
    }
    .hero-logo-lockup { margin-bottom: 1.4rem; }
    .hero-logo-lockup img { height: 300px; width: auto; margin: 0 auto; display: block; mix-blend-mode: screen; }
    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,.9); font-style: italic;
      margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto;
      text-shadow: 0 1px 4px rgba(0,0,0,.4);
    }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .btn {
      display: inline-block;
      font-family: 'Quicksand', sans-serif;
      font-size: .88rem; letter-spacing: .07em; text-transform: uppercase;
      padding: .85rem 2rem; border-radius: 4px;
      transition: transform .15s, box-shadow .15s; cursor: pointer; border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
    .btn-primary   { background: var(--sunlit-clay); color: #fff; }
    .btn-primary:hover { background: var(--copperwood); }
    .btn-secondary { background: transparent; color: var(--black-forest); border: 2px solid var(--sunlit-clay); }
    .btn-secondary:hover { background: var(--sunlit-clay); color: #fff; }

    .hero-badges {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center;
    }
    .hero-badge {
      display: flex; align-items: center; gap: .5rem;
      font-family: 'Quicksand', sans-serif;
      font-size: .78rem; color: rgba(255,255,255,.85);
      white-space: nowrap; text-shadow: 0 1px 3px rgba(0,0,0,.5);
    }
    .hero-badge svg { flex-shrink: 0; opacity: .9; }
    .season-notice svg { vertical-align: middle; margin-right: .25rem; margin-top: -2px; }

    /* ── ABOUT ── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-photo {
      width: 100%; aspect-ratio: 4/3;
      background: var(--olive-pale); border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--mid); font-family: sans-serif; font-size: .9rem;
      border: 2px dashed var(--border);
    }
    .about-text p { margin-bottom: 1.1rem; color: #3d4828; }

    /* ── PROPERTY DETAILS ── */
    .details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .detail-card {
      background: var(--cornsilk); border: 1px solid var(--border);
      border-radius: 6px; padding: 1.5rem; text-align: center;
    }
    .detail-card .icon { margin-bottom: .75rem; color: var(--sunlit-clay); }
    .detail-card .icon svg { display: block; margin: 0 auto; }
    .detail-card .number { font-size: 2rem; font-weight: bold; color: var(--copperwood); line-height: 1; margin-bottom: .3rem; }
    .detail-card p { font-size: .9rem; color: var(--mid); margin-top: .4rem; }

    .amenities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .75rem; margin-top: 2rem; }
    .amenity {
      display: flex; align-items: center; gap: .6rem;
      font-family: 'Quicksand', sans-serif; font-size: .93rem;
    }
    .amenity::before {
      content: '✓'; display: flex; align-items: center; justify-content: center;
      width: 20px; height: 20px; background: var(--olive-mist);
      color: #4a5c28; border-radius: 50%; font-size: .7rem; flex-shrink: 0;
    }

    /* ── GALLERY ── */
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 2rem; }
    .photo-slot {
      border-radius: 4px; overflow: hidden;
      aspect-ratio: 4/3; position: relative;
    }
    .photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
    .photo-slot:hover img { transform: scale(1.04); }
    .photo-slot.tall { grid-row: span 2; aspect-ratio: unset; }
    .photo-slot .caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: .5rem .75rem;
      background: linear-gradient(transparent, rgba(40,54,24,.6));
      color: rgba(255,255,255,.9);
      font-family: 'Quicksand', sans-serif; font-size: .75rem;
      opacity: 0; transition: opacity .3s;
    }
    .photo-slot:hover .caption { opacity: 1; }

    /* ── CALENDAR ── */
    #availability { scroll-margin-top: 70px; }
    .calendar-note {
      font-family: 'Quicksand', sans-serif; font-size: .9rem; color: var(--mid);
      margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: .5rem;
    }
    .calendar-wrapper { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,.07); }
    .calendar-wrapper iframe { display: block; width: 100%; height: 600px; border: none; }
    .season-notice {
      margin-top: 1.2rem; background: var(--olive-pale);
      border-left: 3px solid var(--sunlit-clay); padding: .9rem 1.2rem;
      border-radius: 0 4px 4px 0; font-family: sans-serif; font-size: .9rem; color: var(--text);
    }

    /* ── BOOKING FORM ── */
    #book { scroll-margin-top: 70px; }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: .4rem; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-family: 'Quicksand', sans-serif;
      font-size: .78rem; letter-spacing: .07em; text-transform: uppercase;
      color: var(--copperwood); font-weight: 600;
    }
    .form-group input, .form-group select, .form-group textarea {
      padding: .75rem 1rem; border: 1px solid var(--border); border-radius: 4px;
      font-family: Georgia, serif; font-size: 1rem; background: var(--cornsilk);
      color: var(--black-forest); transition: border-color .2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--sunlit-clay); box-shadow: 0 0 0 3px rgba(221,161,94,.15);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit { grid-column: 1 / -1; text-align: center; margin-top: .5rem; }
    .form-submit .btn-primary { font-size: 1rem; padding: 1rem 3rem; width: 100%; max-width: 360px; }
    .form-notice { font-family: sans-serif; font-size: .8rem; color: var(--mid); margin-top: .75rem; }
    #form-status {
      display: none; padding: 1rem 1.25rem; border-radius: 4px;
      font-family: sans-serif; font-size: .95rem; margin-top: 1rem; grid-column: 1 / -1;
    }
    #form-status.success { background: var(--olive-pale); color: #4a5c28; border: 1px solid var(--olive-mist); }
    #form-status.error   { background: #fde8e8; color: #c0392b; border: 1px solid #e57373; }
    .setup-notice {
      background: #fffbeb; border: 1px solid #f6cc4f; border-radius: 6px;
      padding: 1rem 1.25rem; margin-bottom: 2rem;
      font-family: sans-serif; font-size: .875rem; color: #7a5c00;
    }
    .setup-notice strong { display: block; margin-bottom: .3rem; }

    /* ── AREA GUIDE ── */
    .area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .area-card {
      background: rgba(255,255,255,.35); border: 1px solid rgba(40,54,24,.12);
      border-radius: 8px; padding: 1.75rem; overflow: hidden;
    }
    .area-card-img {
      margin: -1.75rem -1.75rem 1.25rem;
      aspect-ratio: 16/9;
      background: rgba(40,54,24,.1);
      display: flex; align-items: center; justify-content: center;
    }
    .area-card-img svg { opacity: .3; color: var(--black-forest); }
    .area-card h3 { font-size: 1.12rem; font-weight: normal; color: var(--black-forest); margin-bottom: .5rem; }
    .area-card p { font-size: .9rem; color: #3d4828; font-family: 'Quicksand', sans-serif; }
    .area-card .distance {
      font-family: sans-serif; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
      color: var(--copperwood); margin-bottom: .5rem;
    }

    /* ── GETTING HERE ── */
    .getting-here-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    .directions-list { list-style: none; counter-reset: steps; }
    .directions-list li {
      counter-increment: steps; display: flex; gap: 1rem;
      padding: 1rem 0; border-bottom: 1px solid var(--border);
      font-family: sans-serif; font-size: .93rem; color: #3d4828;
    }
    .directions-list li::before {
      content: counter(steps); display: flex; align-items: center; justify-content: center;
      min-width: 28px; height: 28px; background: var(--sunlit-clay); color: #fff;
      border-radius: 50%; font-size: .8rem; font-weight: bold; flex-shrink: 0; margin-top: .1rem;
    }

    /* ── FOOTER ── */
    footer { background: var(--black-forest); color: rgba(255,255,255,.7); padding: 3rem 1.5rem; text-align: center; }
    .footer-brand { font-family: Georgia, serif; font-size: 1.4rem; color: #fff; margin-bottom: .5rem; }
    .footer-tagline { font-style: italic; font-size: .9rem; margin-bottom: 1.5rem; }
    .footer-contact { font-family: sans-serif; font-size: .88rem; margin-bottom: 1.5rem; }
    .footer-contact a { color: var(--sunlit-clay); text-decoration: underline; }
    .footer-logo { margin: 0 auto 1.2rem; }
    .footer-logo img { height: 60px; width: auto; margin: 0 auto; display: block; opacity: .75; }
    .footer-copy {
      font-family: sans-serif; font-size: .75rem;
      border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin-top: 1rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--black-forest);
        padding: 1rem 1.5rem 1.5rem; gap: 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-toggle { display: block; }
      .about-grid, .getting-here-grid { grid-template-columns: 1fr; gap: 2rem; }
      .form-grid { grid-template-columns: 1fr; }
      .form-group.full, .form-submit { grid-column: 1; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .photo-slot.tall { grid-row: span 1; }
      .photo-slot { aspect-ratio: 4/3; }
      .hero-badges { flex-direction: column; gap: .75rem; }
      .section { padding: 3.5rem 0; }
      .hero-logo-lockup img { height: 150px; }
    }

    /* ── SCROLL FADE-IN ── */
    .section, footer {
      opacity: 0; transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .section.visible, footer.visible { opacity: 1; transform: translateY(0); }
