
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sunrise-orange: #E8621A;
    --sunrise-gold: #F5A623;
    --sunrise-yellow: #FDD87A;
    --sunrise-cream: #FFF8EE;
    --sunrise-brown: #3B2009;
    --sunrise-mid: #7A3B10;
    --text-dark: #2C1A08;
    --text-mid: #5A3A1A;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--sunrise-cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center;
    padding: 16px 40px;
    background: rgba(255,248,238,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(232,98,26,0.15);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(59,32,9,0.12); }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--sunrise-orange);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; margin-left: auto; }
  .nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--sunrise-orange); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
    background: linear-gradient(170deg, #FFF1D6 0%, #FFE0A3 40%, #FBBF6E 75%, #E8621A 100%);
  }
  .sun {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFE566 0%, #F5A623 45%, #E8621A 80%, transparent 100%);
    top: -120px; left: 50%; transform: translateX(-50%);
    opacity: 0.35;
    animation: sunrise 1s ease-out forwards;
  }
  @keyframes sunrise {
    from { top: 40px; opacity: 0; }
    to   { top: -120px; opacity: 0.35; }
  }
  .hero-rays {
    position: absolute; inset: 0; pointer-events: none;
    background: repeating-conic-gradient(from 0deg at 50% -10%, rgba(255,220,100,0.06) 0deg, transparent 10deg, rgba(255,220,100,0.06) 20deg);
  }
  .hero-tagline {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--sunrise-orange);
    margin-bottom: 16px;
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    color: var(--sunrise-brown);
    margin-bottom: 24px;
    /* No animation — LCP element, must paint immediately */
  }
  .hero-title em { font-style: italic; color: var(--sunrise-orange); }
  .hero-sub {
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: var(--text-mid); max-width: 520px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s ease forwards;
  }
  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.5s ease forwards;
  }
  .btn-primary {
    background: var(--sunrise-orange); color: white;
    padding: 14px 32px; border-radius: 3px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--sunrise-mid); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--sunrise-brown);
    padding: 14px 32px; border-radius: 3px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 2px solid var(--sunrise-brown);
    transition: all 0.2s; cursor: pointer;
  }
  .btn-outline:hover { background: var(--sunrise-brown); color: white; transform: translateY(-2px); }
  .hero-badges {
    margin-top: 48px; display: flex; gap: 32px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.5s ease forwards;
  }
  .badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
    color: var(--sunrise-brown); text-transform: uppercase;
  }
  .badge-icon { font-size: 1.2rem; }
  @keyframes fadeUp {
    from { opacity: 0.3; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 96px 24px; }
  .section-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--sunrise-orange);
    margin-bottom: 12px; display: block;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--sunrise-brown); line-height: 1.2;
    margin-bottom: 20px;
  }
  .section-body {
    font-size: 1.05rem; line-height: 1.8; color: var(--text-mid);
    max-width: 540px;
  }
  .divider {
    width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--sunrise-orange), var(--sunrise-gold));
    border-radius: 2px; margin-bottom: 28px;
  }


  /* ── FAQ ── */
  #faq { background: var(--sunrise-cream); text-align: center; }
  .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: white;
    border-radius: 10px;
    border: 1.5px solid #f0e6d0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(59,32,9,0.05);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sunrise-brown);
    transition: background 0.2s;
  }
  .faq-question:hover { background: #fff8ee; }
  .faq-question.open { background: #fff8ee; color: var(--sunrise-orange); }
  .faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--sunrise-orange);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
  }
  .faq-question.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    border-top: 1px solid #f0e6d0;
    padding-top: 16px;
  }
  .faq-answer.open { display: block; }

  /* ── ABOUT ── */
  .about-section {
    background: white;
    padding: 96px 24px;
  }
  #about {
    background: white;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    max-width: 1100px; margin: 0 auto; border-radius: 4px;
    padding: 80px 64px;
    box-shadow: 0 4px 40px rgba(59,32,9,0.07);
  }
  .about-visual {
    background: linear-gradient(135deg, #FFF1D6, #FBBF6E);
    border-radius: 4px;
    min-height: 380px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; padding: 40px;
    position: relative; overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(232,98,26,0.15), transparent 60%);
  }
  .about-icon { font-size: 3.5rem; }
  .about-stat { text-align: center; }
  .about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; color: var(--sunrise-orange); display: block;
  }
  .about-stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
  .about-stats-row { display: flex; gap: 40px; }

  /* ── MENU ── */
  #menu { background: var(--sunrise-cream); max-width: 1100px; margin: 0 auto; }
  .menu-header { text-align: center; margin-bottom: 56px; }
  .menu-header .section-body { max-width: 560px; margin: 0 auto; }
  .menu-header .divider { margin: 0 auto 28px; }
  .menu-tabs {
    display: flex; justify-content: center; gap: 4px; flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .tab-btn {
    padding: 10px 28px; border: none; cursor: pointer;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    border-radius: 2px;
    background: white; color: var(--text-mid);
    transition: all 0.2s;
  }
  .tab-btn.active { background: var(--sunrise-orange); color: white; }
  .tab-btn:hover:not(.active) { background: var(--sunrise-yellow); }
  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
  .menu-card {
    background: white; border-radius: 4px; padding: 28px;
    border-left: 4px solid var(--sunrise-gold);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .menu-card:hover { box-shadow: 0 8px 32px rgba(59,32,9,0.1); transform: translateY(-3px); }
  .menu-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
  .menu-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--sunrise-brown); }
  .menu-card-price { font-weight: 700; color: var(--sunrise-orange); white-space: nowrap; margin-left: 12px; }
  .menu-card-desc { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
  .menu-note {
    text-align: center; margin-top: 40px;
    font-size: 0.9rem; color: var(--text-mid); font-style: italic;
  }

  /* ── CATERING ── */
  #catering {
    background: linear-gradient(135deg, var(--sunrise-brown) 0%, #5A2E0E 100%);
    color: white;
  }
  .catering-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .catering-inner .section-title { color: white; }
  .catering-inner .section-body { color: rgba(255,255,255,0.75); max-width: 100%; }
  .catering-inner .section-label { color: var(--sunrise-gold); }
  .catering-features { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
  .catering-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.5;
  }
  .catering-features li::before {
    content: '✦';
    color: var(--sunrise-gold); font-size: 0.7rem; margin-top: 4px; flex-shrink: 0;
  }
  .catering-events {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px;
  }
  .event-chip {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px; padding: 16px 20px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.9); text-align: center;
    transition: background 0.2s;
  }
  .event-chip:hover { background: rgba(245,166,35,0.25); }
  .event-chip .chip-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }

  /* ── REVIEWS ── */
  #reviews { background: white; }
  .reviews-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .stars-row { color: var(--sunrise-gold); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: 8px; }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; margin-top: 48px; text-align: left;
  }
  .review-card {
    background: var(--sunrise-cream); border-radius: 4px; padding: 28px;
    border-top: 3px solid var(--sunrise-gold);
  }
  .review-stars { color: var(--sunrise-gold); font-size: 0.9rem; margin-bottom: 12px; }
  .review-text { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
  .review-author { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sunrise-brown); }

  /* ── HOURS ── */
  #hours {
    background: var(--sunrise-cream);
  }
  .hours-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .info-card {
    background: white; border-radius: 4px; padding: 36px 32px;
    box-shadow: 0 2px 20px rgba(59,32,9,0.06);
  }
  .info-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
  .info-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    color: var(--sunrise-brown); margin-bottom: 16px;
  }
  .hours-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .hours-list li { display: flex; justify-content: space-between; font-size: 0.95rem; color: var(--text-mid); }
  .hours-list .day { font-weight: 700; color: var(--text-dark); }
  .hours-list .closed { color: #bbb; font-style: italic; }
  .contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.5; }
  .contact-list .ci { flex-shrink: 0; }
  .contact-list a { color: var(--sunrise-orange); text-decoration: none; }
  .contact-list a:hover { text-decoration: underline; }
  .map-embed { border-radius: 4px; overflow: hidden; height: 200px; background: #e8e0d8; display: flex; align-items: center; justify-content: center; margin-top: 12px; }
  .map-placeholder { text-align: center; color: var(--text-mid); font-size: 0.85rem; }

  /* ── CONTACT FORM ── */
  #contact {
    background: white;
  }
  .contact-inner { max-width: 760px; margin: 0 auto; }
  .contact-inner .section-title { text-align: center; }
  .contact-inner .divider { margin: 0 auto 28px; }
  .contact-inner .section-label { text-align: center; display: block; }
  .contact-inner .section-body { text-align: center; max-width: 100%; margin-bottom: 48px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
  input, select, textarea {
    padding: 12px 16px; border: 1.5px solid #E8D9C5;
    border-radius: 3px; font-family: 'Lato', sans-serif; font-size: 0.95rem;
    color: var(--text-dark); background: var(--sunrise-cream);
    transition: border-color 0.2s;
    outline: none;
  }
  input:focus, select:focus, textarea:focus { border-color: var(--sunrise-orange); background: white; }
  textarea { resize: vertical; min-height: 120px; }
  .form-submit { margin-top: 8px; }
  .form-success {
    display: none; text-align: center; padding: 24px;
    background: #F0FFF4; border: 1.5px solid #68D391; border-radius: 3px;
    color: #276749; font-weight: 700; margin-top: 20px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--sunrise-brown); color: rgba(255,255,255,0.65);
    text-align: center; padding: 40px 24px;
  }
  footer .footer-logo {
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    color: var(--sunrise-gold); margin-bottom: 12px; display: block;
  }
  footer p { font-size: 0.85rem; line-height: 1.8; }
  footer a { color: var(--sunrise-gold); text-decoration: none; }
  .footer-social { margin-top: 20px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .social-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 2px;
    transition: all 0.2s;
  }
  .social-link:hover { background: rgba(255,255,255,0.1); color: white; }

  /* ── RESPONSIVE ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
    margin-left: auto;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--sunrise-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--sunrise-cream);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--sunrise-brown);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-align: center;
  }
  .mobile-nav a:hover { background: var(--sunrise-orange); color: white; }
  .mobile-nav .social-row {
    display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; justify-content: center;
  }
  .mobile-nav .social-row a {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    padding: 10px 20px;
    background: var(--sunrise-brown); color: white;
    border-radius: 30px;
  }
  .mobile-nav .social-row a:hover { background: var(--sunrise-orange); }

  @media (max-width: 768px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none !important; width: 0; overflow: hidden; }
    .hamburger { display: flex; }
    #about { grid-template-columns: 1fr; padding: 48px 20px; gap: 40px; }
    .about-visual { min-height: 220px; }
    .catering-inner { grid-template-columns: 1fr; gap: 40px; }
    .catering-events { grid-template-columns: 1fr 1fr; }
    .hours-inner { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: 1; }
    section { padding: 64px 20px; }
    .two-cards { flex-direction: column; align-items: center; }
    .tab-btn { padding: 10px 18px; flex: 1 1 calc(50% - 4px); text-align: center; }
    .social-link { flex: 1 1 calc(33% - 10px); justify-content: center; }
    .social-cards-grid { grid-template-columns: 1fr !important; }
  }


  @media(max-width:900px){ .gallery-grid{grid-template-columns:repeat(3,1fr)!important;} }
  @media(max-width:600px){ .gallery-grid{grid-template-columns:repeat(2,1fr)!important;} }
