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

  :root {
    --navy: #1B2A4A;
    --navy-light: #243660;
    --gold: #C8A45C;
    --gold-light: #D4B76E;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    --gray-100: #F5F3EF;
    --gray-200: #E8E4DD;
    --gray-400: #9E9A93;
    --gray-600: #6B6760;
    --gray-800: #3A3630;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-800);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ── Typography ── */
  .section-eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }

  .menu-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 3rem;
  }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
  }

  .btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 42, 74, 0.25);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }

  .btn-submit {
    margin-top: 0.5rem;
  }

  /* ── Navigation ── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition);
  }

  .nav.scrolled {
    background: rgba(251, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 var(--gray-200);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color var(--transition);
  }

  .nav.scrolled .nav-logo {
    color: var(--navy);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
  }

  .nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    transition: color var(--transition);
  }

  .nav.scrolled .nav-links a {
    color: var(--gray-600);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
  }

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

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav.scrolled .nav-links a:hover {
    color: var(--gold);
  }

  /* Mobile toggle */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
  }

  .nav.scrolled .nav-toggle span {
    background: var(--navy);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
  }

  /* ── Hero ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(27, 42, 74, 0.55) 0%,
      rgba(27, 42, 74, 0.4) 50%,
      rgba(27, 42, 74, 0.7) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
  }

  .hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }

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

  /* ── Features Strip ── */
  .features {
    background: var(--navy);
    padding: 3rem 0;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
  }

  .feature-item span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
  }

  /* ── Menu ── */
  .menu {
    padding: 7rem 0;
    background: var(--cream);
  }

  .menu .section-title {
    text-align: center;
  }

  .menu .menu-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .menu-card {
    background: var(--white);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(27, 42, 74, 0.1);
    border-color: transparent;
  }

  .menu-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu-card:hover img {
    transform: scale(1.05);
  }

  .menu-card-body {
    padding: 2rem;
  }

  .menu-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .menu-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
  }

  /* ── About ── */
  .about {
    padding: 7rem 0;
    background: var(--white);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .about-text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }

  /* ── Gallery ── */
  .gallery {
    padding: 7rem 0;
    background: var(--cream);
  }

  .gallery .section-title {
    text-align: center;
  }

  .gallery .menu-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all var(--transition);
    filter: brightness(0.95);
  }

  .gallery-grid img:hover {
    filter: brightness(1);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(27, 42, 74, 0.15);
  }

  /* ── Visit ── */
  .visit {
    padding: 7rem 0;
    background: var(--white);
  }

  .visit .section-title {
    text-align: center;
  }

  .visit .menu-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }

  .visit-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
  }

  .visit-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .visit-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .visit-block h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.4rem;
  }

  .visit-block p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
  }

  .visit-block a {
    color: var(--gray-600);
    transition: color var(--transition);
  }

  .visit-block a:hover {
    color: var(--gold);
  }

  .visit-map {
    min-height: 380px;
    background: var(--gray-200);
    overflow: hidden;
  }

  /* ── Contact ── */
  .contact {
    padding: 7rem 0;
    background: var(--navy);
  }

  .contact .section-eyebrow {
    color: var(--gold);
  }

  .contact .section-title {
    color: var(--white);
    text-align: center;
  }

  .contact .menu-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-wrapper {
    max-width: 640px;
    margin: 0 auto;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .form-group input,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--white);
    transition: all var(--transition);
    outline: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-success {
    display: none;
    text-align: center;
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }

  .form-success.show {
    display: block;
    animation: fadeUp 0.5s forwards;
  }

  /* ── Footer ── */
  .footer {
    background: #141F36;
    padding: 4rem 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
  }

  .footer-tagline {
    margin-top: 1rem !important;
    line-height: 1.7 !important;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
  }

  .footer-links a:hover {
    color: var(--white);
  }

  .footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
  }

  .footer-contact a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
  }

  /* ── Scroll Animations ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid img {
      height: 220px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--navy);
      flex-direction: column;
      padding: 5rem 2.5rem 2rem;
      gap: 1.5rem;
      transition: right var(--transition);
      box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.open {
      right: 0;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 0.85rem;
    }

    .nav-toggle {
      display: flex;
      z-index: 1001;
    }

    .hero-headline {
      font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .menu-grid {
      grid-template-columns: 1fr;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .about-image img {
      height: 300px;
    }

    .visit-grid {
      grid-template-columns: 1fr;
    }

    .visit-map {
      min-height: 280px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 1.25rem;
    }

    .feature-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .gallery-grid img {
      height: 220px;
    }

    .hero-cta-group {
      flex-direction: column;
      align-items: center;
    }

    .btn {
      width: 100%;
      max-width: 240px;
    }
  }
