:root {
    color-scheme: only light;
    --cream: #fffbf4;
    --cream2: #fdf3e3;
    --brown: #2c1a0e;
    --brown2: #3d2512;
    --brown3: #5c3d20;
    --amber: #e07b2a;
    --amber2: #f59432;
    --green: #4a7c59;
    --red: #c94040;
    --text: #2c1a0e;
    --muted: #8a6d52;
    --light: #fffbf4;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--light);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 56px;
    transition: background 0.4s, padding 0.4s;
  }

  nav.scrolled {
    background: rgba(44, 26, 14, 0.97);
    padding: 16px 56px;
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(900%) hue-rotate(352deg) brightness(97%);
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--amber2); }

  .nav-reserve {
    background: transparent !important;
    border: 1px solid var(--amber) !important;
    color: var(--amber) !important;
    padding: 8px 20px;
    transition: all 0.2s !important;
  }

  .nav-reserve:hover {
    background: var(--amber) !important;
    color: var(--brown) !important;
  }

  /* HERO */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.8);
    transform: scale(1.05);
    animation: slowZoom 20s ease infinite alternate;
  }

  @keyframes slowZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(20,10,5,0.7) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s 0.3s forwards;
  }

  .hero-ornament::before,
  .hero-ornament::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--amber);
    opacity: 0.6;
  }

  .hero-ornament span {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 700;
  }

  .hero-logo {
    color-scheme: only light;
    display: block;
    width: clamp(280px, 55vw, 680px);
    height: auto;
    margin: 0 auto 40px;
    position: relative;
    right: 5%;
    filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(900%) hue-rotate(352deg) brightness(97%);
    opacity: 0;
    animation: fadeUp 1s 0.5s forwards;
    transition: transform 0.2s, filter 0.3s;
    cursor: pointer;
  }

  .hero-logo:hover {
    color-scheme: only light;
    filter: brightness(0) saturate(100%) invert(57%) sepia(75%) saturate(1100%) hue-rotate(345deg) brightness(107%);
    cursor:auto;
    transform: translateY(-2px);
  }

  .hero-btn {
    display: inline-block;
    background: var(--amber);
    color: var(--brown);
    padding: 16px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
  }

  .hero-btn:hover { background: var(--amber2); transform: translateY(-2px); }

  .hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245,240,232,0.4);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    animation: bounce 2s infinite;
  }

  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(200,131,42,0.4);
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ABOUT */
  .about {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    min-height: 80vh;
  }

  .about-image {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.9);
    transition: transform 0.8s ease;
  }

  .about-image:hover img { transform: scale(1.04); }

  .about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-right: 4px solid var(--amber);
    pointer-events: none;
  }

  .about-content {
    background: var(--brown);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--amber);
  }

  .section-tag span {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 700;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 28px;
  }

  .section-title em { font-style: italic; color: var(--amber2); }

  .about-text {
    font-size: 16px;
    color: rgba(245,240,232,0.65);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 300;
  }

  .about-divider {
    width: 60px;
    height: 1px;
    background: var(--amber);
    opacity: 0.4;
    margin: 28px 0;
  }

  .about-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .about-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(245,240,232,0.55);
    font-size: 14px;
    font-weight: 300;
  }

  .about-detail::before {
    content: '✦';
    color: var(--amber);
    font-size: 8px;
    flex-shrink: 0;
  }

  /* GALLERY */
  .gallery {
    padding: 100px 56px;
    background: var(--cream2);
  }

  .gallery-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .about-content .section-title { color: var(--cream); }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
  }

  .gallery-item {
    overflow: hidden;
    position: relative;
  }

  .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 1; }
  .gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 5; grid-row: span 1; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 0.6s ease, filter 0.4s;
  }

  .gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
  }

  /* HOURS */
  .hours {
    padding: 100px 56px;
    background: var(--brown2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hours-left .section-title { color: var(--cream); }

  .hours-text {
    font-size: 16px;
    color: rgba(245,240,232,0.55);
    line-height: 1.8;
    font-weight: 300;
    margin-top: 20px;
  }

  .hours-table {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,131,42,0.2);
    overflow: hidden;
  }

  .hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
  }

  .hours-row:last-child { border-bottom: none; }
  .hours-row:hover { background: rgba(200,131,42,0.06); }

  .hours-day {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
  }

  .hours-time {
    font-size: 14px;
    color: var(--amber);
    font-weight: 300;
    letter-spacing: 1px;
  }

  .hours-closed { color: rgba(245,240,232,0.25) !important; }

  /* MAP / ADDRESS */
  .address-bar {
    background: var(--amber);
    padding: 28px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .address-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
  }

  .address-icon i { width: 20px; height: 20px; }

  .address-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(44,26,14,0.6);
    font-weight: 700;
    margin-bottom: 2px;
  }

  .address-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
  }

  .reserve-btn {
    background: var(--brown);
    color: var(--cream);
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }

  .reserve-btn:hover { background: var(--brown2); }

  /* CONTACT */
  .contact {
    padding: 100px 56px;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-left .section-title { color: var(--brown); }

  .contact-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 36px;
  }

  .contact-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--amber);
  }

  .step-icon i { width: 20px; height: 20px; }

  .step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
  }

  .contact-card {
    background: white;
    border: 1px solid rgba(44,26,14,0.08);
    border-left: 3px solid var(--amber);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .contact-card:hover {
    box-shadow: 0 4px 20px rgba(44,26,14,0.08);
    transform: translateX(4px);
  }

  .contact-card-icon {
    color: var(--amber);
    flex-shrink: 0;
  }

  .contact-card-icon i { width: 22px; height: 22px; }

  .contact-card-icon--ig { color: #e1306c; }
  .contact-card-icon--fb { color: #1877f2; }

  .contact-card-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
  }

  .contact-card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown);
  }

  .contact-card-value a {
    color: var(--brown);
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-card-value a:hover { color: var(--amber); }

  /* PLAYFUL EXTRAS */
  .squiggle {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 15px;
    color: var(--amber);
    margin-bottom: 6px;
    transform: rotate(-1.5deg);
    display: inline-block;
  }

  .tag-pill {
    display: inline-block;
    background: var(--amber2);
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    transform: rotate(-1deg);
  }

  .tag-pill.green { background: var(--green); }

  .fun-border {
    border: 2px dashed rgba(200,131,42,0.3);
    border-radius: 12px;
    padding: 4px;
  }

  .hours-table {
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(200,131,42,0.25);
    border-radius: 16px;
    overflow: hidden;
  }

  .footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(900%) hue-rotate(352deg) brightness(97%);
  }
  .footer-bg {
    background: var(--brown);
    padding: 40px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(245,240,232,0.3);
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
  }

  /* REVIEWS */
  .reviews {
    padding: 100px 56px;
    background: var(--cream);
  }

  .reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }

  .reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    background: white;
    border: 1px solid rgba(44,26,14,0.1);
    border-radius: 16px;
    padding: 20px 36px;
    box-shadow: 0 2px 16px rgba(44,26,14,0.07);
  }

  .reviews-score {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    color: var(--brown);
    line-height: 1;
  }

  .reviews-summary-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .reviews-summary .reviews-stars {
    font-size: 26px;
    color: #fbbc04;
    letter-spacing: 2px;
  }

  .reviews-count {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.5px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .review-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(44,26,14,0.08);
    box-shadow: 0 2px 12px rgba(44,26,14,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(44,26,14,0.12);
  }

  .review-top {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--brown);
  }

  .review-date {
    font-size: 12px;
    color: var(--muted);
  }

  .review-stars {
    font-size: 17px;
    color: #fbbc04;
    letter-spacing: 1px;
  }

  .review-stars .star-empty {
    color: #dadce0;
  }

  .review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.75;
    font-weight: 300;
  }

  /* ANIMATIONS */
  @keyframes logoRainbow {
    0%   { filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(900%)  hue-rotate(352deg) brightness(97%); }
    14%  { filter: brightness(0) saturate(100%) invert(35%) sepia(90%) saturate(1400%) hue-rotate(300deg) brightness(85%); }
    28%  { filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(1800%) hue-rotate(200deg) brightness(80%); }
    42%  { filter: brightness(0) saturate(100%) invert(65%) sepia(70%) saturate(1000%) hue-rotate(120deg) brightness(100%); }
    56%  { filter: brightness(0) saturate(100%) invert(55%) sepia(60%) saturate(1200%) hue-rotate(60deg)  brightness(105%); }
    68%  { filter: brightness(0) saturate(100%) invert(48%) sepia(75%) saturate(1100%) hue-rotate(15deg)  brightness(100%); }
    78%  { filter: brightness(0) saturate(100%) invert(51%) sepia(65%) saturate(980%)  hue-rotate(5deg)   brightness(99%); }
    88%  { filter: brightness(0) saturate(100%) invert(52%) sepia(58%) saturate(930%)  hue-rotate(354deg) brightness(98%); }
    100% { filter: brightness(0) saturate(100%) invert(52%) sepia(55%) saturate(900%)  hue-rotate(352deg) brightness(97%); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 18px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .nav-links { display: none; }
    .about { grid-template-columns: 1fr; }
    .about-image { height: 300px; }
    .about-content { padding: 48px 28px; }
    .gallery { padding: 60px 20px; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; height: 200px; }
    .hours { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    .address-bar { padding: 24px; flex-direction: column; align-items: flex-start; }
    .contact { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
    footer { padding: 28px 24px; flex-direction: column; text-align: center; }
    .reviews { padding: 60px 20px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-summary { padding: 16px 24px; }
  }
