/* =============================================
   UMAIMON — Global Styles (matching mockup)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;600&family=Courier+Prime:ital@0;1&display=swap');

:root {
  --cream:       #f2ede6;
  --cream-dark:  #e8e0d5;
  --hero-dark:   #2a2520;
  --accent:      #b09a72;
  --accent-text: #6b5c3a; /* darkened accent for AA contrast on light backgrounds */
  --sand:        #c4b49e;
  --footer-bg:   #3a3835;
  --text:        #2c2825;
  --text-light:  #5a5550;
  --white:       #ffffff;
  --nav-height:  160px;

  --font-head:  'Josefin Sans', 'Gill Sans', sans-serif;
  --font-body:  'Courier Prime', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  height: var(--nav-height);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 3rem;
}

.nav-left {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-right {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--accent-text);
}

.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-instagram:hover { color: var(--accent-text); }

.nav-instagram svg {
  width: 17px;
  height: 17px;
  display: block;
}

.nav-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.25rem;
}

.nav-logo-icon {
  max-height: 130px;
  width: auto;
}

.nav-logo-text {
  display: none;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

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

.nav-mobile a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}


/* =============================================
   HERO — 3-column grid
   ============================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  height: calc(100vh - var(--nav-height));
  min-height: 550px;
  max-height: 780px;
}

.hero-col-img {
  overflow: hidden;
}

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

.hero-col-img-stack {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
}

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

.hero-center {
  background-color: var(--hero-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2.5rem;
  gap: 0;
  position: relative;
}

.hero-center-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-center-kana {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
}

.hero-center-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 2rem;
}

.hero-center-tagline {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-center-address {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.hero-center-phone {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
}

.hero-center-link {
  font-family: var(--font-head);
  font-size: 0.92rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.hero-center-link:hover {
  color: var(--white);
  border-color: var(--white);
}

.hero-order-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 1.25rem;
}

.hero-order-toggle {
  background: var(--accent-text);
  color: var(--white) !important;
  border: 1px solid var(--accent-text) !important;
  cursor: pointer;
  padding: 0.65rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-order-toggle:hover {
  background: transparent;
  color: var(--accent-text) !important;
}

.hero-order-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.hero-order-btns.open {
  max-height: 100px;
  opacity: 1;
  margin-top: 1rem;
}

.hero-order-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-order-btn svg,
.hero-order-btn .order-logo { flex-shrink: 0; }

.hero-order-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.hero-order-btn.ubereats { background: #06C167; color: #000; }
.hero-order-btn.doordash { background: #C82300; color: #fff; }


/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-tan {
  background: var(--accent);
  color: var(--white);
}

.btn-tan:hover { background: #9a8460; }

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

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

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

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


/* =============================================
   SECTION HELPERS
   ============================================= */

.section { padding: 5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.15;
}

.section-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 58ch;
  margin: 0 auto;
}

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


/* =============================================
   HOME — ABOUT SECTION
   ============================================= */

.about-section {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
}

.about-section .section-title { margin: 0.5rem auto 2rem; }

.about-section .section-body { margin-bottom: 2.5rem; }

/* ── Order Online Section ─────────────────────── */
.order-online-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--hero-dark);
}

.order-online-section .section-label { color: var(--sand); }
.order-online-section .section-title { color: var(--white); }

.order-platforms {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.order-platform-btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.order-platform-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.order-platform-btn.ubereats { background: #06C167; color: #000; }
.order-platform-btn.doordash { background: #C82300; color: #fff; }
.order-platform-btn.grubhub  { background: #F63440; color: #fff; }

/* ── Floating Order Button ────────────────────── */
.order-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.order-float-btn {
  background: var(--hero-dark);
  color: var(--white);
  border: 1px solid var(--accent);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.order-float-btn:hover { background: var(--accent); }

.order-float-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.order-float-menu.open {
  max-height: 200px;
  opacity: 1;
}

.order-float-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  border-radius: 3px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.order-float-link svg { flex-shrink: 0; }

.order-logo {
  height: 18px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 2px;
}

.order-float-link:hover { opacity: 0.85; }
.order-float-link.ubereats { background: #06C167; color: #000; }
.order-float-link.doordash { background: #C82300; color: #fff; }
.order-float-link.grubhub  { background: #F63440; color: #fff; }


/* =============================================
   HOME — DISH CARDS (3-col menu preview)
   ============================================= */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.dish-card {
  position: relative;
  overflow: hidden;
}

/* Middle card is taller */
.dish-card:nth-child(2) { aspect-ratio: 3/4; }
.dish-card:nth-child(1),
.dish-card:nth-child(3) { aspect-ratio: 4/3.5; }

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dish-card-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.dish-section-btn {
  text-align: center;
  padding: 2.5rem 0 4rem;
}

.dish-section-header {
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  background: var(--cream);
}


/* =============================================
   HOME — SIGNATURE DISHES (carousel)
   ============================================= */

.signature-section {
  background: var(--sand);
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}

.signature-section .section-title {
  margin-bottom: 1.5rem;
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slides {
  display: contents;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 0;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.carousel-slide-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 1rem;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2.6rem;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.carousel-btn:hover { opacity: 0.5; }
.carousel-btn-prev { left: -50px; }
.carousel-btn-next { right: -50px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-dot.active { background: var(--text); }


/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  height: 38vh;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.page-hero-content {
  position: relative;
  padding: 0 3rem;
  color: var(--white);
}

.page-hero-content .section-label { color: rgba(255,255,255,0.6); }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}


/* =============================================
   ABOUT PAGE
   ============================================= */

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }

.about-text .section-title { text-align: left; }
.about-text .section-body { text-align: left; margin: 0; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
  text-align: center;
}

.about-value-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 100;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.about-value h3 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-value p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.hours-table tr { border-bottom: 1px solid rgba(0,0,0,0.1); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td { padding: 0.85rem 0; font-size: 0.9rem; }
.hours-table td:first-child { font-weight: 700; width: 55%; }
.hours-table td:last-child { color: var(--text-light); }


/* =============================================
   MENU PAGE
   ============================================= */

.menu-tabs {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}

.menu-tab:hover { color: var(--text); }
.menu-tab.active { color: var(--text); border-bottom-color: var(--accent); }

.menu-panel { display: none; padding-top: 3rem; }
.menu-panel.active { display: block; }

/* Hide dividers when only one panel is visible */
.menu-section-divider { display: none; }
.menu-panel.active ~ .menu-section-divider,
.menu-section-divider:has(+ .menu-panel.active) { display: none; }

/* Show dividers only in All view (multiple panels active) */
.menu-panel.active + .menu-section-divider + .menu-panel.active ~ * .menu-section-divider,
body:has(.menu-panel.active + .menu-section-divider + .menu-panel.active) .menu-section-divider { display: block; }

.menu-section-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-section-banner-overlay .menu-section-title {
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: #fff;
  margin: 0;
  padding: 0;
  border: none;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 2rem;
}

.menu-item:nth-child(odd) { padding-right: 3rem; }
.menu-item:nth-child(even) { padding-left: 3rem; border-left: 1px solid rgba(0,0,0,0.08); }

.menu-item-info h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.menu-item-info p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 30ch;
}

.menu-item-price {
  font-family: var(--font-body);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--text-light);
}

.menu-feature-img {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.all-view .menu-feature-img {
  display: none;
}

.menu-section-divider {
  display: none;
}

.menu-section-banner {
  display: none;
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-radius: 4px;
}

.menu-section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-section-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* All view — show banners, hide plain titles */
.all-view .menu-section-banner { display: block; }
.all-view .menu-section-title-plain { display: none; }

/* Individual view — hide banners, show plain titles */
.menu-section-title-plain {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-feature-img figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.menu-feature-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.menu-feature-img figcaption {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 0 0;
}

.menu-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}


/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: 0.45rem 1.1rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(0,0,0,0.2);
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s ease;
}

.gallery-filter-btn:hover { border-color: var(--text); color: var(--text); }
.gallery-filter-btn.active { background: var(--text); color: var(--white); border-color: var(--text); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.gallery-item {
  margin-bottom: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.2); }

.gallery-item-overlay span {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0.5rem;
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  transition: background 0.2s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }


/* =============================================
   CONTACT PAGE
   ============================================= */

/* ── Contact page — dark/light split layout ─────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Left dark panel */
.contact-split-dark {
  background: var(--hero-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.contact-split-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-split-heading {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.contact-split-sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-style: italic;
}
.contact-split-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 0.5rem;
}
.contact-split-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}
.contact-split-item-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-split-item-value {
  display: inline;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.2;
}
.contact-split-item-value:hover { color: var(--accent); }

/* Right cream panel */
.contact-split-light {
  background: var(--cream-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}
.contact-split-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-split-info-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-text);
}
.contact-split-info-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }

.contact-info-block h3 {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.6rem;
}

.contact-info-block p,
.contact-info-block a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  display: block;
}

.contact-info-block a:hover { color: var(--text); }
.contact-info-block a.social-btn { display: inline-flex; }

.contact-hours-table {
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
}
.contact-hours-table td { padding: 0; }
.contact-hours-table td:first-child { padding-right: 2rem; white-space: nowrap; }

/* Social button on contact page */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s ease;
  line-height: 1;
}

.social-btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: block;
}

.social-btn:hover {
  color: var(--accent-text);
  transform: translateY(-2px);
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-text);
  outline: 2px solid var(--accent-text);
  outline-offset: 2px;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(176,154,114,0.15);
  border: 1px solid var(--accent);
  font-size: 0.875rem;
  font-family: var(--font-body);
}

.map-wrap {
  margin-top: 5rem;
  height: 380px;
  overflow: hidden;
}

.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }


/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 4rem 3rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-left { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-explore-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.5rem;
}

.footer-left a {
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  display: block;
}

.footer-left a:hover { opacity: 1; }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-center-name {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-center-addr,
.footer-center-phone {
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer-logo-icon {
  width: 80px;
  height: auto;
  opacity: 0.6;
  margin: 0.75rem auto 0;
}

.footer-right { display: flex; flex-direction: column; gap: 0; align-items: flex-end; padding-right: 2rem; }

.footer-hours-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.75rem;
  width: 15.5rem;
  text-align: center;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: 7rem 8rem;
  gap: 0.5rem;
  padding: 0.3rem 0;
}

.footer-hours-row span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  opacity: 0.6;
  text-align: center;
}

.footer-hours-row span:last-child { text-align: left; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  opacity: 0.3;
}

/* Privacy Policy page */
.privacy-block {
  margin-bottom: 3rem;
}

.privacy-block h2 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.privacy-block p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.privacy-block ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-block ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
}

.privacy-block a {
  color: var(--text);
  transition: color 0.2s ease;
}

.privacy-block a:hover {
  color: var(--accent-text);
}


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1.2fr; }
  .hero-col-img-stack { display: none; }

  .footer-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .footer-right { align-items: flex-start; }
  .footer-hours-row span:last-child { text-align: left; }

  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-dark,
  .contact-split-light { padding: 3.5rem 2rem; }
  .contact-split-heading { font-size: 2.2rem; }
  .carousel-btn-prev { left: -10px; }
  .carousel-btn-next { right: -10px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }

  .nav-left, .nav-right { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; height: auto; max-height: none; }
  .hero-col-img { height: 50vw; }
  .hero-col-img-stack { display: none; }
  .hero-center { padding: 3rem 2rem; }

  .section { padding: 3.5rem 1.25rem; }

  .dish-grid { grid-template-columns: 1fr; }
  .dish-card:nth-child(1),
  .dish-card:nth-child(2),
  .dish-card:nth-child(3) { aspect-ratio: 4/3; }

  .about-values { grid-template-columns: 1fr; gap: 2rem; }

  .menu-items { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .menu-item:nth-child(odd) { padding-right: 0; }
  .menu-feature-img { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 3rem 1.5rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-right { align-items: flex-start; }

  .page-hero-content { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-logo-icon { width: 44px; }
  .carousel-btn-prev { left: 0; }
  .carousel-btn-next { right: 0; }
}


/* =============================================
   ACCESSIBILITY — WCAG 2.1 AA
   ============================================= */

/* Screen-reader-only utility (visually hidden but available to AT) */
.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;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  background: var(--hero-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: top 0.1s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Global focus-visible styles — all interactive elements */
:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

/* Buttons: carousel, filter, lightbox, menu tabs, hamburger, nav dots */
.carousel-btn:focus-visible,
.carousel-dot:focus-visible,
.gallery-filter-btn:focus-visible,
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible,
.menu-tab:focus-visible,
.nav-hamburger:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

/* Buttons on dark backgrounds — use white outline */
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Carousel buttons on sand background */
.carousel-btn:focus-visible {
  outline: 2px solid var(--hero-dark);
  outline-offset: 3px;
}

/* Nav links */
.nav-left a:focus-visible,
.nav-right a:focus-visible,
.nav-mobile a:focus-visible,
.nav-logo-center:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

/* Footer links */
.footer-left a:focus-visible,
.footer-social a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Buttons (btn class) */
.btn:focus-visible {
  outline: 2px solid var(--hero-dark);
  outline-offset: 3px;
}

/* Hero link on dark panel */
.hero-center-link:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Gallery items (keyboard activatable) */
.gallery-item:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
}

/* Remove default outline only where we've defined focus-visible above */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
