
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
    body {
      font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #1A1A2E; background: #FFFFFF; overflow-x: hidden; line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; font-family: inherit; }

    :root {
      --navy: #0D1B2A;
      --navy-mid: #1B2838;
      --navy-deep: #0A1628;
      --gold: #C8963E;
      --gold-light: #D4A84E;
      --gold-dark: #B8862E;
      --white: #FFFFFF;
      --light-gray: #F5F5F5;
      --dark-text: #1A1A2E;
      --text-muted: #6B7280;
      --font-headline: 'DM Serif Display', Georgia, serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
      --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
      --radius: 12px;
      --radius-sm: 8px;
      --container: 1200px;
    }

    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
    .headline { font-family: var(--font-headline); font-weight: 400; line-height: 1.2; }

    /* ======================================
       NAV
       ====================================== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: transparent; transition: var(--transition);
    }
    .nav.scrolled {
      background: rgba(13, 27, 42, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-inner {
      max-width: var(--container); margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-body); font-weight: 700; font-size: 1rem;
      color: var(--white); letter-spacing: 0.04em;
    }
    .logo-gold { color: var(--gold); }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a {
      color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a.active { color: var(--gold); }

    .nav-cta {
      background: var(--gold); color: var(--white); padding: 10px 24px;
      border-radius: 8px; font-size: 0.9rem; font-weight: 600;
      transition: var(--transition);
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; padding: 4px;
    }
    .hamburger span {
      width: 24px; height: 2px; background: var(--white);
      transition: var(--transition); border-radius: 2px;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-overlay {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
      z-index: 998;
    }
    .mobile-overlay.show { display: block; }
    .mobile-menu {
      position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
      background: var(--navy); z-index: 999; padding: 80px 24px 24px;
      transition: right 0.3s ease; overflow-y: auto;
    }
    .mobile-menu.open { right: 0; }
    .mobile-nav-link {
      display: block; padding: 14px 0; color: rgba(255,255,255,0.85);
      font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-nav-link:hover { color: var(--gold); }

    /* ======================================
       HERO
       ====================================== */
    .hero {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%);
      padding: 160px 0 100px; text-align: center; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(200,150,62,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero h1 {
      font-family: var(--font-headline); font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--white); margin-bottom: 16px; position: relative;
    }
    .hero h1 .gold-line { color: var(--gold); }
    .hero p {
      color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 600px;
      margin: 0 auto; position: relative;
    }

    /* ======================================
       CONTACT INFO + FORM
       ====================================== */
    .contact-section { padding: 80px 0; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
    }
    .contact-info h2 {
      font-family: var(--font-headline); font-size: 1.75rem; color: var(--navy);
      margin-bottom: 32px;
    }
    .info-block { margin-bottom: 28px; }
    .info-block h3 {
      font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--gold); margin-bottom: 8px; font-weight: 700;
    }
    .info-block p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
    .info-block a { color: var(--navy); font-weight: 500; transition: color 0.2s; }
    .info-block a:hover { color: var(--gold); }

    .hours-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(34,197,94,0.1); color: #16a34a;
      padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
      margin-top: 4px;
    }
    .hours-badge::before {
      content: ''; width: 6px; height: 6px; background: #16a34a;
      border-radius: 50%; animation: blink 2s infinite;
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

    /* Form */
    .contact-form-card {
      background: var(--white); border: 1px solid #E5E7EB;
      border-radius: var(--radius); padding: 40px;
      box-shadow: var(--shadow-lg);
    }
    .contact-form-card h2 {
      font-family: var(--font-headline); font-size: 1.5rem; color: var(--navy);
      margin-bottom: 24px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark-text);
      margin-bottom: 6px;
    }
    .form-group label .required { color: #ef4444; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 12px 16px; border: 1px solid #D1D5DB;
      border-radius: var(--radius-sm); font-size: 0.95rem;
      font-family: var(--font-body); color: var(--dark-text);
      transition: border-color 0.2s, box-shadow 0.2s; background: var(--white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none; border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(200,150,62,0.15);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .btn-submit {
      width: 100%; padding: 14px 32px; background: var(--gold); color: var(--white);
      border: none; border-radius: var(--radius-sm); font-size: 1rem;
      font-weight: 700; cursor: pointer; transition: var(--transition);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .btn-submit .spinner {
      width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
      border-top-color: var(--white); border-radius: 50%;
      animation: spin 0.6s linear infinite; display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .form-status {
      margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm);
      font-size: 0.9rem; font-weight: 500; display: none;
    }
    .form-status.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
    .form-status.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

    /* ======================================
       MAP
       ====================================== */
    .map-section { padding: 0 0 80px; }
    .map-section h2 {
      font-family: var(--font-headline); font-size: 1.75rem; color: var(--navy);
      text-align: center; margin-bottom: 32px;
    }
    .map-wrapper {
      border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow-md); border: 1px solid #E5E7EB;
    }
    .map-wrapper iframe { width: 100%; height: 400px; border: none; display: block; }

    /* ======================================
       QUICK LINKS
       ====================================== */
    .quick-links { padding: 60px 0; background: var(--light-gray); }
    .quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .quick-card {
      background: var(--white); border: 1px solid #E5E7EB;
      border-radius: var(--radius); padding: 32px; text-align: center;
      transition: var(--transition);
    }
    .quick-card:hover {
      transform: translateY(-4px); box-shadow: var(--shadow-md);
      border-color: var(--gold);
    }
    .quick-card .icon {
      width: 48px; height: 48px; background: rgba(200,150,62,0.1);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; font-size: 1.4rem;
    }
    .quick-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
    .quick-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
    .quick-card .link {
      color: var(--gold); font-weight: 600; font-size: 0.9rem;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .quick-card .link:hover { gap: 8px; }

    /* ======================================
       FAQ
       ====================================== */
    .faq-section { padding: 80px 0; }
    .faq-section h2 {
      font-family: var(--font-headline); font-size: 2rem; color: var(--navy);
      text-align: center; margin-bottom: 12px;
    }
    .faq-section .subtitle {
      text-align: center; color: var(--text-muted); font-size: 1.05rem; margin-bottom: 48px;
    }
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item {
      border: 1px solid #E5E7EB; border-radius: var(--radius-sm);
      margin-bottom: 12px; overflow: hidden; transition: var(--transition);
    }
    .faq-item:hover { border-color: rgba(200,150,62,0.3); }
    .faq-question {
      width: 100%; padding: 18px 24px; background: none; text-align: left;
      font-size: 1rem; font-weight: 600; color: var(--dark-text);
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--font-body); cursor: pointer;
    }
    .faq-question .chevron {
      width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--gold);
    }
    .faq-item.open .faq-question .chevron { transform: rotate(180deg); }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 24px 18px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
    }

    /* ======================================
       FOOTER
       ====================================== */
    .footer {
      background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 0;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 16px;
    }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
    .footer-col h5 {
      color: var(--white); font-size: 0.85rem; text-transform: uppercase;
      letter-spacing: 0.08em; margin-bottom: 16px;
    }
    .footer-col a {
      display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem;
      padding: 4px 0; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4);
    }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* ======================================
       RESPONSIVE
       ====================================== */
    @media (max-width: 900px) {
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .quick-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .form-row { grid-template-columns: 1fr; }
      .hero { padding: 140px 0 80px; }
      .hero h1 { font-size: 2rem; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: 28px; }
      .hero p { font-size: 14px; }
      .container { padding: 0 16px; }
      .contact-grid { grid-template-columns: 1fr; gap: 24px; }
      .contact-form-card { padding: 24px; }
      .form-row { grid-template-columns: 1fr; }
      .quick-card { padding: 20px; }
      .faq-section h2, .map-section h2, .contact-info h2 { font-size: 24px; }
      .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    }

    /* ======================================
       ANIMATIONS
       ====================================== */
    .fade-in {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
  
