 /* ============================================
       HOME PAGE — Specific Styles
    ============================================ */

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1600&q=75') center/cover no-repeat;
      transform: scale(1.04);
      animation: heroZoom 18s ease-in-out infinite alternate;
    }

    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.10); }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(17,29,64,0.91) 0%,
        rgba(27,43,94,0.78) 55%,
        rgba(27,43,94,0.45) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 120px 0 80px;
      max-width: 640px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 30px;
      height: 2px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 4rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 22px;
    }

    .hero h1 span { color: var(--gold); }

    .hero-desc {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 500px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 52px;
    }

    .hero-badges {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .hero-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.70);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .hero-badge .icon {
      width: 34px; height: 34px;
      background: rgba(245,168,0,0.18);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* Scroll indicator */
    .scroll-cue {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.45);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: bounce 2s ease-in-out infinite;
    }
    .scroll-cue::after {
      content: '';
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.25);
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(7px); }
    }

    /* ---- Stats Strip ---- */
    .stats-strip {
      background: var(--gold);
      padding: 0;
    }
    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .stat-item {
      padding: 22px 20px;
      text-align: center;
      border-right: 1px solid rgba(27,43,94,0.14);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy-dark);
      opacity: 0.72;
      margin-top: 4px;
    }

    /* ---- About Section ---- */
    .about-section {
      padding: 96px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
    }
    .about-img-wrap img {
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: var(--radius-md);
    }
    .about-img-badge {
      position: absolute;
      bottom: 24px; right: 24px;
      background: var(--gold);
      color: var(--navy);
      padding: 16px 22px;
      border-radius: var(--radius-sm);
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .about-img-badge .big { font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
    .about-img-badge .small { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

    .about-text .gold-divider { margin: 14px 0 28px; }

    .about-text p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .hours-box {
      background: var(--off-white);
      border-left: 4px solid var(--gold);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 22px 24px;
      margin: 28px 0;
    }
    .hours-box h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 12px;
    }
    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      padding: 5px 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { font-weight: 600; color: var(--text-dark); }
    .hours-row .time { color: var(--gray); }

    /* ---- Services Section ---- */
    .services-section {
      background: var(--off-white);
      padding: 80px 0;
    }
    .services-section .section-center { text-align: center; margin-bottom: 48px; }
    .services-section .section-center .gold-divider { margin: 14px auto 0; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .service-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 36px 28px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      border-top: 4px solid transparent;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-top-color: var(--gold);
    }
    .service-icon {
      font-size: 2.4rem;
      margin-bottom: 18px;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

    /* ---- Featured Menu Teaser ---- */
    .menu-teaser {
      padding: 96px 0;
      background: var(--white);
    }
    .teaser-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .teaser-header .gold-divider { margin: 14px auto 24px; }
    .teaser-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 48px;
    }
    .teaser-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
      background: var(--white);
    }
    .teaser-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .teaser-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .teaser-info {
      padding: 18px 20px;
    }
    .teaser-info h4 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .teaser-info p { font-size: 0.85rem; color: var(--gray); }
    .teaser-center { text-align: center; }

    /* ---- CTA Banner ---- */
    .cta-banner {
      background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 320px; height: 320px;
      background: rgba(245,168,0,0.08);
      border-radius: 50%;
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 240px; height: 240px;
      background: rgba(245,168,0,0.05);
      border-radius: 50%;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 16px;
    }
    .cta-inner h2 span { color: var(--gold); }
    .cta-inner p {
      color: rgba(255,255,255,0.72);
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto 36px;
    }
    .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* Responsive */
    @media (max-width: 960px) {
      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .about-img-wrap img { height: 320px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .teaser-grid { grid-template-columns: 1fr 1fr; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .stat-item:nth-child(2) { border-right: none; }
    }

    @media (max-width: 580px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .services-grid { grid-template-columns: 1fr; }
      .teaser-grid { grid-template-columns: 1fr; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
    }