    @font-face {
      font-family: 'Rustic Farmhouse';
      src: url('/fonts/RusticFarmhouse.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }

    /* ─── RESET & BASE ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Raleway', sans-serif;
      background: #F7F3EA;
      color: #2A2A2A;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── VARIABLES ─────────────────────────────────────── */
    :root {
      --green-dark:  #1E3A16;
      --green-mid:   #2D5020;
      --green-light: #4A7A38;
      --gold:        #C4872A;
      --gold-light:  #E8A94A;
      --cream:       #F7F3EA;
      --cream-dark:  #EDE5D0;
      --white:       #FFFFFF;
      --text-dark:   #1E2A18;
      --text-mid:    #4A4A3A;
    }

    /* ─── AVAILABILITY TICKER ───────────────────────────── */
    .ticker-bar {
      background: var(--green-dark);
      color: var(--gold-light);
      font-family: 'Raleway', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      overflow: hidden;
      height: 36px;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 200;
    }
    .ticker-bar::before,
    .ticker-bar::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }
    .ticker-bar::before { left: 0;  background: linear-gradient(to right, var(--green-dark), transparent); }
    .ticker-bar::after  { right: 0; background: linear-gradient(to left,  var(--green-dark), transparent); }
    .ticker-label {
      flex-shrink: 0;
      background: var(--gold);
      color: var(--green-dark);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      padding: 0 14px;
      height: 100%;
      display: flex;
      align-items: center;
      white-space: nowrap;
      z-index: 3;
    }
    .ticker-track {
      display: flex;
      animation: ticker-scroll 50s linear infinite;
      white-space: nowrap;
    }
    .ticker-track:hover { animation-play-state: paused; }
    .ticker-item {
      padding: 0 32px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .ticker-item .dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .ticker-item.sold-out { color: #ff9e9e; }
    .ticker-item.last-one { color: #ffd97a; }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── NAVIGATION ────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 36px;
      left: 0; right: 0;
      z-index: 100;
      transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
      padding: 20px 0;
    }
    .nav.scrolled {
      background: var(--green-dark);
      box-shadow: 0 2px 20px rgba(0,0,0,0.35);
      padding: 12px 0;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { height: 44px; transition: height 0.3s; }
    .nav.scrolled .nav-logo { height: 36px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: var(--white);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-book-btn {
      background: var(--gold);
      color: var(--green-dark) !important;
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 700 !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .nav-book-btn:hover {
      background: var(--gold-light) !important;
      transform: translateY(-1px);
      color: var(--green-dark) !important;
    }
    /* Hamburger */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none; border: none;
    }
    .nav-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      transition: all 0.3s;
      border-radius: 2px;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── HERO ──────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      background: url('/images/ORR_Backyardhero.jpg') center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10,25,8,0.45) 0%,
        rgba(10,25,8,0.30) 50%,
        rgba(10,25,8,0.70) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 20px;
      max-width: 860px;
    }
    .hero-eyebrow {
      font-family: 'Raleway', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }
    .hero-title {
      font-family: 'Rustic Farmhouse', Georgia, serif;
      font-size: clamp(2.6rem, 7vw, 5rem);
      font-weight: 700;
      line-height: 1.0;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    }
    .hero-title .title-top {
      display: block;
      font-size: clamp(4rem, 13vw, 9rem);
      letter-spacing: 0.04em;
    }
    .hero-title .title-main {
      display: block;
      font-size: clamp(4rem, 13vw, 9rem);
      letter-spacing: 0.04em;
      line-height: 1.0;
    }
    .hero-title .title-desc {
      display: block;
      font-family: 'Raleway', sans-serif;
      font-size: clamp(0.8rem, 2vw, 1.05rem);
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      line-height: 1.4;
      margin-top: 16px;
      color: rgba(255,255,255,0.9);
      text-shadow: 0 1px 12px rgba(0,0,0,0.5);
    }
    .hero-sub {
      font-size: clamp(0.95rem, 2.2vw, 1.15rem);
      color: rgba(255,255,255,0.88);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-badges {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .hero-badge {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .hero-badge::before {
      content: '';
      display: block;
      width: 18px; height: 1px;
      background: var(--gold);
    }
    .hero-badge::after {
      content: '';
      display: block;
      width: 18px; height: 1px;
      background: var(--gold);
    }
    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--green-dark);
      font-family: 'Raleway', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 18px 48px;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(196,135,42,0.35);
    }
    .btn-outline {
      display: inline-block;
      border: 2px solid rgba(255,255,255,0.6);
      color: var(--white);
      font-family: 'Raleway', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 16px 40px;
      border-radius: 2px;
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
      transform: translateY(-2px);
    }
    .hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.55);
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: bounce 2.2s infinite;
    }
    .scroll-hint svg { width: 20px; opacity: 0.6; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ─── SECTION SCAFFOLDING ───────────────────────────── */
    section { position: relative; }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .section-label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4.5vw, 3rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--green-mid); }
    .section-divider {
      width: 60px; height: 3px;
      background: var(--gold);
      margin: 20px 0;
    }
    .section-body {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-mid);
      font-weight: 400;
      max-width: 640px;
    }

    /* ─── SECTION: ABOUT ────────────────────────────────── */
    .about-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
    }
    .stat-card {
      background: var(--white);
      border-left: 3px solid var(--gold);
      padding: 20px 22px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--green-mid);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-mid);
      margin-top: 6px;
    }
    .about-image-stack {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    }
    .about-img-accent {
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 48%;
      aspect-ratio: 1;
      object-fit: cover;
      border: 5px solid var(--cream);
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    }

    /* ─── SECTION: FULL-PHOTO PULL QUOTE ────────────────── */
    .pullquote-section {
      height: 480px;
      background: url('/images/9181FEAE-6807-49E6-B84C-36F6750B2B6E_1_105_c.jpeg') center 40% / cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .pullquote-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,20,8,0.62);
    }
    .pullquote-content {
      position: relative;
      z-index: 2;
      max-width: 720px;
      padding: 0 32px;
    }
    .pullquote-content blockquote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-style: italic;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: 20px;
    }
    .pullquote-content cite {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-style: normal;
    }

    /* ─── SECTION: INTERIOR ─────────────────────────────── */
    .interior-section {
      padding: 100px 0;
      background: var(--white);
    }
    .interior-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .interior-header .section-divider { margin: 20px auto; }
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .photo-grid-item {
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .photo-grid-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .photo-grid-item:hover img { transform: scale(1.05); }
    .photo-grid-item.tall img { aspect-ratio: 3/4; }
    .photo-grid-item.wide {
      grid-column: span 2;
    }
    .photo-grid-item.wide img { aspect-ratio: 16/7; }
    .photo-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(10,20,8,0.75));
      padding: 24px 16px 14px;
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .photo-grid-item:hover .photo-caption { opacity: 1; }
    .interior-callout {
      margin-top: 64px;
      background: var(--cream-dark);
      border-left: 4px solid var(--gold);
      padding: 32px 36px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .interior-callout svg { flex-shrink: 0; color: var(--gold); width: 36px; }
    .interior-callout p {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: var(--text-dark);
      line-height: 1.7;
    }

    /* ─── SECTION: OUTDOORS ─────────────────────────────── */
    .outdoors-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .outdoors-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 60px;
    }
    .outdoors-photo {
      position: relative;
    }
    .outdoors-photo img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    }
    .outdoors-badge {
      position: absolute;
      top: 28px; right: -20px;
      background: var(--green-dark);
      color: var(--white);
      padding: 18px 20px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }
    .outdoors-badge strong {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      display: block;
      line-height: 1;
      color: var(--gold-light);
    }
    .outdoors-badge span {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      display: block;
      margin-top: 4px;
    }
    .activity-list { list-style: none; margin-top: 32px; }
    .activity-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 0.98rem;
      line-height: 1.6;
      color: var(--text-mid);
    }
    .activity-list li:last-child { border-bottom: none; }
    .activity-icon {
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: var(--green-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      margin-top: 1px;
    }
    .activity-list strong { color: var(--text-dark); display: block; font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em; }

    /* ─── SECTION: WINTER BANNER ─────────────────────────── */
    .season-section {
      height: 420px;
      background: url('/images/67AED43B-AD63-490B-A185-BFA503139459_4_5005_c.jpeg') center 50% / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .season-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8,18,6,0.65);
    }
    .season-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 32px;
      text-align: center;
    }
    .season-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
    }
    .season-content p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto 32px;
    }

    /* ─── SECTION: NEARBY ───────────────────────────────── */
    .nearby-section {
      padding: 100px 0;
      background: var(--white);
    }
    .nearby-header { margin-bottom: 60px; }
    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .nearby-card {
      background: var(--cream);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .nearby-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }
    .nearby-card-thumb {
      height: 200px;
      background: var(--green-mid);
      overflow: hidden;
    }
    .nearby-card-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .nearby-card:hover .nearby-card-thumb img { transform: scale(1.08); }
    .nearby-card-body { padding: 24px; }
    .nearby-card-icon { font-size: 1.4rem; margin-bottom: 10px; }
    .nearby-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .nearby-card-dist {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .nearby-card p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ─── SECTION: GUEST EXTRAS ─────────────────────────── */
    .extras-section {
      padding: 100px 0;
      background: var(--green-dark);
    }
    .extras-section .section-label { color: var(--gold-light); }
    .extras-section .section-title { color: var(--white); }
    .extras-section .section-title em { color: #8ec87a; }
    .extras-section .section-divider { background: var(--gold); }
    .extras-header { margin-bottom: 60px; }
    .extras-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .extra-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 28px 24px;
      transition: background 0.3s, transform 0.3s;
    }
    .extra-card:hover {
      background: rgba(255,255,255,0.11);
      transform: translateY(-4px);
    }
    .extra-icon { font-size: 2rem; margin-bottom: 14px; }
    .extra-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .extra-desc {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.65;
    }

    /* ─── SECTION: AMENITIES ────────────────────────────── */
    .amenities-section {
      padding: 100px 0;
      background: var(--cream);
    }
    .amenities-header { text-align: center; margin-bottom: 60px; }
    .amenities-header .section-divider { margin: 20px auto; }
    .amenities-cols {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    .amenity-group h4 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 2px solid var(--cream-dark);
      padding-bottom: 12px;
      margin-bottom: 18px;
    }
    .amenity-group ul { list-style: none; }
    .amenity-group ul li {
      font-size: 0.9rem;
      color: var(--text-mid);
      padding: 7px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
      gap: 9px;
    }
    .amenity-group ul li::before {
      content: '✓';
      color: var(--green-light);
      font-weight: 700;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* ─── SECTION: BOOK NOW CTA ─────────────────────────── */
    .book-section {
      position: relative;
      padding: 120px 0;
      background: url('/images/67AED43B-AD63-490B-A185-BFA503139459_4_5005_c.jpeg') center 60% / cover no-repeat;
      text-align: center;
    }
    .book-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,25,8,0.72);
    }
    .book-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .book-content .section-label { color: var(--gold-light); }
    .book-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .book-content p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      margin-bottom: 40px;
    }
    .book-hosted {
      margin-top: 32px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
    }
    .book-hosted a {
      color: rgba(255,255,255,0.6);
      text-decoration: underline;
    }

    /* ─── FOOTER ────────────────────────────────────────── */
    footer {
      background: var(--green-dark);
      padding: 64px 0 36px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo { height: 52px; margin-bottom: 20px; }
    .footer-about {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
    }
    .footer-col h5 {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
    }
    .footer-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
    }

    /* ─── REVIEWS ───────────────────────────────────────── */
    .reviews-section {
      padding: 100px 0 60px;
      background: var(--cream);
      overflow: hidden;
    }
    .reviews-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .reviews-header .section-divider { margin: 20px auto; }
    .reviews-summary {
      display: flex;
      gap: 24px;
      justify-content: center;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .rating-badge {
      text-align: center;
      background: var(--white);
      padding: 24px 40px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      min-width: 180px;
    }
    .rating-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--green-mid);
      display: block;
      line-height: 1;
    }
    .rating-stars-row { color: var(--gold); font-size: 1.1rem; margin: 8px 0 6px; letter-spacing: 2px; }
    .rating-source {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-mid);
    }
    /* Marquee */
    .review-marquee-outer {
      overflow: hidden;
      padding: 8px 0 48px;
      position: relative;
    }
    .review-marquee-outer::before,
    .review-marquee-outer::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .review-marquee-outer::before { left: 0;  background: linear-gradient(to right, var(--cream), transparent); }
    .review-marquee-outer::after  { right: 0; background: linear-gradient(to left,  var(--cream), transparent); }
    .review-marquee {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: review-scroll 90s linear infinite;
    }
    .review-marquee:hover { animation-play-state: paused; }
    @keyframes review-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .rev-card {
      width: 310px;
      flex-shrink: 0;
      background: var(--white);
      padding: 26px 28px 22px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.07);
      display: flex;
      flex-direction: column;
    }
    .rev-card-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
    .rev-card-text {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--text-mid);
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 16px;
      font-style: italic;
    }
    .rev-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .rev-card-author {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .rev-card-date {
      font-size: 0.7rem;
      color: var(--text-mid);
      display: block;
      margin-top: 2px;
    }
    .platform-pill {
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .platform-pill.airbnb { background: #FF5A5F; color: #fff; }
    .platform-pill.vrbo   { background: #3B6FBC; color: #fff; }
    /* All reviews grid */
    .all-reviews-wrap {
      padding: 0 0 80px;
    }
    .all-reviews-header {
      text-align: center;
      padding: 60px 32px 48px;
    }
    .all-reviews-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .all-reviews-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      columns: 3;
      column-gap: 20px;
    }
    .all-rev-item {
      break-inside: avoid;
      background: var(--white);
      padding: 22px 24px;
      margin-bottom: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .all-rev-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .all-rev-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }
    .all-rev-text {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text-mid);
      font-style: italic;
      margin-bottom: 12px;
    }
    .all-rev-author {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .all-rev-meta {
      font-size: 0.7rem;
      color: var(--text-mid);
      margin-top: 2px;
    }
    @media (max-width: 900px) {
      .all-reviews-grid { columns: 2; }
    }
    @media (max-width: 640px) {
      .all-reviews-grid { columns: 1; padding: 0 20px; }
      .reviews-section { padding: 72px 0 40px; }
    }

    /* ─── LIGHTBOX ───────────────────────────────────────── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0,0,0,0.92);
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      box-shadow: 0 0 80px rgba(0,0,0,0.5);
    }
    .lightbox-close {
      position: fixed;
      top: 24px; right: 28px;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      opacity: 0.7;
      transition: opacity 0.2s;
      background: none; border: none;
    }
    .lightbox-close:hover { opacity: 1; }
    .lightbox-prev, .lightbox-next {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      color: white; background: rgba(255,255,255,0.1);
      border: none; cursor: pointer;
      font-size: 1.8rem; padding: 16px 20px;
      transition: background 0.2s; opacity: 0.8;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
    .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); opacity: 1; }

    /* ─── MOBILE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid, .outdoors-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-img-accent { display: none; }
      .outdoors-badge { right: 16px; }
      .photo-grid { grid-template-columns: 1fr 1fr; }
      .photo-grid-item.wide { grid-column: span 2; }
      .nearby-grid { grid-template-columns: 1fr 1fr; }
      .extras-grid { grid-template-columns: 1fr 1fr; }
      .amenities-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 75vw; max-width: 300px; background: var(--green-dark); padding: 80px 32px 32px; gap: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.35s ease; z-index: 99; }
      .nav-links.open { display: flex; transform: translateX(0); }
      .nav-toggle { display: flex; }
      .nav-links a { font-size: 0.9rem; }
      .section-inner { padding: 0 20px; }
      .about-section, .interior-section, .outdoors-section, .nearby-section, .extras-section, .amenities-section { padding: 72px 0; }
      .photo-grid { grid-template-columns: 1fr; }
      .photo-grid-item.wide { grid-column: span 1; }
      .photo-grid-item.wide img { aspect-ratio: 4/3; }
      .nearby-grid { grid-template-columns: 1fr; }
      .extras-grid { grid-template-columns: 1fr; }
      .amenities-cols { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
      .hero-badges { gap: 16px; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .pullquote-section, .season-section { background-attachment: scroll; }
    }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }

    /* ─── PET-FRIENDLY ──────────────────────────────────── */
    .pets-section {
      padding: 100px 0;
      background: var(--green-dark);
      overflow: hidden;
    }
    .pets-section .section-label { color: var(--gold-light); }
    .pets-section .section-title { color: var(--cream); }
    .pets-section .section-body  { color: rgba(247,243,234,0.85); }
    .pets-grid {
      display: grid;
      grid-template-columns: 1fr 0.85fr;
      gap: 56px;
      align-items: center;
    }
    .pets-video-wrap {
      max-width: 330px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      background: #000;
      aspect-ratio: 608 / 1080;
      box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    }
    .pets-video-wrap video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .pets-ig-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 26px;
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--gold-light);
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }
    .pets-ig-link:hover { border-bottom-color: var(--gold-light); }
    @media (max-width: 900px) {
      .pets-grid { grid-template-columns: 1fr; gap: 36px; }
      .pets-video-wrap { max-width: 300px; }
    }
