  :root {
      --cream: #FAF3E0;
      --cream-dark: #F2E4C4;
      --terracotta: #C15A2A;
      --terracotta-light: #D97A4A;
      --terracotta-pale: #F2D5C0;
      --brown: #7A3B1E;
      --brown-light: #A0522D;
      --gold: #D4A843;
      --gold-light: #E8C56A;
      --dark: #2C1A0E;
      --text-body: #4A2E1A;
      --text-muted: #8B6045;
      --white: #FFFDF7;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text-body);
      overflow-x: hidden;
  }

  /* Screen reader only class */
  .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
  }

  /* Grain texture overlay */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.4;
  }

  /* NAV */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(250, 243, 224, 0.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(193, 90, 42, 0.15);
  }

  .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--brown);
      letter-spacing: 0.5px;
  }

  .nav-logo span {
      color: var(--terracotta);
  }

  .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
  }

  .nav-links a {
      text-decoration: none;
      color: var(--text-body);
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: var(--terracotta);
  }

  .nav-cta {
      background: var(--terracotta);
      color: var(--white) !important;
      padding: 9px 22px;
      border-radius: 2px;
      transition: background 0.3s !important;
  }

  .nav-cta:hover {
      background: var(--brown) !important;
      color: var(--white) !important;
  }

  /* HERO */
  .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      padding-top: 60px;
      overflow: hidden;
      margin-bottom: 0px;
      padding-bottom: 0;
  }

  .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 8% 80px 8%;
      position: relative;
      z-index: 2;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--terracotta-pale);
      border: 1px solid rgba(193, 90, 42, 0.3);
      color: var(--terracotta);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 7px 16px;
      border-radius: 2px;
      width: fit-content;
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease both;
  }

  .hero-badge::before {
      content: '🪔';
      font-size: 0.9rem;
  }

  .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 4.5vw, 4rem);
      line-height: 1.15;
      color: var(--gold-light);
      margin-bottom: 20px;
      animation: fadeUp 0.8s 0.15s ease both;
  }

  .hero-title em {
      font-style: italic;
      color: var(--gold);
  }

  .hero-subtitle {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-muted);
      max-width: 440px;
      margin-bottom: 40px;
      font-weight: 300;
      animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.45s ease both;
  }

  .btn-primary {
      background: var(--terracotta);
      color: var(--white);
      padding: 14px 36px;
      border: none;
      border-radius: 2px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(193, 90, 42, 0.3);
  }

  .btn-primary:hover {
      background: var(--brown);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(193, 90, 42, 0.35);
  }

  .btn-secondary {
      background: transparent;
      color: var(--brown);
      padding: 14px 36px;
      border: 1.5px solid var(--brown-light);
      border-radius: 2px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
  }

  .btn-secondary:hover {
      background: var(--cream-dark);
      transform: translateY(-2px);
  }

  .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid rgba(193, 90, 42, 0.15);
      animation: fadeUp 0.8s 0.6s ease both;
  }

  .stat-item {
      text-align: left;
  }

  .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--terracotta);
      line-height: 1;
  }

  .stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 4px;
  }

  .hero-right {
      position: relative;
      overflow: hidden;
      animation: fadeIn 1.2s 0.2s ease both;
  }

  .hero-img-wrap {
      position: absolute;
      inset: 0;
  }

  .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 30%),
          linear-gradient(to top, rgba(44, 26, 14, 0.4) 0%, transparent 60%);
  }

  .hero-floating-card {
      position: absolute;
      bottom: 48px;
      left: -28px;
      background: var(--white);
      border-radius: 4px;
      padding: 18px 22px;
      box-shadow: 0 12px 40px rgba(44, 26, 14, 0.18);
      z-index: 3;
      border-left: 4px solid var(--gold);
      animation: slideRight 0.9s 0.8s ease both;
  }

  .floating-card-text {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 4px;
  }

  .floating-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--gold-light);
      font-weight: 600;
  }

  /* HERO CAROUSEL */
  .hero-carousel {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 100vh;
      max-height: none;
      overflow: hidden;
      padding: 0;
      margin-top: 0;
      margin-bottom: 0;
  }

  section.hero-carousel {
      padding: 0;
      margin: 0;
      width: 100%;
  }

  .carousel-slides {
      display: block;
      position: relative;
      margin-top: 0;
      width: 100%;
      height: 100%;
  }

  .carousel-slide {
      position: absolute;
      margin-top: 0;
      margin-bottom: 0;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease, visibility 1s ease;
      z-index: 1;
  }

  .carousel-slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 2;
  }

  .slide-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      transition: transform 8s ease;
  }

  .carousel-slide.active .slide-bg {
      transform: scale(1.08);
  }

  .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(44,26,14,0.3));
  }

  .slide-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0px 0%;
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  }

  .carousel-slide.active .slide-content {
      opacity: 1;
      transform: translateY(0);
  }

  .hero-carousel .hero-badge {
      background: rgba(193, 90, 42, 0.2);
      border-color: rgba(212, 168, 67, 0.5);
      color: var(--gold);
      margin-bottom: 24px;
      animation: fadeUp 0.8s ease both;
  }

  .hero-carousel .hero-badge::before {
      content: '🪔';
  }

  .hero-carousel .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      color: var(--white);
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
      margin-bottom: 16px;
  }

  .hero-carousel .hero-subtitle {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--white);
      max-width: 600px;
      margin-bottom: 40px;
      font-weight: 300;
  }

  .hero-carousel .hero-buttons {
      justify-content: center;
      animation: fadeUp 0.8s 0.45s ease both;
  }

  .hero-carousel .btn-primary {
      background: var(--terracotta);
      color: var(--white);
      border: none;
      box-shadow: 0 4px 20px rgba(193, 90, 42, 0.4);
  }

  .hero-carousel .btn-primary:hover {
      background: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(212, 168, 67, 0.5);
  }

  .hero-carousel .btn-secondary {
      background: transparent;
      color: var(--cream);
      border: 2px solid var(--cream);
  }

  .hero-carousel .btn-secondary:hover {
      background: var(--cream);
      color: var(--dark);
  }

  /* Carousel Navigation Arrows */
  .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 56px;
      height: 56px;
      border: none;
      background: rgba(250, 243, 224, 0.15);
      backdrop-filter: blur(8px);
      color: var(--cream);
      font-size: 1.4rem;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      border: 1px solid rgba(250, 243, 224, 0.3);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .carousel-arrow:hover {
      background: var(--terracotta);
      border-color: var(--terracotta);
      transform: translateY(-50%) scale(1.1);
  }

  .carousel-arrow-left {
      left: 24px;
  }

  .carousel-arrow-right {
      right: 24px;
  }

  /* Carousel Dots */
  .carousel-dots {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      z-index: 10;
  }

  .carousel-dot {
      width: 12px;
      height: 12px;
      border: none;
      border-radius: 50%;
      background: rgba(250, 243, 224, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 0;
  }

  .carousel-dot:hover {
      background: rgba(250, 243, 224, 0.7);
  }

  .carousel-dot.active {
      background: var(--gold);
      transform: scale(1.3);
      box-shadow: 0 0 12px rgba(212, 168, 67, 0.6);
  }

  /* Responsive */
  @media (max-width: 768px) {
      .hero-carousel {
          min-height: 100vh;
          height: 100vh;
          padding-top: 0;
      }

      .carousel-slide,
      .carousel-slides,
      .slide-bg {
          height: 100%;
      }

      .slide-bg {
          background-position: center top;
          background-size: cover;
      }

      .slide-content {
          padding: 16px;
      }

      .hero-carousel .hero-title {
          font-size: clamp(2rem, 6vw, 3rem);
      }

      .hero-carousel .hero-subtitle {
          font-size: clamp(1rem, 3.5vw, 1.25rem);
      }

      .hero-carousel .hero-floating-card {
          position: absolute;
          top: 15px;
          left: 50%;
          right: auto;
          transform: translateX(-50%);
          width: auto;
          max-width: 90%;
          bottom: auto;
      }

      .carousel-arrow {
          width: 44px;
          height: 44px;
          font-size: 1.1rem;
      }

      .carousel-arrow-left {
          left: 12px;
      }

      .carousel-arrow-right {
          right: 12px;
      }

      .hero-carousel .hero-buttons {
          flex-direction: column;
          align-items: center;
          gap: 12px;
      }

      .hero-carousel .btn-primary,
      .hero-carousel .btn-secondary {
          width: 200px;
          text-align: center;
      }
  }

  @media (max-width: 480px) {
      .carousel-dots {
          bottom: 24px;
      }

      .carousel-dot {
          width: 10px;
          height: 10px;
      }
  }

  /* DIVIDER */
  .divider {
      text-align: center;
      padding: 16px 0;
      font-size: 1.4rem;
      letter-spacing: 12px;
      color: var(--gold);
      opacity: 0.7;
  }

  /* SECTIONS */
  section {
      padding: 90px 5%;
  }

  .section-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--terracotta);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
  }

  .section-label::before,
  .section-label::after {
      content: '';
      height: 1px;
      background: var(--terracotta);
      opacity: 0.4;
  }

  .section-label::before {
      width: 28px;
  }

  .section-label::after {
      width: 28px;
  }

  .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      line-height: 1.25;
      color: var(--dark);
      margin-bottom: 16px;
  }

  .section-desc {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 560px;
      font-weight: 300;
  }

  /* ABOUT */
  .about {
      background: var(--white);
      position: relative;
      overflow: hidden;
  }

  .about::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
      border-radius: 50%;
  }

  .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
  }

  .about-image-stack {
      position: relative;
      height: 480px;
  }

  .about-img-main {
      position: absolute;
      box-shadow: 0 16px 50px rgba(44, 26, 14, 0.18);
  }

  .about-badge {
      position: absolute;
      top: 42%;
      right: -12px;
      background: var(--terracotta);
      color: var(--white);
      padding: 16px 18px;
      border-radius: 4px;
      text-align: center;
      box-shadow: 0 8px 24px rgba(193, 90, 42, 0.4);
      z-index: 4;
  }

  .about-badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
  }

  .about-badge-text {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0.9;
  }

  .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
  }

  .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
      background: var(--cream);
      border-radius: 4px;
      border-left: 3px solid var(--gold);
  }

  .feature-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
  }

  .feature-title {
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--dark);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
  }

  .feature-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
  }

  /* MENU */
  .menu-section {
      background: var(--cream);
      position: relative;
  }

  .menu-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 60px;
  }

  .menu-header .section-label {
      justify-content: center;
  }

  .dishes-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .dish-card {
      background: var(--white);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(44, 26, 14, 0.08);
      transition: all 0.35s ease;
      cursor: pointer;
      position: relative;
  }

  .dish-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(44, 26, 14, 0.15);
  }

  .dish-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }

  .dish-card:hover .dish-img {
      transform: scale(1.06);
  }

  .dish-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--terracotta);
      color: var(--white);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 2px;
  }

  .dish-info {
      padding: 20px 20px 22px;
  }

  .dish-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: 6px;
  }

  .dish-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
  }

  .dish-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .dish-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--terracotta);
      font-weight: 700;
  }

  .dish-rating {
      font-size: 0.78rem;
      color: var(--gold);
  }

  /* ATMOSPHERE */
  .atmosphere {
      background: var(--dark);
      padding: 100px 5%;
      position: relative;
      overflow: hidden;
  }

  .atmosphere::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C15A2A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.4;
  }

  .atmo-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 2;
  }

  .atmo-content .section-label {
      color: var(--gold);
  }

  .atmo-content .section-label::before,
  .atmo-content .section-label::after {
      background: var(--gold);
  }

  .atmo-content .section-title {
      color: var(--cream);
  }

  .atmo-content .section-desc {
      color: rgba(250, 243, 224, 0.65);
      max-width: none;
  }

  .atmo-features {
      margin-top: 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .atmo-feat {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      border: 1px solid rgba(212, 168, 67, 0.2);
      transition: background 0.3s;
  }

  .atmo-feat:hover {
      background: rgba(212, 168, 67, 0.1);
  }

  .atmo-feat-icon {
      font-size: 1.6rem;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: rgba(212, 168, 67, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .atmo-feat-title {
      font-weight: 700;
      color: var(--cream);
      font-size: 0.9rem;
      margin-bottom: 3px;
  }

  .atmo-feat-desc {
      font-size: 0.8rem;
      color: rgba(250, 243, 224, 0.55);
      line-height: 1.5;
  }

  .atmo-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 14px;
      height: 480px;
  }

  .atmo-img {
      border-radius: 4px;
      overflow: hidden;
      position: relative;
  }

  .atmo-img:first-child {
      grid-row: span 2;
  }

  .atmo-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      filter: brightness(0.85) saturate(1.1);
  }

  .atmo-img:hover img {
      transform: scale(1.05);
      filter: brightness(0.95) saturate(1.2);
  }

  /* REVIEWS */
  .reviews {
      background: var(--white);
      text-align: center;
  }

  .reviews-header {
      max-width: 600px;
      margin: 0 auto 60px;
  }

  .reviews-header .section-label {
      justify-content: center;
  }

  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto 50px;
  }

  .review-card {
      background: var(--cream);
      padding: 36px 32px;
      border-radius: 4px;
      text-align: left;
      position: relative;
      transition: box-shadow 0.3s;
      border-bottom: 3px solid var(--terracotta-pale);
  }

  .review-card:hover {
      box-shadow: 0 12px 40px rgba(44, 26, 14, 0.1);
  }

  .review-quote {
      font-size: 3.5rem;
      line-height: 0.6;
      color: var(--terracotta-pale);
      font-family: 'Playfair Display', serif;
      margin-bottom: 16px;
      display: block;
  }

  .review-text {
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--text-body);
      margin-bottom: 24px;
      font-style: italic;
  }

  .reviewer {
      display: flex;
      align-items: center;
      gap: 14px;
  }

  .reviewer-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--terracotta-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
      font-weight: 700;
      color: var(--terracotta);
      font-family: 'Playfair Display', serif;
  }

  .reviewer-name {
      font-weight: 700;
      font-size: 0.88rem;
      color: var(--dark);
      margin-bottom: 3px;
  }

  .reviewer-stars {
      font-size: 0.75rem;
      color: var(--gold);
  }

  .overall-rating {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--terracotta-pale);
      border: 1px solid rgba(193, 90, 42, 0.2);
      padding: 16px 32px;
      border-radius: 4px;
  }

  .rating-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--terracotta);
      font-weight: 700;
      line-height: 1;
  }

  .rating-stars {
      font-size: 1.1rem;
      color: var(--gold);
  }

  .rating-count {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 2px;
  }

  /* CONTACT */
  .contact {
      background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
      position: relative;
  }

  .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
  }

  .contact-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 36px;
  }

  .contact-card {
      background: var(--white);
      padding: 28px 24px;
      border-radius: 4px;
      box-shadow: 0 4px 18px rgba(44, 26, 14, 0.07);
      border-top: 3px solid var(--terracotta);
  }

  .contact-card-icon {
      font-size: 1.6rem;
      margin-bottom: 12px;
  }

  .contact-card-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 8px;
  }

  .contact-card-value {
      font-size: 0.9rem;
      color: var(--dark);
      line-height: 1.7;
      font-weight: 400;
  }

  .contact-card-value strong {
      font-weight: 700;
      display: block;
  }

  .contact-map {
      background: var(--brown-light);
      border-radius: 4px;
      overflow: hidden;
      height: 360px;
      position: relative;
      box-shadow: 0 12px 40px rgba(44, 26, 14, 0.15);
  }

  .map-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #8B6045 0%, #5C3A20 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--cream);
      gap: 12px;
  }

  .map-pin {
      font-size: 3rem;
  }

  .map-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      text-align: center;
      opacity: 0.9;
  }

  .map-sub {
      font-size: 0.8rem;
      opacity: 0.65;
      letter-spacing: 0.5px;
  }

  /* FOOTER */
  footer {
      background: var(--dark);
      padding: 50px 5% 30px;
      text-align: center;
      border-top: 3px solid var(--terracotta);
  }

  .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--cream);
      margin-bottom: 12px;
  }

  .footer-logo span {
      color: var(--terracotta);
  }

  .footer-tagline {
      font-size: 0.8rem;
      color: rgba(250, 243, 224, 0.45);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
  }

  .footer-links {
      display: flex;
      justify-content: center;
      gap: 28px;
      list-style: none;
      margin-bottom: 30px;
  }

  .footer-links a {
      text-decoration: none;
      color: rgba(250, 243, 224, 0.55);
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color 0.3s;
  }

  .footer-links a:hover {
      color: var(--terracotta);
  }

  .footer-copy {
      font-size: 0.75rem;
      color: rgba(250, 243, 224, 0.3);
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
      from {
          opacity: 0;
          transform: translateY(28px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  @keyframes slideRight {
      from {
          opacity: 0;
          transform: translateX(-28px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
          transform: translateY(0);
      }
      40% {
          transform: translateY(-10px);
      }
      60% {
          transform: translateY(-5px);
      }
  }

  /* Scroll reveal */
  .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
      .dishes-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .about-inner,
      .atmo-inner,
      .contact-inner,
      .hero {
          grid-template-columns: 1fr;
      }

      .hero-right {
          height: 55vw;
          min-height: 320px;
          position: relative;
      }

      .hero-floating-card {
          left: 20px;
          bottom: 20px;
      }

      .about-image-stack {
          height: 340px;
      }

      .atmo-gallery {
          height: 320px;
      }
  }

  @media (max-width: 768px) {
      nav .nav-links {
          display: none;
      }

      .dishes-grid {
          grid-template-columns: 1fr;
      }

      .reviews-grid {
          grid-template-columns: 1fr;
      }

      .contact-info-grid {
          grid-template-columns: 1fr;
      }

      .hero-stats {
          gap: 24px;
      }

      .about-features {
          grid-template-columns: 1fr;
      }

      .about-image-stack {
          display: flex;
          flex-direction: column;
          position: static !important;
          height: auto !important;
          gap: 12px;
      }

      .about-image-stack > div:first-child,
      .about-image-stack > div:nth-child(2) {
          position: static !important;
          width: 100% !important;
          margin: 0 !important;
      }

      .about-image-stack > div:nth-child(2) img {
          width: 100%;
          height: auto;
          border-radius: 10px;
      }

      /* Scroll Down Button - Mobile Only */
      .scroll-down-btn {
          display: flex;
      }

      /* Scroll to Top Button - Mobile Only */
      .scroll-to-top-btn {
          display: flex;
      }
  }

  /* Scroll Down Button Styles */
  .scroll-down-btn {
      display: none;
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 50px;
      background: rgba(193, 90, 42, 0.9);
      border: 2px solid var(--gold);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 15;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      animation: bounce 2s infinite;
      box-shadow: 0 4px 20px rgba(193, 90, 42, 0.4);
  }

  .scroll-down-btn:hover {
      background: var(--gold);
      transform: translateX(-50%) scale(1.1);
      box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
  }

  .scroll-down-btn i {
      animation: scrollDownPulse 1.5s ease-in-out infinite;
  }

  @keyframes scrollDownPulse {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(5px);
      }
  }

  /* Scroll to Top Button Styles */
  .scroll-to-top-btn {
      display: none;
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: rgba(193, 90, 42, 0.9);
      border: 2px solid var(--gold);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      z-index: 999;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(193, 90, 42, 0.4);
      opacity: 0;
      visibility: hidden;
  }

  .scroll-to-top-btn.visible {
      opacity: 1;
      visibility: visible;
  }

  .scroll-to-top-btn:hover {
      background: var(--gold);
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(212, 168, 67, 0.5);
  }

  .scroll-to-top-btn i {
      animation: scrollTopPulse 1.5s ease-in-out infinite;
  }

  @keyframes scrollTopPulse {
      0%, 100% {
          transform: translateY(0);
      }
      50% {
          transform: translateY(-5px);
      }
  }