:root {
      --bg-main: #C7B9A0;
      --primary: #000000;
      --secondary: #1a1a1a;
      --accent: #F0F4F8;
      --glass-bg: rgba(255, 255, 255, 0.2);
      --glass-border: rgba(255, 255, 255, 0.4);
      --glass-shadow: 0 20px 40px rgba(0, 31, 63, 0.15);
      --font-head: 'Montserrat', sans-serif;
      --font-body: 'Mulish', sans-serif;
      --transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    }

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

    body {
      font-family: var(--font-body);
      color: var(--primary);
      background-color: var(--bg-main);
      line-height: 1.7;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; width: 100%; height: 100%;
      background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
      background-size: 40px 40px;
      opacity: 0.1;
      z-index: -1;
      pointer-events: none;
    }

    h1, h2, h3, h4, .brand {
      font-family: var(--font-head);
      text-transform: uppercase;
      color: var(--primary);
    }

    p { margin-bottom: 1rem; color: #000000; font-weight: 500; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }

    .section-padding { padding: 6rem 8%; }
    .text-center { text-align: center; }

    /* Navbar */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000;
      background: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }

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

    .site-header.scrolled {
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }

    .brand {
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--primary);
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .brand i { font-size: 1.3rem; }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      position: relative;
      padding: 0.5rem 0;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

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

    .nav-btn {
      background: var(--primary);
      padding: 12px 28px;
      border-radius: 4px;
      color: #fff;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .nav-btn:hover {
      background: #1a1a1a;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu-btn {
      display: none;
      color: var(--primary);
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Hero */
    .gastronomy-hero {
      min-height: 90vh;
      display: flex;
      align-items: center;
      padding: 8rem 8% 5rem 8%;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.15)),
                  url('budha.jpg') center/cover no-repeat;
      filter: saturate(1.05);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 720px;
      width: min(100%, 720px);
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 22px;
      padding: 3.5rem 3rem;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
      text-align: center;
      margin: 0 auto;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #ffffff;
      color: #000000;
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin: 0 auto 1.5rem;
    }

    .hero-content h1 {
      color: #ffffff;
      font-size: clamp(2.1rem, 4vw, 3.4rem);
      line-height: 1.1;
      margin-bottom: 1.2rem;
      font-weight: 800;
    }

    .hero-content p {
      color: #f5f5f5;
      font-size: clamp(1rem, 1.6vw, 1.1rem);
      font-weight: 600;
      margin-bottom: 2rem;
    }

    .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-group .btn { min-width: 220px; justify-content: center; }

    .btn {
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary {
      background: #ffffff;
      color: #000000;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-4px);
      background: #f3f3f3;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: #ffffff;
      border: 2px solid #ffffff;
    }

    .btn-outline:hover {
      background: #ffffff;
      color: #000000;
      transform: translateY(-2px);
    }

    /* Section Head */
    .section-head {
      margin-bottom: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      padding-bottom: 1.8rem;
      border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    }
    .section-head.centered-head {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.8rem;
    }
    .section-head.centered-head p { max-width: 620px; margin: 0 auto; }

    .section-head h2 {
      font-size: clamp(2rem, 3vw, 2.6rem);
      line-height: 1.2;
      color: var(--primary);
      font-weight: 800;
    }

    /* Cards */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .menu-card {
      background: rgba(255, 255, 255, 0.75);
      border-radius: 18px;
      box-shadow: 0 10px 30px rgba(0, 31, 63, 0.12);
      overflow: hidden;
      transition: all 0.35s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .menu-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(0, 31, 63, 0.18);
      border-color: #000000;
    }

    .menu-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .menu-card-body {
      padding: 1.5rem 1.6rem 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .menu-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.08);
      color: #1a1a1a;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      width: fit-content;
    }

    .menu-card p {
      color: #3e3e3e;
      font-size: 0.95rem;
      margin: 0;
      flex: 1;
    }

    .menu-link {
      margin-top: 0.75rem;
      font-weight: 700;
      color: #000000;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      font-size: 0.8rem;
    }

    .menu-link:hover { gap: 14px; }

    /* Dish Filters */
    .dish-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .filter-group {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 8px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.6);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.85rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .search-box {
      background: #fff;
      border-radius: 50px;
      padding: 5px 6px 5px 16px;
      display: flex;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0, 31, 63, 0.08);
      width: 260px;
      transition: box-shadow 0.3s ease;
    }

    .search-box:focus-within {
      box-shadow: 0 6px 20px rgba(0, 31, 63, 0.15);
    }

    .search-input {
      border: none;
      outline: none;
      font-family: var(--font-body);
      font-size: 0.9rem;
      color: var(--primary);
      flex: 1;
      background: transparent;
    }

    .search-btn {
      background: var(--primary);
      color: #fff;
      border: none;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 6px;
      transition: background 0.3s ease;
    }

    .search-btn:hover { background: #1a1a1a; }

    /* Fruits */
    .fruit-section { background: #DDD4C5; }

    .fruit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 2rem;
    }

    .fruit-card {
      background: rgba(255, 255, 255, 0.82);
      border-radius: 18px;
      box-shadow: 0 10px 28px rgba(0, 31, 63, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .fruit-card:hover {
      transform: translateY(-6px);
      border-color: #000000;
      box-shadow: 0 16px 34px rgba(0, 31, 63, 0.18);
    }

    .fruit-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .fruit-card-body {
      padding: 1.6rem 1.7rem 1.8rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      flex: 1;
    }

    .fruit-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
    .fruit-card p { color: #3e3e3e; margin: 0; font-size: 0.95rem; }

    .fruit-link {
      margin-top: auto;
      font-weight: 700;
      color: #000000;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.7px;
      font-size: 0.8rem;
    }

    .fruit-link:hover { gap: 14px; }

    /* Tasting Trail */
    .trail-section {
      background: #F5F0E8;
    }

    .trail-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .trail-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 8px 25px rgba(0, 31, 63, 0.12);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .trail-card h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }

    /* Footer */
    footer {
      background: #001F3F;
      color: #bcccdc;
      padding: 5rem 8% 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-col h4 {
      color: #fff;
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
    }

    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 0.8rem; }
    .footer-links a { color: #bcccdc; transition: var(--transition); }
    .footer-links a:hover { color: #C7B9A0; padding-left: 5px; }

    .socials a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      margin-right: 10px;
      color: #fff;
    }

    .socials a:hover {
      background: #C7B9A0;
      color: #001F3F;
    }

    .newsletter-form { display: flex; margin-top: 1rem; }
    .newsletter-form input {
      padding: 12px;
      border-radius: 30px 0 0 30px;
      border: none;
      outline: none;
      width: 100%;
      background: rgba(255,255,255,0.1);
      color: #fff;
    }
    .newsletter-form button {
      padding: 12px 20px;
      border-radius: 0 30px 30px 0;
      border: none;
      background: #C7B9A0;
      color: #001F3F;
      font-weight: bold;
      cursor: pointer;
    }

    @media(max-width: 1100px) {
      .nav-links { display: none; }
      .mobile-menu-btn { display: block; }
    }

    @media(max-width: 1024px) {
      .nav-container { padding: 0.9rem 1.5rem; gap: 1.5rem; }
      .gastronomy-hero { padding: 7rem 6% 4rem; min-height: 72vh; }
      .hero-content { max-width: 100%; }
      .hero-content h1 { font-size: 2.9rem; }
      .section-padding { padding: 5rem 6%; }
      .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .fruit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .trail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media(max-width: 820px) {
      .section-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .section-head p { max-width: 100%; }
      .hero-content { padding: 2.6rem 2.2rem; }
      .hero-content h1 { font-size: 2.4rem; }
      .hero-content p { font-size: 1rem; }
      .dish-controls { align-items: stretch; gap: 1rem; }
      .search-box { width: 100%; }
      .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.5rem; }
      .filter-group::-webkit-scrollbar { height: 6px; }
      .filter-group::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 999px; }
      .filter-btn { white-space: nowrap; }
    }

    @media(max-width: 640px) {
      .gastronomy-hero { min-height: auto; padding: 6rem 6% 3rem; }
      .hero-content { padding: 2rem 1.5rem; }
      .hero-content h1 { font-size: 2rem; }
      .hero-content p { font-size: 0.98rem; }
      .btn-group { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; justify-content: center; }
      .menu-grid { grid-template-columns: 1fr; }
      .fruit-grid { grid-template-columns: 1fr; }
      .trail-grid { grid-template-columns: 1fr; }
      .menu-card img { height: 170px; }
      .fruit-card img { height: 160px; }
    }

/* Inline styles extracted from HTML */
.u-inline-1 { color: var(--primary); }
.u-inline-2 { display: flex; align-items: center; gap: 20px; }
.u-inline-3 { background-color: #E8DDD0; }
.u-inline-4 { font-size: 1rem; letter-spacing: 2px; font-weight: 700; }
.u-inline-5 { font-size: 1rem; letter-spacing: 2px; font-weight: 700; }
.u-inline-6 { font-size: 1rem; letter-spacing: 2px; font-weight: 700; }
.u-inline-7 { margin-bottom: 1.5rem; color: #fff; }
.u-inline-8 { color: #fff; }
.u-inline-9 { color: #bcccdc; }
.u-inline-10 { color: #bcccdc; }
.u-inline-11 { color: #bcccdc; }
.u-inline-12 { color: #bcccdc; }
.u-inline-13 { color: #bcccdc; }
.u-inline-14 { color: #bcccdc; }
.u-inline-15 { color: #bcccdc; }
.u-inline-16 { margin-right: 8px; }
.u-inline-17 { color: #bcccdc; }
.u-inline-18 { margin-right: 8px; }
.u-inline-19 { color: #bcccdc; }
.u-inline-20 { margin-right: 8px; }
.u-inline-21 { color: #bcccdc; margin-bottom: 1rem; }
.u-inline-22 { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; margin-top: 2rem; color: #888; }
