/* ══════════════════════════════════════════════════════════════
       CSS TOKENS — Forest Canopy Theme
       Colors:  Forest Green #2d4a2b · Sage #7d8471 · Olive #a4ac86 · Ivory #faf9f6
       Fonts:   Libre Baskerville (headers) · Source Sans 3 (body) · Great Vibes (brand)
    ══════════════════════════════════════════════════════════════ */
    :root {
      /* Forest Canopy palette */
      --fc-deep: #2d4a2b;
      /* Forest Green (primary) */
      --fc-mid: #3d6b3a;
      /* Medium forest */
      --fc-sage: #7d8471;
      /* Sage accent */
      --fc-olive: #a4ac86;
      /* Olive light */
      --fc-pale: #dde5d4;
      /* Light sage bg */
      --fc-wash: #f2f5ee;
      /* Very light green wash */
      --fc-ivory: #faf9f6;
      /* Ivory background */
      --amber: #c8a45c;
      /* Warm amber accent */
      --amber-lt: #e8c98a;
      /* Light amber */
      --white: #ffffff;
      --text-dark: #1a2b19;
      /* Very dark green-black */
      --text-mid: #2d4a2b;
      /* Forest green */
      --text-muted: #7d8471;
      /* Sage muted */
      --border: rgba(45, 74, 43, 0.15);
      --shadow: 0 8px 32px rgba(45, 74, 43, 0.14);
      --shadow-hov: 0 16px 48px rgba(45, 74, 43, 0.24);
      --radius: 16px;
      --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    }

    /* ══ RESET ══════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Source Sans 3', sans-serif;
      color: var(--text-dark);
      background: var(--fc-ivory);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ══ TYPOGRAPHY ═════════════════════════════════════════════ */
    .script-font {
      font-family: 'Great Vibes', cursive;
      line-height: 1.1;
    }

    .serif-font {
      font-family: 'Libre Baskerville', serif;
    }

    .section-tag {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fc-mid);
      display: block;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Libre Baskerville', serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .section-sub {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.75;
      max-width: 560px;
    }

    /* ══ HEXAGON HONEYCOMB BACKGROUND ═══════════════════════════ */
    .hex-bg {
      background-color: var(--fc-wash);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 18L8 30v24l20 12 20-12V30L28 18z' fill='none' stroke='%232d4a2b' stroke-width='0.7' stroke-opacity='0.15'/%3E%3Cpath d='M28 100L0 84V52l28-16 28 16v32L28 100z' fill='none' stroke='%232d4a2b' stroke-width='0.7' stroke-opacity='0.15'/%3E%3C/svg%3E");
    }

    .hex-bg-dark {
      background-color: var(--fc-deep);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32L28 66zM28 18L8 30v24l20 12 20-12V30L28 18z' fill='none' stroke='%23ffffff' stroke-width='0.8' stroke-opacity='0.1'/%3E%3Cpath d='M28 100L0 84V52l28-16 28 16v32L28 100z' fill='none' stroke='%23ffffff' stroke-width='0.8' stroke-opacity='0.1'/%3E%3C/svg%3E");
    }

    /* ══ LAYOUT ══════════════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section {
      padding: 5rem 0;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .text-center {
      text-align: center;
    }

    .mb-1 {
      margin-bottom: 0.5rem;
    }

    .mb-2 {
      margin-bottom: 1rem;
    }

    .mb-3 {
      margin-bottom: 1.5rem;
    }

    .mb-4 {
      margin-bottom: 2rem;
    }

    .mb-5 {
      margin-bottom: 3rem;
    }

    /* ══ BUTTONS ═════════════════════════════════════════════════ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 2rem;
      border-radius: 50px;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--fc-deep), var(--fc-mid));
      color: var(--white);
      box-shadow: 0 4px 20px rgba(45, 74, 43, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(45, 74, 43, 0.45);
    }

    .btn-amber {
      background: linear-gradient(135deg, var(--amber), var(--amber-lt));
      color: var(--text-dark);
      box-shadow: 0 4px 20px rgba(200, 164, 92, 0.35);
    }

    .btn-amber:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(200, 164, 92, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.65);
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: var(--white);
    }

    /* ══ NAVBAR ══════════════════════════════════════════════════ */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }

    #navbar.scrolled {
      background: rgba(250, 249, 246, 0.96);
      backdrop-filter: blur(14px);
      box-shadow: 0 2px 24px rgba(45, 74, 43, 0.12);
      padding: 0.6rem 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-hex-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      flex-shrink: 0;
    }

    .nhi-t {
      width: 22px;
      height: 22px;
      background: #e68a37;
      clip-path: var(--hex-clip);
    }

    .nhi-row {
      display: flex;
      gap: 2px;
      margin-top: -6px;
    }

    .nhi-bl {
      width: 22px;
      height: 22px;
      background: #c42e58;
      clip-path: var(--hex-clip);
    }

    .nhi-br {
      width: 22px;
      height: 22px;
      background: #4daf7c;
      clip-path: var(--hex-clip);
    }

    .nav-brand-name {
      font-family: 'Bungee', cursive;
      font-size: 1.6rem;
      transition: text-shadow 0.4s;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      line-height: 1;
      padding-top: 5px;
    }

    .brand-t {
      color: #c42e58;
    }

    .brand-rest {
      color: #4daf7c;
    }

    #navbar.scrolled .nav-brand-name {
      text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1), 2px 2px 0px rgba(0, 0, 0, 0.1);
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 0.2rem;
      align-items: center;
    }

    .nav-links a {
      padding: 0.4rem 0.85rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.88);
      transition: all 0.25s;
    }

    #navbar.scrolled .nav-links a {
      color: var(--text-mid);
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.15);
    }

    #navbar.scrolled .nav-links a:hover {
      background: var(--fc-pale);
      color: var(--fc-deep);
    }

    .nav-links .nav-cta {
      background: linear-gradient(135deg, var(--fc-deep), var(--fc-mid));
      color: var(--white) !important;
      padding: 0.5rem 1.2rem;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0.25rem;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      border-radius: 4px;
      transition: all 0.3s;
    }

    #navbar.scrolled .hamburger span {
      background: var(--fc-deep);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      bottom: 0;
      right: -100%;
      width: 75%;
      max-width: 300px;
      background: rgba(250, 249, 246, 0.96);
      backdrop-filter: blur(20px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding-left: 2rem;
      gap: 1.2rem;
      transition: right 0.4s ease;
      box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-dark);
      padding: 0.75rem 2rem;
      border-radius: 50px;
      transition: all 0.2s;
    }

    .mobile-menu a:hover {
      background: var(--fc-pale);
      color: var(--fc-deep);
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--text-muted);
      background: none;
      border: none;
      line-height: 1;
    }

    /* ══ HERO ════════════════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(155deg, #1a3019 0%, #2d4a2b 35%, #3d6b3a 60%, #6b8f63 100%);
    }

    .hero-honeycomb {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='140' viewBox='0 0 80 140'%3E%3Cpath d='M40 93L0 70V24L40 2l40 22v46L40 93z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.07'/%3E%3Cpath d='M40 140L0 117V71l40-22 40 22v46L40 140z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.07'/%3E%3C/svg%3E");
    }

    /* Floating hex decorations */
    .hero-hex-deco {
      position: absolute;
      clip-path: var(--hex-clip);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      animation: floatHex 7s ease-in-out infinite;
    }

    .hero-hex-deco:nth-child(1) {
      width: 220px;
      height: 220px;
      top: 10%;
      right: 8%;
      animation-delay: 0s;
    }

    .hero-hex-deco:nth-child(2) {
      width: 130px;
      height: 130px;
      top: 58%;
      right: 18%;
      animation-delay: 1.5s;
    }

    .hero-hex-deco:nth-child(3) {
      width: 85px;
      height: 85px;
      top: 22%;
      left: 5%;
      animation-delay: 3s;
    }

    .hero-hex-deco:nth-child(4) {
      width: 310px;
      height: 310px;
      bottom: -60px;
      right: -40px;
      animation-delay: 0.8s;
      background: rgba(255, 255, 255, 0.025);
    }

    .hero-hex-deco:nth-child(5) {
      width: 55px;
      height: 55px;
      bottom: 22%;
      left: 12%;
      animation-delay: 2.2s;
    }

    @keyframes floatHex {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-18px) rotate(4deg);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      animation: heroFade 1s ease both;
    }

    @keyframes heroFade {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.22);
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      animation: heroFade 1s ease 0.2s both;
    }

    .star-amber {
      color: var(--amber-lt);
    }

    .hero-name-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 1.5rem;
      animation: heroFade 1s ease 0.35s both;
    }

    .hero-hex-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }

    .hhi-t {
      width: 60px;
      height: 60px;
      background: #e68a37;
      clip-path: var(--hex-clip);
    }

    .hhi-row {
      display: flex;
      gap: 5px;
      margin-top: -16px;
    }

    .hhi-bl {
      width: 60px;
      height: 60px;
      background: #c42e58;
      clip-path: var(--hex-clip);
    }

    .hhi-br {
      width: 60px;
      height: 60px;
      background: #4daf7c;
      clip-path: var(--hex-clip);
    }

    .hero-name-en {
      font-family: 'Bungee', cursive;
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 1;
      text-shadow: 2px 2px 0 #111, 4px 4px 0 #111, 6px 6px 0 #111;
      text-transform: uppercase;
      text-align: left;
    }

    .hero-name-en .tagline-inline {
      display: block;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.25em;
      text-shadow: none;
      margin-top: 10px;
      text-align: center;
    }

    .hero-name-hi {
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.5vw, 1.35rem);
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.28em;
      margin-top: 0.3rem;
      margin-bottom: 1.2rem;
      animation: heroFade 1s ease 0.5s both;
    }

    .hero-divider {
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
      margin: 1rem auto;
      animation: heroFade 1s ease 0.45s both;
    }

    .hero-tagline {
      font-size: clamp(1.05rem, 2.5vw, 1.3rem);
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.65;
      margin-bottom: 2.5rem;
      animation: heroFade 1s ease 0.65s both;
    }

    .hero-tagline em {
      color: var(--amber-lt);
      font-style: normal;
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: heroFade 1s ease 0.8s both;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      animation: scrollBounce 2.2s ease infinite;
    }

    @keyframes scrollBounce {

      0%,
      100% {
        transform: translateX(-50%) translateY(0);
      }

      50% {
        transform: translateX(-50%) translateY(7px);
      }
    }

    /* ══ ABOUT ═══════════════════════════════════════════════════ */
    #about {
      padding: 6rem 0;
      background: var(--fc-ivory);
      position: relative;
      overflow: hidden;
    }

    .about-right-deco {
      position: absolute;
      right: -90px;
      top: 50%;
      transform: translateY(-50%);
      width: 300px;
      height: 300px;
      clip-path: var(--hex-clip);
      background: linear-gradient(135deg, var(--fc-pale), var(--fc-wash));
      opacity: 0.5;
    }

    .about-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .about-stat-num {
      font-family: 'Libre Baskerville', serif;
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--fc-deep);
      line-height: 1;
    }

    .about-stat-lbl {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .about-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 380px;
    }

    .about-hex-main {
      width: 250px;
      height: 250px;
      clip-path: var(--hex-clip);
      background: linear-gradient(145deg, var(--fc-deep), var(--fc-mid));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 2rem;
    }

    .about-hex-main .big-icon {
      font-size: 3.2rem;
      margin-bottom: 0.5rem;
    }

    .about-hex-main p {
      font-size: 0.85rem;
      opacity: 0.82;
    }

    .about-hex-sm {
      position: absolute;
      clip-path: var(--hex-clip);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .ahs-1 {
      width: 108px;
      height: 108px;
      top: 4px;
      right: 18px;
      background: linear-gradient(145deg, var(--fc-pale), #c6d4bc);
    }

    .ahs-2 {
      width: 88px;
      height: 88px;
      bottom: 28px;
      right: 8px;
      background: linear-gradient(145deg, var(--amber-lt), #f5dca0);
    }

    .ahs-3 {
      width: 78px;
      height: 78px;
      bottom: 10px;
      left: 18px;
      background: linear-gradient(145deg, var(--fc-wash), #e0e8d8);
    }

    .about-hex-sm span {
      font-size: 1.55rem;
    }

    .about-hex-sm p {
      font-size: 0.6rem;
      font-weight: 700;
      color: var(--text-mid);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-top: 3px;
    }

    /* ══ HEX DIVIDER ═════════════════════════════════════════════ */
    .hex-divider {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      margin: 1.4rem 0;
    }

    .hex-divider::before,
    .hex-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border));
    }

    .hex-divider::after {
      background: linear-gradient(90deg, var(--border), transparent);
    }

    .hex-divider-dot {
      width: 18px;
      height: 18px;
      clip-path: var(--hex-clip);
      background: linear-gradient(135deg, var(--fc-mid), var(--fc-sage));
      flex-shrink: 0;
    }

    /* ══ MENU SECTION ════════════════════════════════════════════ */
    #menu {
      background: var(--fc-ivory);
    }

    #menu .inner {
      padding: 5rem 0 6rem;
    }

    /* Tabs */
    .menu-tabs-wrapper {
      overflow-x: auto;
      padding-bottom: 0.5rem;
      margin-bottom: 2.75rem;
      -webkit-overflow-scrolling: touch;
    }

    .menu-tabs {
      display: flex;
      gap: 0.45rem;
      list-style: none;
      white-space: nowrap;
      justify-content: center;
    }

    .menu-tab {
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.83rem;
      cursor: pointer;
      border: 2px solid var(--border);
      color: var(--text-muted);
      transition: all 0.25s;
      background: var(--white);
      user-select: none;
      font-family: 'Source Sans 3', sans-serif;
    }

    .menu-tab.active,
    .menu-tab:hover {
      background: var(--fc-deep);
      border-color: var(--fc-deep);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(45, 74, 43, 0.3);
    }

    .menu-category {
      display: none;
    }

    .menu-category.active {
      display: block;
    }

    .menu-cat-title {
      font-family: 'Great Vibes', cursive;
      font-size: 2.4rem;
      color: var(--fc-deep);
      margin-bottom: 0.2rem;
    }

    .menu-cat-desc {
      color: var(--text-muted);
      font-size: 0.88rem;
      margin-bottom: 1.75rem;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(278px, 1fr));
      gap: 1.2rem;
    }

    .menu-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.1rem 1.35rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.9rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .menu-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--fc-mid), var(--fc-sage));
      border-radius: 4px 0 0 4px;
    }

    .menu-card:hover {
      border-color: var(--fc-sage);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .menu-card-l {
      flex: 1;
      min-width: 0;
    }

    .mi-icon {
      font-size: 1.4rem;
      margin-bottom: 0.2rem;
    }

    .mi-name {
      font-weight: 700;
      font-size: 0.93rem;
      color: var(--text-dark);
      margin-bottom: 0.12rem;
    }

    .mi-desc {
      font-size: 0.76rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .mi-price {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--fc-deep);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Veg dot marker */
    .vd {
      display: inline-block;
      width: 11px;
      height: 11px;
      border: 1.5px solid #2e7d32;
      border-radius: 2px;
      position: relative;
      margin-left: 4px;
      flex-shrink: 0;
      vertical-align: middle;
    }

    .vd::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 5px;
      height: 5px;
      background: #2e7d32;
      border-radius: 50%;
    }

    /* ══ SERVICES ════════════════════════════════════════════════ */
    #services {
      background: var(--fc-wash);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
      gap: 1.4rem;
      margin-top: 3rem;
    }

    .svc-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.85rem 1.4rem;
      text-align: center;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--fc-mid), var(--fc-sage));
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .svc-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hov);
    }

    .svc-card:hover::after {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 62px;
      height: 62px;
      clip-path: var(--hex-clip);
      background: linear-gradient(145deg, var(--fc-pale), #c6d4bc);
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: all 0.3s;
    }

    .svc-card:hover .svc-icon {
      background: linear-gradient(145deg, var(--fc-deep), var(--fc-mid));
    }

    .svc-title {
      font-weight: 700;
      font-size: 0.93rem;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }

    .svc-desc {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ══ AMENITIES ═══════════════════════════════════════════════ */
    #amenities {
      background: var(--fc-ivory);
    }

    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
      gap: 1.2rem;
      margin-top: 3rem;
    }

    .amenity-chip {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.55rem;
      padding: 1.4rem 1rem;
      border-radius: var(--radius);
      background: var(--fc-wash);
      border: 1px solid var(--border);
      text-align: center;
      transition: all 0.25s;
    }

    .amenity-chip:hover {
      background: var(--fc-pale);
      border-color: var(--fc-sage);
      transform: translateY(-2px);
    }

    .amenity-chip .icon {
      font-size: 1.7rem;
    }

    .amenity-chip p {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-mid);
    }

    .pay-banner {
      margin-top: 2.5rem;
      padding: 1.8rem 2rem;
      background: linear-gradient(135deg, var(--fc-pale), #d4e0cb);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .pay-banner h3 {
      font-family: 'Libre Baskerville', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .pay-banner p {
      font-size: 0.83rem;
      color: var(--text-muted);
    }

    /* ══ RESERVE CTA ═════════════════════════════════════════════ */
    #reserve {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1a3019, #2d4a2b 45%, #3d6b3a 75%, #6b8f63 100%);
    }

    #reserve .overlay {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='140' viewBox='0 0 80 140'%3E%3Cpath d='M40 93L0 70V24L40 2l40 22v46L40 93z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3Cpath d='M40 140L0 117V71l40-22 40 22v46L40 140z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
    }

    .rsv-inner {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      padding: 5rem 0;
    }

    .rsv-inner .script-font {
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      color: var(--white);
    }

    .rsv-inner p {
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.78);
      margin: 1rem 0 2.2rem;
    }

    .rsv-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ══ CONTACT ═════════════════════════════════════════════════ */
    #contact {
      background: var(--fc-wash);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 3rem;
      align-items: start;
      margin-top: 3rem;
    }

    .contact-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
    }

    .contact-item {
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--border);
    }

    .contact-item:last-child {
      border-bottom: none;
    }

    .ci-icon {
      width: 38px;
      height: 38px;
      clip-path: var(--hex-clip);
      background: linear-gradient(145deg, var(--fc-pale), #c6d4bc);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .ci-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 0.18rem;
    }

    .ci-value {
      font-size: 0.88rem;
      color: var(--text-dark);
      font-weight: 600;
      line-height: 1.55;
    }

    .hours-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.2rem 0.9rem;
      margin-top: 0.25rem;
    }

    .h-day {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .h-time {
      font-size: 0.78rem;
      color: var(--fc-deep);
      font-weight: 700;
    }

    .open-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.22rem 0.75rem;
      border-radius: 50px;
      margin-top: 0.6rem;
    }

    .open-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #4caf50;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.35);
      }
    }

    .map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .map-wrap iframe {
      display: block;
      width: 100%;
      height: 420px;
      border: none;
    }

    /* ══ FOOTER ══════════════════════════════════════════════════ */
    footer {
      background: var(--text-dark);
      color: rgba(255, 255, 255, 0.65);
      padding: 3rem 0 1.5rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      margin-bottom: 1.5rem;
    }

    .footer-brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 0.5rem;
    }

    .footer-brand {
      font-family: 'Bungee', cursive;
      font-size: 1.8rem;
      text-transform: uppercase;
      text-shadow: 1px 1px 0 #000, 2px 2px 0 #000;
    }

    .footer-hindi {
      font-family: 'Libre Baskerville', serif;
      font-style: italic;
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
    }

    .footer-desc {
      font-size: 0.83rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 1.2rem;
    }

    .social-links {
      display: flex;
      gap: 0.55rem;
    }

    .soc-btn {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.07);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.2s;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .soc-btn:hover {
      background: var(--fc-mid);
      border-color: var(--fc-mid);
      transform: translateY(-2px);
    }

    .footer-col-title {
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }

    .footer-links a {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.2s;
    }

    .f-info {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .footer-links a:hover {
      color: var(--fc-olive);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.28);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .veg-badge-footer {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: rgba(46, 125, 50, 0.2);
      border: 1px solid rgba(76, 175, 80, 0.28);
      color: #a5d6a7;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 0.28rem 0.7rem;
      border-radius: 50px;
    }

    /* ══ SCROLL REVEAL ═══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .rd1 {
      transition-delay: 0.1s;
    }

    .rd2 {
      transition-delay: 0.2s;
    }

    .rd3 {
      transition-delay: 0.3s;
    }

    .rd4 {
      transition-delay: 0.4s;
    }

    /* ══ STARS ═══════════════════════════════════════════════════ */
    .stars span {
      color: var(--amber);
      font-size: 0.95rem;
    }

    /* ══ RESPONSIVE ══════════════════════════════════════════════ */
    @media (max-width: 960px) {
      .grid-2 {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .about-visual {
        height: 280px;
      }

      .about-hex-main {
        width: 200px;
        height: 200px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .section {
        padding: 4rem 0;
      }

      .menu-tabs {
        justify-content: flex-start;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .about-visual {
        display: none;
      }

      .map-wrap {
        display: none;
      }

      .hero-name-wrapper {
        flex-direction: column;
        gap: 15px;
      }

      .nav-brand-name {
        font-size: 1.35rem;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
      }
      .footer-bottom span {
        text-align: center !important;
      }
    }

    @media (max-width: 480px) {
      .services-grid {
        grid-template-columns: 1fr;
      }

      .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
      }

      .hhi-t, .hhi-bl, .hhi-br {
        width: 45px;
        height: 45px;
      }

      .hhi-row {
        margin-top: -12px;
      }

      .hero-name-en .tagline-inline {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
      }

      .nav-brand-name {
        font-size: 1.15rem;
      }

      .footer-brand {
        font-size: 1.4rem;
      }

      .hero-badge {
        font-size: 0.68rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        flex-wrap: wrap;
        justify-content: center;
        line-height: 1.5;
        letter-spacing: 0.08em;
      }
    }