    /* ========================================
       CSS CUSTOM PROPERTIES
       ======================================== */
    :root {
      --inn-teal: #0B504F;
      --deep-teal: #0B504F;
      --warm-cream: #F4EDE3;
      --burnished-gold: #B8924A;
      --charcoal: #2D2D2D;
      --near-black: #1A1A1A;
      --soft-sage: #D4DDD6;
      --teal-shadow: rgba(11, 80, 79, 0.08);
      --teal-shadow-md: rgba(11, 80, 79, 0.12);
      --teal-shadow-lg: rgba(11, 80, 79, 0.16);

      --font-display: 'Cormorant Garamond', serif;
      --font-sc: 'Cormorant SC', serif;
      --font-body: 'DM Sans', sans-serif;

      --ivory: #FDFBF7;
      --colonial-slate: #3B4F5C;

      --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
      --ease-stately: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --transition-elegant: 0.5s;

      --h-hero: 64px;
      --h1: 44px;
      --h2: 32px;
      --h3: 23px;
      --h4: 19px;
      --body: 16px;
    }

    /* ========================================
       RESET & BASE
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font-body);
      font-size: var(--body);
      color: var(--charcoal);
      line-height: 1.6;
      background-color: var(--warm-cream);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      color: var(--near-black);
      line-height: 1.25;
      font-weight: 600;
    }

    h1 { font-size: var(--h1); }
    h2 { font-size: var(--h2); }
    h3 { font-size: var(--h3); }
    h4 { font-size: var(--h4); }

    a {
      color: var(--inn-teal);
      text-decoration: none;
      transition: color 0.3s var(--ease-smooth);
    }

    a:hover { color: var(--burnished-gold); }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: 100%;
      padding: 0 calc(5vw + 15px);
    }

    /* Section label */
    .section-label {
      font-family: var(--font-sc);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--burnished-gold);
      margin-bottom: 14px;
    }

    /* Flanking gold rules on centered section labels */
    .section-header .section-label {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .section-header .section-label::before,
    .section-header .section-label::after {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--burnished-gold);
      opacity: 0.5;
      flex-shrink: 0;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: var(--h1);
      font-weight: 600;
      color: var(--near-black);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }

    .section-subtitle {
      font-family: var(--font-display);
      font-size: 18px;
      font-style: italic;
      font-weight: 500;
      color: var(--charcoal);
      max-width: 640px;
      line-height: 1.7;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-header .section-subtitle {
      margin: 0 auto;
    }

    /* Gold divider — diamond ornament with flanking lines */
    .gold-divider {
      width: 200px;
      height: 2px;
      background: none;
      margin: 24px auto;
      position: relative;
    }

    .gold-divider::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent 0%,
        var(--burnished-gold) 20%,
        transparent 44%,
        transparent 56%,
        var(--burnished-gold) 80%,
        transparent 100%
      );
    }

    .gold-divider::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8px;
      height: 8px;
      background: var(--burnished-gold);
      transform: translate(-50%, -50%) rotate(45deg);
    }

    /* Buckram texture pseudo-element for cream sections */
    .has-texture {
      position: relative;
    }

    .has-texture::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('../assets/textures/buckram-texture.jpg');
      background-repeat: repeat;
      background-blend-mode: multiply;
      opacity: 0.07;
      pointer-events: none;
      z-index: 0;
    }

    .has-texture > * {
      position: relative;
      z-index: 1;
    }

    /* ========================================
       BUTTONS
       ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 40px;
      border-radius: 3px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all var(--transition-elegant) var(--ease-stately);
      text-decoration: none;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-gold {
      background: var(--burnished-gold);
      color: #fff;
      border-color: var(--burnished-gold);
    }

    .btn-gold:hover {
      background: #a6823f;
      border-color: #a6823f;
      color: #fff;
      box-shadow: 0 8px 24px rgba(184, 146, 74, 0.3);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.6);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: #fff;
      color: #fff;
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
    }

    .btn-ghost-dark {
      background: transparent;
      color: var(--inn-teal);
      border-color: var(--inn-teal);
    }

    .btn-ghost-dark:hover {
      background: var(--inn-teal);
      color: #fff;
      box-shadow: 0 8px 24px var(--teal-shadow-lg);
    }

    .btn-dark {
      background: var(--deep-teal);
      color: #fff;
      border-color: var(--deep-teal);
    }

    .btn-dark:hover {
      background: var(--inn-teal);
      border-color: var(--inn-teal);
      color: #fff;
      box-shadow: 0 8px 24px var(--teal-shadow-lg);
    }

    .btn-outline-gold {
      background: transparent;
      color: var(--burnished-gold);
      border-color: var(--burnished-gold);
    }

    .btn-outline-gold:hover {
      background: var(--burnished-gold);
      color: #fff;
      box-shadow: 0 8px 24px rgba(184, 146, 74, 0.3);
    }

    .link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-sc);
      font-size: 14px;
      font-weight: 600;
      color: var(--burnished-gold);
      letter-spacing: 0.06em;
      transition: all 0.3s var(--ease-smooth);
    }

    .link-arrow svg {
      transition: transform 0.3s var(--ease-smooth);
    }

    .link-arrow:hover {
      color: #a6823f;
    }

    .link-arrow:hover svg {
      transform: translateX(4px);
    }

    /* ========================================
       ANIMATIONS
       ======================================== */
    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
    }

    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .fade-in-up {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ========================================
       NAVIGATION
       ======================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      background: rgba(253, 251, 247, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(184, 146, 74, 0.12), 0 4px 20px var(--teal-shadow);
      transition: all 0.4s var(--ease-smooth);
    }

    .navbar.scrolled {
      background: rgba(253, 251, 247, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(184, 146, 74, 0.12), 0 4px 20px var(--teal-shadow);
      padding: 10px 0;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo {
      height: 52px;
      width: auto;
      transition: opacity 0.4s var(--ease-smooth);
    }

    /* Dark logo always shown (navbar is always opaque) */
    .nav-logo-light {
      display: none;
    }

    .nav-logo-dark {
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-item {
      position: relative;
    }

    .nav-link {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: var(--charcoal);
      padding: 8px 18px;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.3s var(--ease-smooth);
      cursor: pointer;
      border: none;
      background: none;
    }

    .nav-link svg {
      width: 14px;
      height: 14px;
      transition: transform 0.3s var(--ease-smooth);
    }

    .nav-link:hover {
      color: var(--burnished-gold);
    }

    .nav-item:hover .nav-link svg {
      transform: rotate(180deg);
    }

    /* Dropdown */
    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: var(--ivory);
      border-radius: 6px;
      padding: 20px 24px;
      min-width: 200px;
      box-shadow: 0 12px 40px var(--teal-shadow-lg);
      border: 1px solid rgba(184, 146, 74, 0.1);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s var(--ease-smooth);
      pointer-events: none;
    }

    .nav-item:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .nav-dropdown a {
      display: block;
      padding: 10px 0;
      font-size: 15px;
      font-weight: 400;
      color: var(--charcoal);
      border-bottom: 1px solid rgba(11, 80, 79, 0.06);
      transition: all 0.2s var(--ease-smooth);
    }

    .nav-dropdown a:last-child {
      border-bottom: none;
    }

    .nav-dropdown a:hover {
      color: var(--burnished-gold);
      padding-left: 6px;
    }

    .nav-cta {
      margin-left: 12px;
    }

    .nav-cta .btn {
      padding: 11px 28px;
      font-size: 14px;
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--near-black);
      transition: all 0.3s var(--ease-smooth);
    }

    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
      background: #fff;
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
      background: #fff;
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--deep-teal);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.5s var(--ease-smooth);
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-links {
      list-style: none;
      text-align: center;
    }

    .mobile-menu-links li {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s var(--ease-smooth);
    }

    .mobile-menu.active .mobile-menu-links li {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu-links a {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 500;
      color: #fff;
      display: block;
      padding: 12px 0;
    }

    .mobile-menu-links a:hover {
      color: var(--burnished-gold);
    }

    .mobile-menu-cta {
      margin-top: 32px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s var(--ease-smooth);
    }

    .mobile-menu.active .mobile-menu-cta {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/images/WLI-Left.jpg');
      background-size: cover;
      background-position: center;
      will-change: transform;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(11, 80, 79, 0.70) 0%,
        rgba(11, 80, 79, 0.55) 50%,
        rgba(11, 80, 79, 0.75) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 780px;
      padding: 0 24px;
    }

    .hero-badge {
      font-family: var(--font-sc);
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 0.25em;
      color: var(--burnished-gold);
      margin-bottom: 22px;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: var(--h-hero);
      font-weight: 600;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.08;
      letter-spacing: 0.03em;
    }

    .hero-subtitle {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 500;
      font-style: italic;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 36px;
      letter-spacing: 0.02em;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      animation: scrollBounce 2s ease-in-out infinite;
    }

    .scroll-indicator svg {
      width: 20px;
      height: 20px;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ========================================
       WELCOME SECTION
       ======================================== */
    .welcome {
      padding: 96px 0;
      background: var(--warm-cream);
    }

    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .welcome-text .section-label {
      margin-bottom: 12px;
    }

    .welcome-text h2 {
      margin-bottom: 20px;
    }

    .welcome-text p {
      color: var(--charcoal);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: rgba(11, 80, 79, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .feature-icon svg {
      width: 20px;
      height: 20px;
      color: var(--inn-teal);
    }

    .feature-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--near-black);
    }

    .welcome-image {
      position: relative;
    }

    .welcome-image img {
      border-radius: 6px;
      width: 100%;
      height: 540px;
      object-fit: cover;
      box-shadow: 0 20px 60px var(--teal-shadow-lg);
      border: 3px solid rgba(184, 146, 74, 0.15);
    }

    .est-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 110px;
      height: 110px;
      background: var(--inn-teal);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 8px 24px var(--teal-shadow-lg);
      border: 2px solid rgba(184, 146, 74, 0.3);
    }

    .est-badge-label {
      font-family: var(--font-sc);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.15em;
    }

    .est-badge-year {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 600;
      line-height: 1;
    }

    /* ========================================
       ROOMS PREVIEW SECTION
       ======================================== */
    .rooms {
      padding: 80px 0;
      background: var(--soft-sage);
    }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
      margin-bottom: 44px;
    }

    .room-card {
      background: var(--ivory);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 4px 20px var(--teal-shadow);
      border: 1px solid rgba(184, 146, 74, 0.08);
      transition: all var(--transition-elegant) var(--ease-stately);
    }

    .room-card:hover {
      box-shadow: 0 12px 40px var(--teal-shadow-lg);
      transform: translateY(-3px);
    }

    .room-card-image {
      position: relative;
      height: 280px;
      overflow: hidden;
    }

    .room-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-stately);
    }

    .room-card:hover .room-card-image img {
      transform: scale(1.03);
    }

    .room-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      font-family: var(--font-sc);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--inn-teal);
      color: #fff;
      padding: 5px 14px;
      border-radius: 4px;
    }

    .room-card-body {
      padding: 28px;
    }

    .room-card-body h3 {
      margin-bottom: 8px;
    }

    .room-meta {
      font-size: 13px;
      color: var(--inn-teal);
      font-weight: 500;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .room-meta svg {
      width: 14px;
      height: 14px;
    }

    .room-card-body p {
      font-size: 15px;
      color: var(--charcoal);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .rooms-footer {
      text-align: center;
    }

    /* ========================================
       AMENITIES BAR
       ======================================== */
    .amenities-bar {
      padding: 64px 0;
      background: var(--deep-teal);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      text-align: center;
    }

    .amenity-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 32px 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      transition: all 0.4s var(--ease-smooth);
    }

    .amenity-item:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(184, 146, 74, 0.3);
    }

    .amenity-icon {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(184, 146, 74, 0.12);
      border-radius: 50%;
    }

    .amenity-icon svg {
      width: 26px;
      height: 26px;
      color: var(--burnished-gold);
      stroke-width: 1.5;
    }

    .amenity-label {
      font-family: var(--font-sc);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.4;
    }

    /* ========================================
       BREAKFAST SECTION
       ======================================== */
    .breakfast {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .breakfast-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/images/Breakfast-Room.jpg');
      background-size: cover;
      background-position: center;
    }

    .breakfast-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(11, 80, 79, 0.92) 0%,
        rgba(11, 80, 79, 0.70) 50%,
        rgba(11, 80, 79, 0.40) 100%
      );
    }

    .breakfast-content {
      position: relative;
      z-index: 2;
      max-width: 580px;
      padding: 64px 0;
    }

    .breakfast-content .section-label {
      color: var(--burnished-gold);
    }

    .breakfast-content h2 {
      color: #fff;
      font-size: var(--h2);
      margin-bottom: 20px;
    }

    .breakfast-content p {
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .breakfast-note {
      font-size: 14px;
      font-style: italic;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 32px;
    }

    /* ========================================
       EVENTS SECTION
       ======================================== */
    .events {
      padding: 96px 0;
      background: var(--warm-cream);
    }

    .events-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .events-text .section-label {
      margin-bottom: 12px;
    }

    .events-text h2 {
      margin-bottom: 20px;
    }

    .events-text p {
      color: var(--charcoal);
      font-size: 17px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .event-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .event-tag {
      font-size: 13px;
      font-weight: 500;
      color: var(--inn-teal);
      background: rgba(11, 80, 79, 0.08);
      padding: 6px 16px;
      border-radius: 20px;
      transition: all 0.3s var(--ease-smooth);
    }

    .event-tag:hover {
      background: var(--inn-teal);
      color: #fff;
    }

    .events-image {
      position: relative;
    }

    .events-image img {
      border-radius: 6px;
      width: 100%;
      height: 500px;
      object-fit: cover;
      box-shadow: 0 20px 60px var(--teal-shadow-lg);
      border: 3px solid rgba(184, 146, 74, 0.15);
    }

    /* ========================================
       TESTIMONIALS SECTION
       ======================================== */
    .testimonials {
      padding: 96px 0;
      background: var(--warm-cream);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }

    .testimonial-card {
      background: var(--ivory);
      border-radius: 6px;
      padding: 40px 32px;
      border-top: 2px solid var(--burnished-gold);
      box-shadow: 0 4px 20px var(--teal-shadow);
      border-left: 1px solid rgba(184, 146, 74, 0.08);
      border-right: 1px solid rgba(184, 146, 74, 0.08);
      border-bottom: 1px solid rgba(184, 146, 74, 0.08);
      transition: all var(--transition-elegant) var(--ease-stately);
    }

    .testimonial-card:hover {
      box-shadow: 0 12px 40px var(--teal-shadow-md);
      transform: translateY(-3px);
    }

    .quote-mark {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 600;
      color: var(--burnished-gold);
      line-height: 0.6;
      margin-bottom: 8px;
      opacity: 0.25;
    }

    .stars {
      display: flex;
      gap: 2px;
      margin-bottom: 16px;
    }

    .stars svg {
      width: 16px;
      height: 16px;
      fill: var(--burnished-gold);
      color: var(--burnished-gold);
    }

    .testimonial-text {
      font-style: italic;
      font-size: 16px;
      line-height: 1.7;
      color: var(--charcoal);
      margin-bottom: 20px;
    }

    .testimonial-author {
      font-weight: 700;
      font-size: 14px;
      color: var(--near-black);
    }

    .testimonial-occasion {
      font-size: 13px;
      color: var(--inn-teal);
      font-weight: 500;
    }

    /* ========================================
       EXPLORE RIDGEFIELD
       ======================================== */
    .explore {
      padding: 96px 0;
      background: var(--soft-sage);
    }

    .explore-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px;
    }

    .explore-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      height: 420px;
      cursor: pointer;
    }

    .explore-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s var(--ease-stately);
    }

    .explore-card:hover img {
      transform: scale(1.03);
    }

    .explore-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(11, 80, 79, 0.85) 0%,
        rgba(11, 80, 79, 0.20) 50%,
        transparent 100%
      );
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 36px;
    }

    .explore-card-overlay h3 {
      font-family: var(--font-display);
      font-size: var(--h3);
      color: #fff;
      margin-bottom: 8px;
    }

    .explore-card-overlay p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 12px;
    }

    .explore-card .link-arrow {
      color: var(--burnished-gold);
    }

    /* ========================================
       FINAL CTA
       ======================================== */
    .final-cta {
      padding: 96px 0;
      background: var(--deep-teal);
      text-align: center;
    }

    .final-cta h2 {
      font-family: var(--font-display);
      font-size: var(--h1);
      color: #fff;
      margin-bottom: 12px;
    }

    .final-cta .section-subtitle {
      color: rgba(255, 255, 255, 0.75);
      margin: 0 auto 36px;
    }

    .final-cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .final-cta-phone {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
    }

    .final-cta-phone a {
      color: rgba(255, 255, 255, 0.7);
      transition: color 0.3s var(--ease-smooth);
    }

    .final-cta-phone a:hover {
      color: var(--burnished-gold);
    }

    /* ========================================
       FOOTER
       ======================================== */
    .footer {
      background: var(--deep-teal);
      border-top: none;
      padding: 64px 0 0;
      position: relative;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent,
        var(--burnished-gold),
        transparent
      );
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 64px;
      padding-bottom: 56px;
    }

    .footer-brand h3 {
      font-family: var(--font-display);
      font-size: var(--h3);
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .footer-brand p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-contact-info {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
    }

    .footer-contact-info a {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-contact-info a:hover {
      color: var(--burnished-gold);
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s var(--ease-smooth);
    }

    .footer-social a:hover {
      border-color: var(--burnished-gold);
      color: var(--burnished-gold);
    }

    .footer-social a svg {
      width: 18px;
      height: 18px;
    }

    .footer-col h4 {
      font-family: var(--font-sc);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--burnished-gold);
      margin-bottom: 24px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul a {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s var(--ease-smooth);
    }

    .footer-col ul a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom a:hover {
      color: var(--burnished-gold);
    }

    /* ========================================
       MOBILE BOOKING BAR
       ======================================== */
    .mobile-booking-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 998;
      background: var(--inn-teal);
      padding: 12px 24px;
      display: none;
      transform: translateY(100%);
      transition: transform 0.4s var(--ease-smooth);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .mobile-booking-bar.visible {
      transform: translateY(0);
    }

    .mobile-booking-bar .btn {
      width: 100%;
      justify-content: center;
      padding: 12px 24px;
    }

    /* ========================================
       RESPONSIVE
       ======================================== */

    /* Tablet and below */
    @media (max-width: 1024px) {
      .container {
        padding: 0 24px;
      }

      .nav-links, .nav-cta {
        display: none;
      }

      .nav-toggle {
        display: flex;
      }

      .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .welcome-image {
        order: -1;
      }

      .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .explore-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    /* Mobile */
    @media (max-width: 768px) {
      :root {
        --h-hero: 38px;
        --h1: 28px;
        --h2: 24px;
        --h3: 19px;
        --h4: 17px;
        --body: 15px;
      }

      .has-texture::before {
        display: none;
      }

      /* Hide flanking rules on mobile */
      .section-header .section-label::before,
      .section-header .section-label::after {
        display: none;
      }

      /* Narrow diamond divider on mobile */
      .gold-divider {
        width: 120px;
      }

      /* Thinner image frames on mobile */
      .welcome-image img,
      .events-image img {
        border-width: 2px;
      }

      .mobile-booking-bar {
        display: block;
      }

      .rooms-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .explore-grid {
        grid-template-columns: 1fr;
      }

      .explore-card {
        height: 280px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .welcome, .rooms, .events, .testimonials, .explore {
        padding: 56px 0;
      }

      .final-cta {
        padding: 56px 0;
      }

      .hero-subtitle {
        font-size: 17px;
      }

      .breakfast-content {
        padding: 36px 0;
      }
    }

    @media (max-width: 480px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-buttons .btn {
        width: 100%;
        justify-content: center;
      }

      .final-cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .final-cta-buttons .btn {
        width: 100%;
        justify-content: center;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .container {
        padding: 0 16px;
      }
    }
