.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ========================================
       AURÈLE LUXURY RESTAURANT - DESIGN SYSTEM
       ======================================== */
    
    :root {
      /* Luxury Dark Theme Colors */
      --background: #0a0a0a;
      --background-secondary: #0f0f0f;
      --foreground: #f5f3ef;
      --foreground-muted: #999999;
      
      /* Gold Primary */
      --gold: #c9a962;
      --gold-light: #d4b978;
      --gold-dark: #a88a4a;
      
      /* Charcoal */
      --charcoal: #141414;
      --charcoal-light: #1f1f1f;
      
      /* Border */
      --border: #2a2a2a;
      
      /* Gradients */
      --gradient-gold: linear-gradient(135deg, #c9a962 0%, #d4b978 50%, #c9a962 100%);
      --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
      
      /* Shadows */
      --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.15);
      --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 500;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    ::selection {
      background: rgba(201, 169, 98, 0.3);
      color: var(--foreground);
    }

    /* ========================================
       UTILITY CLASSES
       ======================================== */

    .luxury-text-gradient {
      background: var(--gradient-gold);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .luxury-divider {
      width: 80px;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    }

    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: var(--foreground);
      margin-bottom: 1.5rem;
    }

    .section-title .italic {
      font-style: italic;
      color: var(--gold);
    }

    /* ========================================
       BUTTONS
       ======================================== */

    .btn-luxury {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--background);
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-luxury::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }

    .btn-luxury:hover {
      box-shadow: var(--shadow-gold);
      transform: translateY(-2px);
    }

    .btn-luxury:hover::before {
      left: 100%;
    }

    .btn-luxury-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 2.5rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: transparent;
      color: var(--foreground);
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .btn-luxury-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ========================================
       NAVBAR
       ======================================== */

    .navbar-luxury {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.5rem 0;
      transition: all 0.5s ease;
    }

    .navbar-luxury.scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      letter-spacing: 0.05em;
      color: var(--foreground);
    }

    .nav-link-luxury {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      padding: 0.5rem 1.25rem;
      position: relative;
    }

    .nav-link-luxury::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .nav-link-luxury:hover {
      color: var(--gold);
    }

    .nav-link-luxury:hover::after {
      width: 100%;
    }

    .navbar-toggler-luxury {
      border: none;
      background: none;
      color: var(--foreground);
      font-size: 1.5rem;
      padding: 0.5rem;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .mobile-menu.active {
      opacity: 1;
      visibility: visible;
    }

    .mobile-menu-nav {
      text-align: center;
    }

    .mobile-menu-link {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--foreground);
      padding: 1rem;
      transition: color 0.3s ease;
    }

    .mobile-menu-link:hover {
      color: var(--gold);
    }

    /* ========================================
       HERO SECTION
       ======================================== */

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?q=80&w=2070') center/cover no-repeat;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,1) 100%);
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(201, 169, 98, 0.3);
      border-radius: 50%;
      animation: float-particle 15s infinite;
    }

    @keyframes float-particle {
      0%, 100% { opacity: 0; transform: translateY(100vh); }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { opacity: 0; transform: translateY(-100px); }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 0 1.5rem;
    }

    .hero-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.2s forwards;
    }

    .hero-title {
      font-size: clamp(2.5rem, 8vw, 6rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 1s ease 0.4s forwards;
    }

    .hero-title .italic {
      font-style: italic;
    }

    .hero-description {
      font-family: 'Inter', sans-serif;
      font-size: 1.125rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.8;
      opacity: 0;
      animation: fadeUp 1s ease 0.6s forwards;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s ease 0.8s forwards;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      cursor: pointer;
      opacity: 0;
      animation: fadeUp 1s ease 1.5s forwards;
    }

    .scroll-indicator span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.5rem;
    }

    .scroll-indicator i {
      color: var(--gold);
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========================================
       EXPERIENCE SECTION
       ======================================== */

    .experience {
      padding: 8rem 0;
      background: var(--background);
    }

    .experience-image {
      position: relative;
    }

    .experience-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }

    .experience-image::after {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 200px;
      height: 200px;
      border: 1px solid rgba(201, 169, 98, 0.3);
      z-index: -1;
    }

    .experience-content {
      padding-left: 3rem;
    }

    .experience-text {
      font-size: 1.125rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .stats-row {
      display: flex;
      gap: 3rem;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* ========================================
       MENU SECTION
       ======================================== */

    .menu-section {
      padding: 8rem 0;
      background: var(--background-secondary);
    }

    .menu-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .menu-card {
      display: flex;
      background: var(--charcoal);
      border: 1px solid var(--border);
      margin-bottom: 1.5rem;
      overflow: hidden;
      transition: all 0.5s ease;
    }

    .menu-card:hover {
      border-color: rgba(201, 169, 98, 0.3);
    }

    .menu-card-image {
      width: 180px;
      height: 180px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .menu-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .menu-card:hover .menu-card-image img {
      transform: scale(1.1);
    }

    .menu-card-content {
      padding: 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1;
    }

    .menu-card-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.75rem;
    }

    .menu-card-title {
      font-size: 1.375rem;
      transition: color 0.3s ease;
    }

    .menu-card:hover .menu-card-title {
      color: var(--gold);
    }

    .menu-card-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.125rem;
      color: var(--gold);
    }

    .menu-card-description {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    .menu-card-line {
      width: 0;
      height: 1px;
      background: var(--gold);
      margin-top: 1rem;
      transition: width 0.5s ease;
    }

    .menu-card:hover .menu-card-line {
      width: 50px;
    }

    /* ========================================
       CHEF SECTION
       ======================================== */

    .chef-section {
      padding: 8rem 0;
      background: var(--background);
      position: relative;
      overflow: hidden;
    }

    .chef-section::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: linear-gradient(to left, rgba(201, 169, 98, 0.03), transparent);
      pointer-events: none;
    }

    .chef-image {
      position: relative;
    }

    .chef-image img {
      width: 100%;
      height: 600px;
      object-fit: cover;
    }

    .chef-image::before {
      content: '';
      position: absolute;
      top: -1.5rem;
      left: -1.5rem;
      width: 120px;
      height: 120px;
      border-top: 1px solid rgba(201, 169, 98, 0.4);
      border-left: 1px solid rgba(201, 169, 98, 0.4);
    }

    .chef-image::after {
      content: '';
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 120px;
      height: 120px;
      border-bottom: 1px solid rgba(201, 169, 98, 0.4);
      border-right: 1px solid rgba(201, 169, 98, 0.4);
    }

    .chef-content {
      padding-right: 3rem;
    }

    .chef-quote {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-style: italic;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .chef-bio {
      font-size: 1rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .chef-accolades {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
    }

    .accolade {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 1rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
    }

    .accolade i {
      color: var(--gold);
    }

    .accolade span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.8);
    }

    /* ========================================
       GALLERY SECTION
       ======================================== */

    .gallery-section {
      padding: 8rem 0;
      background: var(--background-secondary);
    }

    .gallery-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 250px);
      gap: 1rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .gallery-item:first-child,
    .gallery-item:last-child {
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,10,10,0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.5s ease;
    }

    .gallery-item:hover .gallery-overlay {
      background: rgba(10,10,10,0.3);
    }

    .gallery-icon {
      width: 50px;
      height: 50px;
      border: 1px solid var(--foreground);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.5s ease;
    }

    .gallery-item:hover .gallery-icon {
      opacity: 1;
      transform: scale(1);
    }

    .gallery-icon span {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(20px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .lightbox-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      color: var(--foreground);
      font-size: 2rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }

    .lightbox-close:hover {
      color: var(--gold);
    }

    .lightbox img {
      max-width: 90%;
      max-height: 85vh;
      object-fit: contain;
    }

    /* ========================================
       RESERVATION SECTION
       ======================================== */

    .reservation-section {
      padding: 8rem 0;
      background: var(--background);
      position: relative;
    }

    .reservation-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 2px 2px, rgba(201, 169, 98, 0.1) 1px, transparent 0);
      background-size: 40px 40px;
      opacity: 0.3;
      pointer-events: none;
    }

    .reservation-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .reservation-description {
      color: rgba(255,255,255,0.7);
      max-width: 500px;
      margin: 0 auto;
    }

    .reservation-form {
      max-width: 800px;
      margin: 0 auto;
      background: var(--charcoal);
      border: 1px solid var(--border);
      padding: 3rem;
    }

    .form-label {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.75rem;
    }

    .form-input {
      width: 100%;
      background: transparent;
      border: 1px solid var(--border);
      padding: 1rem 1rem 1rem 3rem;
      color: var(--foreground);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-input::placeholder {
      color: rgba(255,255,255,0.3);
    }

    .form-input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-input-wrapper {
      position: relative;
      margin-bottom: 1.5rem;
    }

    .form-input-wrapper i {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255,255,255,0.4);
      transition: color 0.3s ease;
    }

    .form-input-wrapper:focus-within i {
      color: var(--gold);
    }

    .form-select {
      width: 100%;
      background: transparent;
      border: 1px solid var(--border);
      padding: 1rem 1rem 1rem 3rem;
      color: var(--foreground);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      cursor: pointer;
      appearance: none;
      transition: border-color 0.3s ease;
    }

    .form-select:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-select option {
      background: var(--charcoal);
    }

    .form-submit {
      width: 100%;
      margin-top: 1.5rem;
    }

    .reservation-contact {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
    }

    .reservation-contact a {
      color: var(--gold);
    }

    .reservation-contact a:hover {
      text-decoration: underline;
    }

    /* ========================================
       FOOTER
       ======================================== */

    .footer {
      background: var(--charcoal);
      border-top: 1px solid var(--border);
      padding: 5rem 0 3rem;
    }

    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .footer-description {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      max-width: 280px;
      line-height: 1.7;
    }

    .footer-title {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .footer-link {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: var(--gold);
    }

    .footer-contact p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.5rem;
    }

    .footer-contact a {
      color: rgba(255,255,255,0.6);
    }

    .footer-contact a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      margin-top: 4rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border);
      color: rgba(255,255,255,0.6);
      transition: all 0.3s ease;
    }

    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-copyright {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
    }

    .footer-hours {
      text-align: right;
    }

    .footer-hours p {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
    }

    /* ========================================
       ANIMATIONS
       ======================================== */

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.8s ease;
    }

    .fade-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .fade-right {
      opacity: 0;
      transform: translateX(50px);
      transition: all 0.8s ease;
    }

    .fade-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* ========================================
       RESPONSIVE
       ======================================== */

    @media (max-width: 991px) {
      .experience-content {
        padding-left: 0;
        margin-top: 3rem;
      }

      .chef-content {
        padding-right: 0;
        margin-bottom: 3rem;
      }

      .stats-row {
        justify-content: center;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
      }

      .gallery-item:first-child {
        grid-row: span 1;
      }

      .gallery-item:last-child {
        grid-row: span 1;
      }
    }

    @media (max-width: 767px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .btn-luxury,
      .btn-luxury-outline {
        width: 100%;
        max-width: 280px;
      }

      .stats-row {
        flex-direction: column;
        gap: 2rem;
      }

      .menu-card {
        flex-direction: column;
      }

      .menu-card-image {
        width: 100%;
        height: 200px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }

      .gallery-item,
      .gallery-item:first-child,
      .gallery-item:last-child {
        grid-row: span 1;
        height: 250px;
      }

      .chef-accolades {
        flex-direction: column;
      }

      .reservation-form {
        padding: 2rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-hours {
        text-align: center;
      }
    }
  </style>

<style>
	@font-face {
		font-family: 'CameraPlainVariable';
		src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
		font-weight: 100 900;
		font-style: normal;
		font-display: swap;
	}

	#lovable-badge {
		--badge-bg: #1b1b1b;
		--badge-text: #c5c1b9;
		--badge-text-hover: #dcdad5;
		--badge-radius: 6px;
		--badge-padding: 8px;
		--badge-gap: 6px;
		--badge-shadow: 
			0 0 0 1px rgba(0, 0, 0, 0.88),
			0 1px 0 0 rgba(0, 0, 0, 0.04),
			0 2px 2px -1px rgba(0, 0, 0, 0.08),
			0 4px 4px -2px rgba(0, 0, 0, 0.08),
			0 8px 8px -4px rgba(0, 0, 0, 0.08),
			0 16px 16px -8px rgba(0, 0, 0, 0.08);
		--badge-transition-duration: 0.2s;
		--badge-transition-easing: cubic-bezier(0.16, 1, 0.32, 1);
		--focus-color: #575ECF;
		--focus-offset: 2px;
		--focus-width: 2px;
		
		position: fixed;
		bottom: 12px;
		right: 12px;
		height: 24px;
		display: flex;
		align-items: center;
		z-index: 1000000;
		background-color: var(--badge-bg);
		color: var(--badge-text);
		border-radius: var(--badge-radius);
		box-shadow: var(--badge-shadow);
		font-size: 12px;
		font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 400 !important;
		text-transform: none !important;
		font-feature-settings: normal !important;
		transform: translateZ(0);
		will-change: transform, opacity;
	}

	#lovable-badge-cta {
		display: flex;
		align-items: center;
		gap: var(--badge-gap);
		padding: 0 var(--badge-padding);
		height: 100%;
		color: inherit;
		text-decoration: none;
		white-space: nowrap;
		border-radius: var(--badge-radius) 0 0 var(--badge-radius);
		transition: 
			background-color var(--badge-transition-duration) ease,
			color var(--badge-transition-duration) ease,
			transform 0.1s ease;
	}

	#lovable-badge-cta:hover {
		background: rgba(255, 255, 255, 0.04);
		color: var(--badge-text-hover);
	}

	#lovable-badge-cta:active {
		transform: scale(0.98);
	}

	#lovable-badge-cta:focus {
		outline: none;
	}

	#lovable-badge-cta:focus-visible {
		outline: var(--focus-width) solid var(--focus-color);
		outline-offset: var(--focus-offset);
		z-index: 1;
	}

	#lovable-badge-text {
		line-height: 1;
	}

	#lovable-badge-divider {
		width: 1px;
		height: 24px;
		background-color: rgba(255, 255, 255, 0.04);
		flex-shrink: 0;
	}

	#lovable-badge-close {
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 0 var(--badge-radius) var(--badge-radius) 0;
		flex-shrink: 0;
		transition: 
			background-color var(--badge-transition-duration) ease,
			transform 0.1s ease;
	}

	#lovable-badge-close:hover {
		background: rgba(255, 255, 255, 0.04);
	}

	#lovable-badge-close:active {
		transform: scale(0.92);
	}

	#lovable-badge-close:focus {
		outline: none;
	}

	#lovable-badge-close:focus-visible {
		outline: var(--focus-width) solid var(--focus-color);
		outline-offset: calc(var(--focus-offset) * -1);
		z-index: 1;
	}

	#lovable-badge-close svg path {
		fill: var(--badge-text);
		transition: fill var(--badge-transition-duration) ease;
	}

	#lovable-badge-close:hover svg path {
		fill: var(--badge-text-hover);
	}

	@media (prefers-reduced-motion: reduce) {
		#lovable-badge-cta,
		#lovable-badge-close,
		#lovable-badge-close svg path {
			transition: none;
		}
		
		#lovable-badge-cta:active,
		#lovable-badge-close:active {
			transform: none;
		}
	}

	@media (prefers-contrast: high) {
		#lovable-badge {
			--badge-bg: #000;
			--badge-text: #fff;
			--badge-text-hover: #fff;
			border: 2px solid currentColor;
		}
		
		#lovable-badge-cta:focus-visible,
		#lovable-badge-close:focus-visible {
			outline-width: 3px;
		}
	}/* End custom CSS */