 *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      :root {
        --gold: #d6ab45;
        --gold-light: #e0bc60;
        --gold-dim: #b08e34;
        --black: #041c17;
        --dark: #061f19;
        --dark-2: #08251e;
        --dark-3: #0b2c24;
        --gray-dark: #0e3329;
        --gray-mid: #7a9e96;
        --white: #ffffff;
        --text-light: #c8ddd9;
        --text-mid: #8ab5ac;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--black);
        color: var(--white);
        font-family: "EB Garamond", "Cormorant Garamond", Georgia, serif;
        /* font-size:20px; */
        line-height: 1.7;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 40px 50px;
        background: var(--black);
        border-bottom: 1px solid rgba(214, 171, 69, 0.15);
      }
      .nav-logo {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
      }
      .nav-logo-name {
        font-family: "Cinzel", serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.18em;
        color: var(--gold);
      }
      .nav-logo-sub {
        font-family: "Cinzel", serif;
        font-size: 7px;
        font-weight: 400;
        letter-spacing: 0.25em;
        color: var(--gold-dim);
        text-transform: uppercase;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
      }
      .nav-links a {
        font-family: "Cinzel", serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.22em;
        color: var(--white);
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      nav.scrolled {
        background: rgba(4, 28, 23, 0.97);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        background: var(--black);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
        position: relative;
        margin-top: 60px;
      }
      .hero-card {
        width: 400px;
        height: 550px;
        background: var(--dark-2);
        border: 1px solid rgba(214, 171, 69, 0.18);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        box-shadow: 0 28px 25px rgba(0, 0, 0, 0.68);
        margin-top: 80px;
      }
      .hero-ornament {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 10px;
      }
      .hero-ornament svg {
        width: 110px;
        height: 36px;
        fill: var(--gold);
        opacity: 0.9;
      }
      .hero-title {
        font-family: "Cinzel", serif;
        font-size: 40px;
        font-weight: 600;
        letter-spacing: 0.12em;
        color: var(--gold);
        line-height: 1.1;
        text-align: center;
      }
      .hero-sub {
        font-family: "Cinzel", serif;
        font-size: 17px;
        font-weight: 400;
        letter-spacing: 0.3em;
        color: var(--gold-dim);
        text-transform: uppercase;
        margin-top: 4px;
      }
      .hero-tagline {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        font-size: 27px;
        color: var(--text-light);
        letter-spacing: 0.04em;
        margin-bottom: 22px;
        text-align: center;
        padding: 0 20px;
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        margin-bottom: 38px;
      }
      .btn-outline {
        font-family: "Cinzel", serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        background: transparent;
        border: 1px solid var(--gold);
        padding: 11px 22px;
        cursor: pointer;
        text-decoration: none;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .btn-outline:hover {
        background: var(--gold);
        color: var(--black);
      }
      .hero-dot {
        width: 6px;
        height: 6px;
        background: var(--gold);
        border-radius: 50%;
      }

      /* SECTION HEADER */
      .section-header {
        text-align: center;
        margin-bottom: 44px;
      }
      .section-title {
        font-family: "Cinzel", serif;
        font-size: 28px;
        font-weight: 500;
        letter-spacing: 0.3em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .section-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .section-divider::before,
      .section-divider::after {
        content: "";
        display: block;
        width: 50px;
        height: 1px;
        background: var(--gold-dim);
        opacity: 0.5;
      }
      .section-divider-dot {
        width: 5px;
        height: 5px;
        background: var(--gold);
        border-radius: 50%;
      }

      /* OUR STORY */
      .story {
        padding: 90px 50px;
        background: var(--black);
      }
      .story-inner {
        max-width: 1060px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 60px;
        align-items: start;
      }
      .story-text {
        font-family: "EB Garamond", serif;
        font-size: 20px;
        color: var(--text-light);
        line-height: 1.85;
      }
      .story-text p + p {
        margin-top: 18px;
      }
      .story-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2px;
      }
      .feature-card {
        background: var(--dark-3);
        border: 1px solid rgba(214, 171, 69, 0.12);
        padding: 20px 16px;
      }
      .feature-title {
        font-family: "Cinzel", serif;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 0.22em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 8px;
      }
      .feature-desc {
        font-family: "EB Garamond", serif;
        font-size: 16px;
        color: var(--text-mid);
        line-height: 1.65;
      }

      /* SUNDAY BANQUET */
      .banquet-section {
        padding: 90px 50px;
        background: var(--dark);
      }
      .banquet-inner {
        max-width: 820px;
        margin: 0 auto;
      }
      .banquet-card {
        border: 1px solid rgba(214, 171, 69, 0.3);
        background: linear-gradient(
          135deg,
          var(--dark-2) 0%,
          var(--dark-3) 100%
        );
        padding: 48px 52px;
        position: relative;
        overflow: hidden;
      }
      .banquet-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
      }
      .banquet-badge {
        display: inline-block;
        font-family: "Cinzel", serif;
        font-size: 8px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--black);
        background: var(--gold);
        padding: 5px 16px;
        margin-bottom: 20px;
      }
      .banquet-title {
        font-family: "Cinzel", serif;
        font-size: 26px;
        font-weight: 600;
        letter-spacing: 0.08em;
        color: var(--gold);
        margin-bottom: 6px;
      }
      .banquet-sub {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        font-size: 22px;
        color: var(--text-mid);
        margin-bottom: 28px;
      }
      .banquet-price-row {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 30px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(214, 171, 69, 0.15);
      }
      .banquet-price {
        font-family: "Cinzel", serif;
        font-size: 48px;
        font-weight: 600;
        color: var(--gold);
        line-height: 1;
      }
      .banquet-price-label {
        font-family: "EB Garamond", serif;
        font-size: 16px;
        color: var(--text-mid);
      }
      .banquet-includes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 30px;
        margin-bottom: 28px;
      }
      .banquet-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }
      .banquet-check {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 3px;
        color: var(--gold);
      }
      .banquet-item-text {
        font-family: "EB Garamond", serif;
        font-size: 18px;
        color: var(--text-light);
      }
      .banquet-note {
        font-family: "EB Garamond", serif;
        font-style: italic;
        font-size: 18px;
        color: var(--text-mid);
        padding: 14px 18px;
        border: 1px solid rgba(214, 171, 69, 0.12);
        background: rgba(214, 171, 69, 0.04);
        margin-bottom: 26px;
      }
      .banquet-cta {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      /* MENU */
      .menu-section {
        padding: 90px 50px;
        background: var(--dark-2);
      }
      .menu-tabs {
        display: flex;
        justify-content: center;
        gap: 0;
        margin-bottom: 38px;
      }
      .menu-tab {
        font-family: "Cinzel", serif;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 11px 26px;
        border: 1px solid var(--gold);
        cursor: pointer;
        background: transparent;
        color: var(--gold);
        transition:
          background 0.2s,
          color 0.2s;
      }
      .menu-tab.active,
      .menu-tab:hover {
        background: var(--gold);
        color: var(--black);
      }
      .menu-tab + .menu-tab {
        border-left: none;
      }
      .menu-card {
        max-width: 1200px;
        margin: 0 auto;
        /* background: var(--white); */
        color: var(--black);
        padding: 28px 28px 20px;
        box-shadow: 0 28px 25px rgba(0, 0, 0, 0.68);
      }
      .menu-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 20px;
      }
      .menu-category {
        margin-bottom: 18px;
      }
      .menu-cat-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8px;
      }
      .menu-cat-title {
        font-family: "Cinzel", serif;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: #111;
      }
      .menu-cat-img {
        width: 72px;
        height: 52px;
        object-fit: cover;
        border-radius: 2px;
      }
      .menu-item {
        display: flex;
        justify-content: space-between;
        font-family: "EB Garamond", serif;
        font-size: 18px;
        color: #333;
        border-bottom: 1px solid #eee;
        padding: 4px 0;
      }
      .menu-item-name {
        flex: 1;
        padding-right: 8px;
      }
      .menu-item-price {
        white-space: nowrap;
        color: #555;
      }
      .menu-cat-subtitle {
        font-family: "Cinzel", serif;
        font-size: 7.5px;
        letter-spacing: 0.15em;
        color: #777;
        text-transform: uppercase;
        margin-bottom: 4px;
      }
      .menu-download {
        text-align: center;
        margin-top: 28px;
      }

      /* OPENING HOURS */
      .hours-section {
        padding: 90px 50px;
        background: var(--black);
      }
      .hours-card {
        max-width: 480px;
        margin: 0 auto;
        border: 1px solid rgba(214, 171, 69, 0.18);
        padding: 36px 40px;
        box-shadow: 0 28px 25px rgba(0, 0, 0, 0.68);
      }
      .hours-open-today {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(214, 171, 69, 0.15);
      }
      .open-dot {
        width: 7px;
        height: 7px;
        background: #4caf50;
        border-radius: 50%;
      }
      .open-label {
        font-family: "Cinzel", serif;
        font-size: 16px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-mid);
      }
      .open-time {
        font-family: "EB Garamond", serif;
        font-size: 16px;
        color: var(--gold);
        margin-left: 4px;
      }
      .hours-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
      .hours-day {
        font-family: "Cinzel", serif;
        font-size: 16px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-mid);
      }
      .hours-time {
        font-family: "EB Garamond", serif;
        font-size: 16px;
        color: var(--text-light);
      }
      .hours-row.sunday .hours-day {
        color: var(--gold);
      }
      .hours-row.sunday .hours-time {
        color: var(--gold);
      }
      .hours-note {
        font-family: "EB Garamond", serif;
        font-style: italic;
        font-size: 20px;
        color: var(--gray-mid);
        text-align: center;
        margin-top: 18px;
      }

      /* FIND US */
      .find-section {
        padding: 90px 50px;
        background: var(--dark);
      }
      .find-inner {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
      }
      .find-info {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .find-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .find-icon {
        width: 16px;
        color: var(--gold);
        margin-top: 3px;
        flex-shrink: 0;
      }
      .find-label {
        font-family: "Cinzel", serif;
        font-size: 16px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 4px;
      }
      .find-value {
        font-family: "EB Garamond", serif;
        font-size: 16px;
        color: var(--text-light);
        line-height: 1.5;
      }
      .find-value a {
        color: var(--gold);
        text-decoration: none;
        font-size: 16px;
        letter-spacing: 0.04em;
      }
      .find-map {
        width: 600px;
        height: 330px;
        background: var(--dark-3);
        border: 1px solid rgba(214, 171, 69, 0.12);
        overflow: hidden;
      }

      /* FOOTER */
      footer {
        background: var(--black);
        border-top: 1px solid rgba(214, 171, 69, 0.12);
        padding: 44px 50px 22px;
        text-align: center;
      }
      .footer-logo-name {
        font-family: "Cinzel", serif;
        font-size: 25px;
        letter-spacing: 0.22em;
        color: var(--gold);
        margin-bottom: 2px;
      }
      .footer-logo-sub {
        font-family: "Cinzel", serif;
        font-size: 17px;
        letter-spacing: 0.3em;
        color: var(--gold-dim);
        text-transform: uppercase;
        margin-bottom: 22px;
      }
      .footer-nav {
        display: flex;
        justify-content: center;
        gap: 28px;
        list-style: none;
        margin-bottom: 18px;
      }
      .footer-nav a {
        font-family: "Cinzel", serif;
        font-size: 16px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-mid);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-nav a:hover {
        color: var(--gold);
      }
      .footer-copy {
        font-family: "EB Garamond", serif;
        font-size: 18px;
        color: #3a6b5e;
      }




      /* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* ── Large tablets / small laptops (≤1024px) ── */
/* ============================================
   RESPONSIVE STYLES
   ============================================ */

img {
  max-width: 100%;
  height: auto;
}

.find-map iframe {
  width: 100%;
  display: block;
}

/* ── Hamburger toggle button (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.1); */
  z-index: 140;
}

.nav-overlay.open { display: block; }

/* ── Large tablets / small laptops (≤1024px) ── */
@media (max-width: 1024px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-features {
    grid-template-columns: 1fr 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .find-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .find-item {
    justify-content: center;
  }

  .find-map {
    width: 100%;
    margin: 0 auto;
  }

  .banquet-card {
    padding: 40px 36px;
  }
}

/* ── Tablets (≤768px) ── */
@media (max-width: 768px) {
  body {
    text-align: center;
  }

  nav {
    padding: 14px 20px;
  }

  .nav-logo img {
    height: 48px !important;
    width: auto !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid rgba(214, 171, 69, 0.2);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 30px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 150;
    text-align: center;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(214, 171, 69, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    display: block;
    padding: 16px 0;
    font-size: 13px;
    letter-spacing: 0.18em;
  }

  /* HERO — remove extra top space, center everything */
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-card {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 12px;
  }

  .hero-tagline {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 30px;
  }

  .btn-outline {
    text-align: center;
    width: 100%;
  }

  .section-header {
    text-align: center;
  }

  .section-title {
    font-size: 19px;
    letter-spacing: 0.2em;
  }

  .story,
  .banquet-section,
  .menu-section,
  .hours-section,
  .find-section {
    padding: 56px 20px;
  }

  .story-text {
    font-size: 15px;
    text-align: center;
  }

  .story-features {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .banquet-inner {
    text-align: center;
  }

  .banquet-card {
    padding: 32px 22px;
  }

  .banquet-title {
    font-size: 22px;
  }

  .banquet-sub {
    font-size: 15px;
  }

  .banquet-price {
    font-size: 38px;
  }

  .banquet-price-row {
    justify-content: center;
  }

  .banquet-includes {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .banquet-cta {
    flex-direction: column;
    align-items: center;
  }

  .banquet-cta .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .menu-tabs {
    flex-wrap: wrap;
    max-width: 380px;
    margin: 0 auto 30px;
  }

  .menu-tab {
    flex: 1;
    min-width: 140px;
    padding: 11px 10px;
    font-size: 13px;
  }

  .menu-card {
    padding: 16px;
  }

  .hours-card {
    padding: 28px 22px;
  }

  .hours-day,
  .hours-time {
    font-size: 13px;
  }

  .find-info {
    align-items: center;
  }

  .find-item {
    justify-content: center;
    text-align: left;
    max-width: 320px;
  }

  .find-map iframe {
    width: 100%;
    height: 240px;
  }

  footer {
    padding: 36px 20px 18px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
    justify-content: center;
  }
  
  
  #f-2{
      margin-left: -100px !important;
  }
  
}

/* ── Mobile phones (≤480px) ── */
@media (max-width: 480px) {
  .nav-logo img {
    height: 30px !important;
  }

  .hero {
    padding-top: 95px;
    padding-bottom: 40px;
  }

  .hero-card {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 21px;
  }

  .hero-sub {
    font-size: 10px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .section-title {
    font-size: 17px;
  }

  .section-divider::before,
  .section-divider::after {
    width: 30px;
  }

  .banquet-badge {
    font-size: 9px;
    padding: 5px 14px;
  }

  .banquet-title {
    font-size: 19px;
  }

  .banquet-sub {
    font-size: 14px;
  }

  .banquet-price {
    font-size: 34px;
  }

  .banquet-price-label {
    font-size: 13px;
  }

  .banquet-item-text {
    font-size: 14px;
  }

  .banquet-note {
    font-size: 13px;
    padding: 12px 14px;
  }

  .menu-tab {
    font-size: 11px;
    padding: 10px 8px;
  }

  .menu-item {
    font-size: 14px;
  }

  .menu-cat-title {
    font-size: 16px;
  }

  .find-label {
    font-size: 12px;
  }

  .find-value {
    font-size: 14px;
  }

  .footer-logo-name {
    font-size: 20px;
  }

  .footer-logo-sub {
    font-size: 13px;
  }

  .footer-nav a {
    font-size: 10px;
  }

  .footer-copy {
    font-size: 12px;
    padding: 0 10px;
  }
  
  #f-2{
      margin-left: -100px !important;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .hero-card {
    width: 100%;
    height: auto;
  }

  .hero-title {
    font-size: 18px;
  }
  #f-2{
      margin-left: -100px !important;
  }
}

/* ── Make all images responsive by default ── */
img {
  max-width: 100%;
  height: auto;
}

.find-map iframe {
  width: 100%;
  display: block;
}

/* ── Hamburger toggle button (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation when open */
.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav menu ── */
@media (max-width: 768px) {
  nav {
    padding: 12px 20px;
    position: relative;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid rgba(214, 171, 69, 0.2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 30px 30px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 150;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(214, 171, 69, 0.1);
  }

  .nav-links li a {
    display: block;
    padding: 16px 0;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 8px;
  }

  /* Overlay behind mobile menu */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    z-index: 140;
  }

  .nav-overlay.open {
    display: block;
  }
}


/* =========================
   NAVBAR
========================= */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:20px 30px;

    background:#041c17;

    border-bottom:1px solid rgba(214,171,69,.15);

    transition:.3s;
}

nav.scrolled{
    background:rgba(4,28,23,.96);
    backdrop-filter:blur(12px);
}

.nav-logo img{
    height:70px;
    width:auto;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-family:Cinzel;
    letter-spacing:.18em;
    font-size:13px;
}

.nav-links a:hover{
    color:#d6ab45;
}


/* =========================
   TOGGLE
========================= */

.nav-toggle{
    display:none;

    width:34px;
    height:34px;

    border:none;
    background:none;

    cursor:pointer;

    flex-direction:column;
    justify-content:center;

    gap:5px;

    z-index:1100;
}

.nav-toggle span{
    width:100%;
    height:2px;

    background:#d6ab45;

    transition:.3s;
}

.nav-toggle.open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2){
    opacity:0;
}

.nav-toggle.open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}


/* =========================
   OVERLAY
========================= */

.nav-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.3s;

    z-index:900;

}

.nav-overlay.open{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

nav{

padding:15px 20px;

}

.nav-logo img{

height:50px !important;

}

.nav-toggle{

display:flex;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100dvh;

background:#041c17;

flex-direction:column;

align-items:flex-start;

justify-content:flex-start;

padding:90px 25px;

gap:0;

transition:right .35s ease;

box-shadow:-5px 0 30px rgba(0,0,0,.6);

z-index:1001;

overflow-y:auto;

}

.nav-links.open{

right:0;

}

.nav-links li{

width:100%;

border-bottom:1px solid rgba(214,171,69,.12);

}

.nav-links li:last-child{

border:none;

}

.nav-links a{

display:block;

width:100%;

padding:18px 0;

font-size:12px;

}

#f-2{
      margin-left: -100px !important;
  }

}

body.menu-open{

overflow:hidden;

}
