  /* ─── Base & Utilities ─── */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body { margin: 0; }

  ::selection { background: #f9d4d9; color: #5a1e27; }

  /* ─── Typography ─── */
  h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }
  p, a, span, label, input, textarea, button { font-family: 'Inter', system-ui, sans-serif; }

  /* ─── Section Labels & Titles ─── */
  .section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7B2D3A;
    background: linear-gradient(135deg, #f9d4d9, #f0a8b4);
    padding: 0.4em 1em;
    border-radius: 50px;
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #3a1217;
    line-height: 1.15;
  }

  .section-desc {
    font-size: 1.05rem;
    color: #7B2D3A;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Light variants for dark section */
  .section-label-light {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4em 1em;
    border-radius: 50px;
  }

  .section-title-light {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
  }

  .section-desc-light {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ─── Buttons ─── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7B2D3A, #9a3a48);
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, #6b2530, #7B2D3A);
    transform: translateY(-1px);
  }

  /* ─── Inputs ─── */
  .input-field {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #f0a8b4;
    border-radius: 12px;
    background: #fefcfb;
    color: #3a1217;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
  }
  .input-field::placeholder { color: #d94f68; opacity: 0.4; }
  .input-field:focus {
    border-color: #7B2D3A;
    box-shadow: 0 0 0 3px rgba(123, 45, 58, 0.1);
    background: #fff;
  }

  /* ─── Menu Cards ─── */
  .menu-card {
    background: #fff;
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 4px 24px rgba(123, 45, 58, 0.06);
    border: 1px solid rgba(123, 45, 58, 0.06);
    transition: all 0.4s ease;
  }
  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(123, 45, 58, 0.12);
  }

  /* ─── Visit Cards ─── */
  .visit-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
  }
  .visit-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
  }

  /* ─── Gallery Items ─── */
  .gallery-item {
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(123, 45, 58, 0.08);
    transition: all 0.4s ease;
  }
  .gallery-item:hover {
    box-shadow: 0 12px 40px rgba(123, 45, 58, 0.18);
  }

  /* ─── Nav Links ─── */
  .nav-link { position: relative; }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B2D3A;
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }

  .mobile-nav-link {
    position: relative;
    padding-left: 0;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
  }
  .mobile-nav-link:hover {
    border-left-color: #7B2D3A;
    padding-left: 1rem;
    color: #7B2D3A;
  }

  /* ─── Header States ─── */
  #header.scrolled {
    background: rgba(254, 252, 251, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(123, 45, 58, 0.08);
  }
  #header.scrolled .nav-link { color: #7B2D3A; }
  #header.scrolled .nav-link:hover { color: #5a1e27; }

  /* ─── Animations ─── */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }
  .fade-in-up:nth-child(2) { animation-delay: 0.15s; }
  .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
  .fade-in-up:nth-child(4) { animation-delay: 0.45s; }

  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-scroll-line {
    animation: scrollLine 1.8s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── Responsive ─── */
  @media (max-width: 767px) {
    .section-title { font-size: 1.8rem; }
    .section-title-light { font-size: 1.8rem; }
  }
