  /* ── Reset & Base ── */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

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

  body {
    overflow-x: hidden;
  }

  ::selection {
    background: #EBC4B4;
    color: #562D24;
  }

  /* ── Custom Properties ── */
  :root {
    --terracotta: #C0725A;
    --terracotta-light: #EBC4B4;
    --sand: #FAF3EB;
    --clay-dark: #50352B;
    --clay-mid: #845741;
    --clay-light: #C89E80;
  }

  /* ── Typography ── */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    line-height: 1.1;
  }

  /* ── Tag Label ── */
  .tag-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
  }

  /* ── Buttons ── */
  .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--terracotta);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--terracotta);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--terracotta);
  }

  .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--clay-700);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--clay-300);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
  }

  .btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
  }

  .btn-reserve {
    display: inline-block;
    padding: 10px 24px;
    background: var(--terracotta);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .btn-reserve:hover {
    background: var(--clay-700);
    border-color: var(--clay-700);
  }

  /* ── Nav Links ── */
  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* ── Input Fields ── */
  .input-field {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #D9BEAA;
    border-radius: 2px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--clay-dark);
    transition: border-color 0.3s ease;
    outline: none;
    appearance: none;
  }

  .input-field::placeholder {
    color: #C89E80;
  }

  .input-field:focus {
    border-color: var(--terracotta);
  }

  select.input-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23845741' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }

  /* ── Menu Items ── */
  .menu-item {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(200, 158, 128, 0.2);
  }

  .menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* ── Header Scroll State ── */
  #header.scrolled {
    background: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(200, 158, 128, 0.2);
  }

  #header.scrolled .nav-link {
    color: #845741;
  }

  /* ── Mobile Menu ── */
  #mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  #mobile-menu.open .mobile-link {
    animation: fadeUp 0.4s ease forwards;
    opacity: 0;
  }

  #mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.1s; }
  #mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.15s; }
  #mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.2s; }
  #mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.25s; }
  #mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.3s; }
  #mobile-menu.open .mobile-link:nth-child(6) { animation-delay: 0.35s; }

  /* ── Mobile Toggle Lines ── */
  #menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
  }
  #menu-toggle.active .line:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  #menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
  }

  /* ── Hero Animations ── */
  .hero-subtitle {
    animation: fadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
  }

  .hero-title {
    animation: fadeUp 1s ease 0.5s forwards;
    opacity: 0;
  }

  .hero-desc {
    animation: fadeUp 0.8s ease 0.8s forwards;
    opacity: 0;
  }

  .hero-cta {
    animation: fadeUp 0.8s ease 1s forwards;
    opacity: 0;
  }

  .hero-scroll {
    animation: fadeUp 0.8s ease 1.3s forwards;
    opacity: 0;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Reveal on Scroll ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal.delay-1 { transition-delay: 0.1s; }
  .reveal.delay-2 { transition-delay: 0.2s; }
  .reveal.delay-3 { transition-delay: 0.3s; }

  /* ── Mobile Menu Link Animation ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .hero-title br {
      display: none;
    }

    .hero-title span {
      display: block;
    }

    .btn-primary, .btn-secondary {
      width: 100%;
      text-align: center;
    }

    .hero-cta {
      flex-direction: column;
    }

    .grid-cols-2 {
      grid-template-columns: 1fr;
    }

    .grid-cols-3 {
      grid-template-columns: 1fr;
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
      font-size: 4rem;
    }
  }

  /* ── Focus Styles ── */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  select:focus-visible,
  textarea:focus-visible {
    outline: 2px solid var(--terracotta);
    outline-offset: 2px;
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }

    html {
      scroll-behavior: auto;
    }

    .reveal {
      opacity: 1;
      transform: none;
    }
  }
