﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --brown:    #16384d;
      --rust:     #bd4c30;
      --gold:     #ddb05f;
      --cream:    #f6efe4;
      --light:    #edf4f8;
      --white:    #ffffff;
      --text:     #1b2f40;
      --muted:    #567182;
      --sky:      #40b9df;
      --logo-size-max: 112px;
      --logo-size-min: 60px;
      --logo-scale: 1;
      --logo-drop-max: 27px;
      --logo-drop-min: 11px;
      --logo-drop: 27px;
      --logo-shrink-distance: 320px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: var(--text);
      line-height: 1.6;
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--brown);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0.35rem 2rem 0.2rem;
      min-height: 84px;
      overflow: visible;
    }

    .nav-logo {
      position: absolute;
      left: 2.6rem;
      top: 57%;
      transform: translateY(-50%);
      display: inline-flex;
      align-items: flex-start;
      text-decoration: none;
      z-index: 2;
    }

    .nav-logo img {
      display: block;
      height: var(--logo-size-max);
      width: auto;
      transform: translateY(var(--logo-drop)) scale(var(--logo-scale));
      transform-origin: top left;
      will-change: transform;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      margin-left: auto;
    }

    .nav-links a {
      color: var(--cream);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(245, 237, 224, 0.5);
      color: var(--cream);
      width: 42px;
      height: 42px;
      border-radius: 6px;
      cursor: pointer;
      position: relative;
      z-index: 5;
    }

    .nav-toggle .bar {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      margin: 4px auto;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-open .nav-toggle .bar:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .nav-open .nav-toggle .bar:nth-child(2) {
      opacity: 0;
    }

    .nav-open .nav-toggle .bar:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      border-radius: 4px;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
      cursor: pointer;
    }

    .btn:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-gold {
      background: var(--gold);
      color: var(--brown);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.5);
      color: var(--white);
      margin-left: 1rem;
    }

    /* SLIDESHOW */
    .slideshow-hero {
      padding: 0;
      margin: 0;
      background: #12384f;
    }

    .slideshow {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      background: #12384f;
      border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    .slideshow.full-width {
      width: 100%;
    }

    .slideshow-track {
      display: flex;
      transition: transform 0.45s ease;
      will-change: transform;
    }

    .slide {
      min-width: 100%;
      position: relative;
      height: clamp(430px, 74vh, 760px);
      background-size: cover;
      background-position: center;
    }

    .slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(12, 34, 48, 0.84) 0%, rgba(12, 34, 48, 0.45) 54%, rgba(12, 34, 48, 0.24) 100%);
    }

    .slide-content {
      position: absolute;
      z-index: 1;
      top: 50%;
      left: clamp(1rem, 6vw, 6.5rem);
      transform: translateY(-50%);
      max-width: min(760px, 90%);
      color: var(--white);
    }

    .slide-eyebrow {
      display: inline-block;
      margin-bottom: 0.95rem;
      color: rgba(255,255,255,0.85);
      font-size: 0.86rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 700;
    }

    .slide-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.45rem, 9vw, 6.35rem);
      line-height: 0.95;
      letter-spacing: 0.03em;
      margin-bottom: 0.85rem;
      text-transform: uppercase;
    }

    .slide-text {
      font-size: clamp(1rem, 2vw, 1.36rem);
      line-height: 1.45;
      color: rgba(255,255,255,0.88);
      margin-bottom: 1.2rem;
      max-width: 48ch;
    }

    .slide-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.6rem;
    }

    .slide-link {
      display: inline-block;
      text-decoration: none;
      color: var(--brown);
      background: var(--gold);
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.72rem 1.1rem;
    }

    .slide-link:hover {
      opacity: 0.92;
    }

    .slide-link.secondary {
      color: #fff;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.65);
    }

    .slideshow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.55);
      background: rgba(14, 43, 61, 0.55);
      color: var(--white);
      cursor: pointer;
      z-index: 2;
      font-size: 1.3rem;
      line-height: 1;
    }

    .slideshow-btn:hover {
      background: rgba(14, 43, 61, 0.82);
    }

    .slideshow-btn.prev {
      left: 0.85rem;
    }

    .slideshow-btn.next {
      right: 0.85rem;
    }

    .slideshow-dots {
      position: absolute;
      bottom: 0.9rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.45rem;
      z-index: 2;
    }

    .slideshow-dots button {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: none;
      padding: 0;
      margin: 0;
      background: rgba(255,255,255,0.45);
      cursor: pointer;
    }

    .slideshow-dots button.active {
      background: var(--gold);
    }

    .specials-section {
      background: #ecf4f8;
      padding-top: 50px;
      padding-bottom: 52px;
    }

    .specials-panel {
      border-radius: 12px;
      padding: 1.35rem 1.35rem 1.5rem;
      background: var(--brown);
      color: #fff;
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(0,0,0,0.12);
    }

    .specials-panel .section-label {
      color: var(--gold);
    }

    .specials-panel .section-title {
      color: inherit;
      margin-bottom: 0.75rem;
    }

    .specials-panel .section-subtitle {
      color: rgba(255,255,255,0.88);
      margin-bottom: 1.25rem;
    }

    .specials-content {
      line-height: 1.55;
    }

    .specials-content img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0.7rem 0;
    }

    /* SECTIONS */
    section { padding: 80px 2rem; }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--rust);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      letter-spacing: 0.04em;
      line-height: 1;
      margin-bottom: 1rem;
      color: var(--brown);
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 520px;
      margin-bottom: 3rem;
    }

    /* MENU */
    #menu { background: var(--cream); }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .menu-card {
      background: var(--white);
      border-radius: 8px;
      padding: 1.75rem;
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.2s, transform 0.2s;
      position: relative;
    }

    .menu-card:hover {
      box-shadow: 0 8px 32px rgba(59,31,14,0.12);
      transform: translateY(-2px);
    }

    .menu-card.featured::before {
      content: 'Featured';
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: var(--gold);
      color: var(--brown);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
    }

    .menu-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.04em;
      color: var(--brown);
      margin-bottom: 0.5rem;
    }

    .menu-card-desc {
      color: var(--muted);
      font-size: 0.9rem;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .flavor-notes {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.9rem;
    }

    .flavor-pill {
      background: var(--cream);
      color: var(--rust);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      letter-spacing: 0.05em;
    }

    .menu-tags {
      display: flex;
      gap: 0.4rem;
    }

    .menu-tag {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      border: 1px solid currentColor;
      padding: 0.15rem 0.5rem;
      border-radius: 3px;
    }

    /* EVENTS */
    #events { background: #e6f1f7; }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .event-card {
      background: var(--white);
      border-radius: 8px;
      padding: 1.5rem 1.75rem;
      border: 1px solid rgba(0,0,0,0.06);
      display: grid;
      grid-template-columns: 160px 1fr auto;
      align-items: center;
      gap: 1.5rem;
      transition: box-shadow 0.2s;
    }

    .event-card:hover { box-shadow: 0 6px 24px rgba(59,31,14,0.1); }

    .event-date {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.3rem;
      color: var(--rust);
      letter-spacing: 0.05em;
    }

    .event-time {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.1rem;
    }

    .event-location {
      font-weight: 700;
      font-size: 1rem;
      color: var(--brown);
    }

    .event-city {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 0.25rem;
    }

    .event-details {
      font-size: 0.85rem;
      color: var(--muted);
      font-style: italic;
    }

    .event-badge {
      background: var(--brown);
      color: var(--cream);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 4px;
      white-space: nowrap;
    }

    .event-badge.private {
      background: var(--rust);
    }

    /* TESTIMONIALS */
    #testimonials { background: var(--brown); }

    #testimonials .section-title { color: var(--cream); }
    #testimonials .section-label { color: var(--gold); }
    #testimonials .section-subtitle { color: rgba(245,237,224,0.65); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px;
      padding: 2rem;
    }

    .testimonial-quote {
      font-size: 1rem;
      color: var(--cream);
      line-height: 1.65;
      margin-bottom: 1.5rem;
      position: relative;
    }

    .testimonial-quote::before {
      content: '\201C';
      font-family: 'Pacifico', cursive;
      font-size: 3rem;
      color: var(--gold);
      opacity: 0.6;
      line-height: 1;
      display: block;
      margin-bottom: -0.5rem;
    }

    .testimonial-name {
      font-weight: 700;
      color: var(--gold);
      font-size: 0.9rem;
    }

    .testimonial-role {
      color: rgba(245,237,224,0.5);
      font-size: 0.8rem;
      margin-top: 0.15rem;
    }

    /* BOOK US */
    #book {
      background: linear-gradient(135deg, #136e98 0%, #1c4f68 58%, #8f341f 110%);
      text-align: center;
    }

    #book .section-title { color: var(--white); }
    #book .section-label { color: rgba(255,255,255,0.7); }

    .book-inner {
      max-width: 640px;
      margin: 0 auto;
    }

    .book-desc {
      color: rgba(255,255,255,0.85);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    .book-options {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-bottom: 3rem;
    }

    .book-option {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      padding: 1.25rem 1.75rem;
      color: var(--white);
      font-size: 0.9rem;
      text-align: left;
      min-width: 200px;
    }

    .book-option-title {
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .book-option-desc {
      font-size: 0.82rem;
      opacity: 0.75;
    }

    .booking-form {
      margin-top: 1.25rem;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 10px;
      padding: 1.25rem;
      text-align: left;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .booking-field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .booking-field span {
      color: rgba(255,255,255,0.92);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .booking-field input,
    .booking-field textarea {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.95);
      color: var(--text);
      border-radius: 6px;
      padding: 0.65rem 0.75rem;
      font-size: 0.92rem;
      font-family: inherit;
    }

    .booking-field input:focus,
    .booking-field textarea:focus {
      outline: 2px solid rgba(255,255,255,0.5);
      outline-offset: 1px;
    }

    .booking-field-full {
      grid-column: 1 / -1;
    }

    .booking-submit {
      margin-top: 1rem;
      border: none;
    }

    .booking-status {
      min-height: 1.4em;
      margin-top: 0.6rem;
      color: rgba(255,255,255,0.92);
      font-size: 0.88rem;
    }

    .booking-alt {
      margin-top: 0.35rem;
      color: rgba(255,255,255,0.75);
      font-size: 0.82rem;
    }

    .booking-alt a {
      color: var(--cream);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(245,237,224,0.45);
    }

    .booking-alt a:hover {
      color: var(--white);
    }

    /* FOOTER */
    footer {
      background: var(--brown);
      color: rgba(245,237,224,0.6);
      text-align: center;
      padding: 2.5rem 2rem;
      font-size: 0.85rem;
    }

    footer strong {
      color: var(--gold);
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.06em;
    }

    footer a {
      color: var(--gold);
      text-decoration: none;
    }

    footer a:hover { text-decoration: underline; }

    /* RESPONSIVE */
    @media (max-width: 700px) {
      :root {
        --logo-size-max: 74px;
        --logo-size-min: 44px;
        --logo-drop-max: 17px;
        --logo-drop-min: 6px;
        --logo-shrink-distance: 220px;
      }

      nav {
        padding: 0.6rem 1rem 0.25rem;
        min-height: 76px;
      }

      .nav-logo {
        left: 0.6rem;
        top: 58%;
      }

      .nav-toggle { display: inline-block; }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--brown);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(245, 237, 224, 0.18);
        padding: 0.4rem 0;
        z-index: 4;
      }

      .nav-links li {
        border-top: 1px solid rgba(245, 237, 224, 0.1);
      }

      .nav-links li:first-child {
        border-top: none;
      }

      .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
      }

      .nav-open .nav-links { display: flex; }

      .event-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
      }

      .booking-grid {
        grid-template-columns: 1fr;
      }

      .slide {
        height: min(76vh, 560px);
      }

      .slide-content {
        left: 1rem;
      }

      .slide-text {
        font-size: 0.94rem;
      }

      .slide-actions {
        gap: 0.55rem;
      }

      .slide-link {
        font-size: 0.73rem;
        padding: 0.63rem 0.92rem;
      }

      .slideshow-btn {
        width: 34px;
        height: 34px;
      }

      .btn-outline { margin-left: 0; margin-top: 0.75rem; }
    }
