:root {
      --cream: #f8f8f8;
      --cream-dark: #e8e8e8;
      --terracotta: #008080;
      --terracotta-dark: #006666;
      --sage: #6b8f71;
      --sage-light: #8fb896;
      --wood: #4a3728;
      --charcoal: #2a2a2a;
      --text-dark: #1f1f1f;
      --text-body: #4a4a4a;
      --text-muted: #777;
      --gold: #ffd700;
      --border: rgba(0,0,0,0.08);
      --transition: all 0.35s ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Open Sans', sans-serif;
      background-color: var(--cream);
      color: var(--text-body);
      line-height: 1.7;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Raleway', sans-serif;
      font-weight: 500;
      color: var(--text-dark);
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 60px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      transition: var(--transition);
    }

    .navbar.scrolled {
      background: var(--cream);
      box-shadow: 0 1px 0 var(--border);
    }

    .logo {
      font-family: 'Raleway', sans-serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--wood);
      text-decoration: none;
      letter-spacing: 0.5px;
    }

    .logo span {
      display: block;
      font-family: 'Open Sans', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      color: var(--text-dark);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }

    .nav-links a:hover {
      color: var(--terracotta);
    }

    .nav-cta {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 12px 24px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-primary {
      background: var(--terracotta);
      color: white;
    }

    .btn-primary:hover {
      background: var(--terracotta-dark);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-dark);
      border: 1px solid var(--text-dark);
    }

    .btn-outline:hover {
      background: var(--text-dark);
      color: white;
    }

    .btn-light {
      background: white;
      color: var(--text-dark);
    }

    .btn-light:hover {
      background: var(--cream);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .hero-alisa {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/output/MahiMahiThaiGreenCurry_beach.png');
    }

    .hero-content {
      padding: 0 40px;
      background: transparent;
      max-width: 800px;
    }

    .hero-location {
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 30px;
    }

    .hero-title {
      font-size: 64px;
      line-height: 1.15;
      color: white;
      margin-bottom: 30px;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-description {
      font-size: 18px;
      color: white;
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    .hero-cta {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-bottom: 0;
    }
    
    .hero-meta-value {
      font-family: 'Raleway', sans-serif;
      font-size: 18px;
      color: var(--text-dark);
    }

    .hero-image {
      position: relative;
      overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Intro Section */
    .intro {
      padding: 120px 80px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .intro-text {
      font-family: 'Raleway', sans-serif;
      font-size: 28px;
      line-height: 1.6;
      color: var(--text-dark);
      font-weight: 400;
    }

    .intro-text em {
      font-style: italic;
      color: var(--terracotta);
    }

    /* Chef Section */
    .chef-section {
      padding: 120px 60px;
      background: var(--cream);
    }
    .chef-content {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }
    .chef-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
    .chef-story h2 {
      margin-bottom: 20px;
    }

    /* Concepts */
    .concepts {
      padding: 0 60px 120px;
    }

    .concepts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .concept-card {
      background: white;
      transition: var(--transition);
    }

    .concept-card:hover {
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    }

    .concept-image {
      height: 280px;
      overflow: hidden;
    }

    .concept-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .concept-card:hover .concept-image img {
      transform: scale(1.05);
    }

    .concept-content {
      padding: 35px 30px;
    }

    .concept-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 12px;
    }

    .concept-title {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .concept-text {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Menu Section */
    .menu-section {
      padding: 120px 60px;
      background: var(--cream-dark);
    }

    .section-header {
      max-width: 600px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .section-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--terracotta);
      margin-bottom: 15px;
      display: block;
    }

    .section-title {
      font-size: 38px;
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .menu-item {
      background: white;
      transition: var(--transition);
    }

    .menu-item:hover {
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .menu-item-image {
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .menu-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .menu-item:hover .menu-item-image img {
      transform: scale(1.05);
    }

    .menu-item-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--sage);
      color: white;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 5px 12px;
      text-transform: uppercase;
    }

    .menu-item-content {
      padding: 25px;
    }

    .menu-item-title {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .menu-item-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .menu-item-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .menu-item-price {
      font-size: 16px;
      font-weight: 600;
      color: var(--terracotta);
    }

    .menu-item-tags {
      display: flex;
      gap: 6px;
    }

    .tag {
      font-size: 10px;
      padding: 3px 8px;
      background: var(--cream);
      color: var(--text-muted);
    }

    .menu-cta {
      text-align: center;
      margin-top: 50px;
    }

    /* Gallery Section */
    .gallery-section {
      padding: 120px 60px;
      background: var(--cream);
    }
    .gallery-grid {
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3;
      -webkit-column-width: 33%;
      -moz-column-width: 33%;
      column-width: 33%;
      padding: 0 12px;
    }
    .gallery-grid .gallery-item {
      -webkit-transition: all 350ms ease;
      transition: all 350ms ease;
      cursor: pointer;
      margin-bottom: 12px;
    }
    .gallery-grid .gallery-item:hover {
      filter: opacity(.8);
    }
    @media (max-width: 991px) {
      .gallery-grid {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
      }
    }
    @media (max-width: 480px) {
      .gallery-grid {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-width: 100%;
        -moz-column-width: 100%;
        column-width: 100%;
      }
    }



    /* Farm Section */
    .farm {
      padding: 120px 60px;
      background: var(--sage);
      color: white;
    }

    .farm-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .farm-title {
      font-size: 38px;
      color: white;
      margin-bottom: 25px;
    }

    .farm-text {
      font-size: 17px;
      line-height: 1.8;
      opacity: 0.9;
      margin-bottom: 50px;
    }

    .farm-features {
      display: flex;
      justify-content: center;
      gap: 80px;
    }

    .farm-feature {
      text-align: center;
    }

    .farm-feature-title {
      font-family: 'Raleway', sans-serif;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .farm-feature-text {
      font-size: 13px;
      opacity: 0.8;
    }

    /* Info Section */
    .info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: white;
    }

    .info-hours {
      padding: 100px 80px;
      border-right: 1px solid var(--border);
    }

    .info-contact {
      padding: 100px 80px;
    }

    .info-title {
      font-size: 28px;
      margin-bottom: 40px;
    }

    .hours-table {
      margin-bottom: 40px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
    }

    .hours-day {
      color: var(--text-dark);
      font-weight: 500;
    }

    .hours-time {
      color: var(--text-muted);
    }

    .hours-note {
      font-size: 13px;
      color: var(--terracotta);
      font-style: italic;
    }

    .contact-list {
      list-style: none;
    }

    .contact-list li {
      margin-bottom: 20px;
    }

    .contact-label {
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 5px;
    }

    .contact-value {
      font-size: 17px;
      color: var(--text-dark);
    }

    .contact-value a {
      color: var(--terracotta);
      text-decoration: none;
    }

    .contact-value a:hover {
      text-decoration: underline;
    }

    .directions-btn {
      margin-top: 30px;
    }

    /* Sister Restaurant */
    .sister {
      padding: 100px 60px;
      background: var(--cream-dark);
    }

    .sister-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .sister-label {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 15px;
    }

    .sister-title {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .sister-location {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 25px;
    }

    .sister-text {
      font-size: 16px;
      color: var(--text-body);
      margin-bottom: 35px;
      line-height: 1.7;
    }

    .sister-cta {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    /* Contact Section */
    .contact-section {
      padding: 120px 60px;
      background: var(--cream-dark);
    }
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-form .form-group {
      display: flex;
      gap: 20px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid var(--border);
      background: white;
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
    }
    .contact-form textarea {
      resize: vertical;
      min-height: 150px;
    }
    .contact-form button {
      align-self: flex-start;
    }

    /* Footer */
    .footer {
      background: var(--charcoal);
      color: white;
      padding: 80px 60px 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      margin: 20px 0 30px;
      max-width: 280px;
    }

    .footer-logo {
      font-family: 'Raleway', sans-serif;
      font-size: 24px;
    }

    .footer-social {
      display: flex;
      gap: 15px;
    }

    .footer-social a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
    }

    .footer-social a:hover {
      color: white;
    }

    .footer-col h4 {
      font-family: 'Raleway', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: white;
      margin-bottom: 25px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 12px;
    }

    .footer-col a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
    }

    .footer-col a:hover {
      color: var(--terracotta);
    }

    .footer-col address {
      font-style: normal;
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .footer-bottom {
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }

    .footer-bottom a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
    }

    /* Floating CTA */
    .floating-cta {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
    }

    .floating-btn {
      display: block;
      padding: 16px 28px;
      background: var(--terracotta);
      color: white;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 8px 30px rgba(184, 90, 59, 0.4);
      transition: var(--transition);
    }

    .floating-btn:hover {
      background: var(--terracotta-dark);
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .menu-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 992px) {
      .navbar {
        padding: 0 30px;
      }
      .nav-links {
        display: none;
      }
      .hero {
        grid-template-columns: 1fr;
      }
      .hero-content {
        padding: 120px 40px 60px;
      }
      .hero-image {
        height: 50vh;
      }
      .hero-title {
        font-size: 40px;
      }
      .intro {
        padding: 80px 40px;
      }
      .intro-text {
        font-size: 22px;
      }
      .concepts-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
      }
      .hibachi,
      .info {
        grid-template-columns: 1fr;
      }
      .hibachi-content,
      .info-hours,
      .info-contact {
        padding: 60px 40px;
      }
      .info-hours {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .hero-meta {
        flex-direction: column;
        gap: 25px;
      }
      .hero-cta {
        flex-direction: column;
      }
      .menu-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
      .farm-features {
        flex-direction: column;
        gap: 30px;
      }
      .sister-cta {
        flex-direction: column;
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      z-index: 1001;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }
    #lightbox-img {
      max-width: 90%;
      max-height: 80%;
    }
    #lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: white;
      cursor: pointer;
    }