/* ==========================================================================
   Design Tokens & Theme Variables (HSL System)
   ========================================================================== */

:root {
  /* Typography */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  
  /* Dimensions & Spacing */
  --shell-max: 1180px;
  --shell-pad: 2rem;
  --shell: min(100% - var(--shell-pad), var(--shell-max));
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-theme: 0.5s ease;
}

/* Light Theme Variables */
:root,
[data-theme='light'] {
  --h-bg: 40;
  --s-bg: 33%;
  --l-bg: 97%;
  --bg: radial-gradient(circle at 80% 20%, hsl(40, 33%, 99%) 0%, hsl(40, 25%, 93%) 100%);
  --bg-solid: hsl(var(--h-bg), var(--s-bg), var(--l-bg));
  
  --h-surface: 42;
  --s-surface: 60%;
  --l-surface: 98%;
  --surface: hsl(var(--h-surface), var(--s-surface), var(--l-surface));
  --surface-2: hsl(40, 26%, 89%);
  --surface-card: hsl(var(--h-surface), var(--s-surface), var(--l-surface));
  
  --h-ink: 173;
  --s-ink: 50%;
  --l-ink: 16%;
  --ink: hsl(var(--h-ink), var(--s-ink), var(--l-ink));
  --muted: hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.7);
  --muted-light: hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.08);
  
  --h-accent: 9;
  --s-accent: 78%;
  --l-accent: 58%;
  --accent: hsl(var(--h-accent), var(--s-accent), var(--l-accent));
  --accent-hover: hsl(var(--h-accent), var(--s-accent), 50%);
  --accent-soft: hsla(var(--h-accent), var(--s-accent), var(--l-accent), 0.12);
  
  --h-accent-2: 175;
  --s-accent-2: 77%;
  --l-accent-2: 26%;
  --accent-2: hsl(var(--h-accent-2), var(--s-accent-2), var(--l-accent-2));
  --accent-2-hover: hsl(var(--h-accent-2), var(--s-accent-2), 18%);
  --accent-2-soft: hsla(var(--h-accent-2), var(--s-accent-2), var(--l-accent-2), 0.1);
  
  --sage: hsl(116, 17%, 82%);
  --cream: hsl(40, 100%, 94%);
  --sand: hsl(38, 56%, 77%);
  
  --line: 1px solid hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.08);
  --line-strong: 1px solid hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.16);
  --shadow: 0 10px 40px -10px hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.08),
            0 20px 80px -20px hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.06);
  --shadow-hover: 0 20px 50px -15px hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.15);
  
  --hero-overlay: transparent;
  --hero-overlay-mobile: transparent;
}

/* Dark Theme Variables */
[data-theme='dark'] {
  --h-bg: 175;
  --s-bg: 38%;
  --l-bg: 6%;
  --bg: radial-gradient(circle at 80% 20%, hsl(175, 30%, 12%) 0%, hsl(175, 38%, 4%) 100%);
  --bg-solid: hsl(var(--h-bg), var(--s-bg), var(--l-bg));
  
  --h-surface: 175;
  --s-surface: 30%;
  --l-surface: 10%;
  --surface: hsl(var(--h-surface), var(--s-surface), var(--l-surface));
  --surface-2: hsl(175, 25%, 15%);
  --surface-card: hsl(175, 25%, 11%);
  
  --h-ink: 40;
  --s-ink: 60%;
  --l-ink: 95%;
  --ink: hsl(var(--h-ink), var(--s-ink), var(--l-ink));
  --muted: hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.7);
  --muted-light: hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.08);
  
  --h-accent: 9;
  --s-accent: 85%;
  --l-accent: 64%;
  --accent: hsl(var(--h-accent), var(--s-accent), var(--l-accent));
  --accent-hover: hsl(var(--h-accent), var(--s-accent), 72%);
  --accent-soft: hsla(var(--h-accent), var(--s-accent), var(--l-accent), 0.16);
  
  --h-accent-2: 175;
  --s-accent-2: 60%;
  --l-accent-2: 70%;
  --accent-2: hsl(var(--h-accent-2), var(--s-accent-2), var(--l-accent-2));
  --accent-2-hover: hsl(var(--h-accent-2), var(--s-accent-2), 80%);
  --accent-2-soft: hsla(var(--h-accent-2), var(--s-accent-2), var(--l-accent-2), 0.16);
  
  --sage: hsl(175, 20%, 22%);
  --cream: hsl(175, 25%, 8%);
  --sand: hsl(38, 40%, 45%);
  
  --line: 1px solid hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.08);
  --line-strong: 1px solid hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.15);
  --shadow: 0 15px 50px -15px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 25px 60px -10px rgba(0, 0, 0, 0.7);
  
  --hero-overlay: transparent;
  --hero-overlay-mobile: transparent;
}

/* ==========================================================================
   Base Elements & Global Resets
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-solid);
  background-image: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background var(--transition-theme), color var(--transition-theme);
}

body.no-motion * {
  animation: none !important;
  transition: none !important;
}

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

button,
select,
textarea,
input {
  font: inherit;
  color: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

/* Skip link accessibility */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: top var(--transition-fast) ease;
  box-shadow: var(--shadow);
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: var(--line);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--transition-theme), border var(--transition-theme);
}

.nav-shell {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.brand {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-2);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-theme);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--surface);
  transition: transform var(--transition-fast), border var(--transition-theme);
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.05rem;
}

.primary-nav {
  justify-self: center;
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: center;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Icon & Primary Buttons */
.icon-button,
.reserve-link,
.button {
  min-height: 44px;
  border-radius: var(--radius-full);
  border: var(--line);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.icon-button {
  background: var(--surface-2);
  color: var(--ink);
  border: var(--line);
  padding: 0 1.15rem;
  font-size: 0.85rem;
  gap: 0.5rem;
}

.icon-button:hover {
  background: var(--muted-light);
  border-color: var(--ink);
}

.theme-toggle svg {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.theme-toggle:hover svg {
  transform: rotate(45deg);
}

.reserve-link {
  background: var(--accent-2);
  color: #fff;
  border: none;
  padding: 0 1.4rem;
  font-size: 0.95rem;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--accent-2-soft);
}

.reserve-link:hover {
  background: var(--accent-2-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-2-soft);
}

.reserve-link svg {
  transition: transform var(--transition-fast);
}

.reserve-link:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
}

/* Mobile dropdown navigation drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: var(--shell-pad);
  right: var(--shell-pad);
  z-index: 90;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: var(--surface);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav.is-open {
  display: grid;
  opacity: 1;
  transform: translateY(12px);
  pointer-events: auto;
}

.mobile-nav a {
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.25rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background var(--transition-fast);
}

.mobile-nav a:hover {
  background: var(--surface-2);
}

body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   Hero Section (100x Redesigned Collage Grid)
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 3rem 0 5rem;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badge-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}

.hero-badge-text {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  transition: color var(--transition-theme);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

h1 em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent-2);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.15;
  font-weight: 600;
}

.hero-copy {
  max-width: 32rem;
  margin: 1.6rem 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  padding: 0 1.75rem;
  min-width: 140px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.button-primary {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
  gap: 0.5rem;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-primary svg {
  transition: transform var(--transition-fast);
}

.button-primary:hover svg {
  transform: translateX(4px);
}

.button-soft {
  background: var(--surface-2);
  border-color: transparent;
  color: var(--ink);
}

.button-soft:hover {
  background: var(--muted-light);
  color: var(--ink);
}

.button-outline {
  background: transparent;
  border: var(--line-strong);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--muted-light);
  border-color: var(--ink);
}

.text-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

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

/* Hero features list */
.hero-features-footer {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  border-top: var(--line);
  padding-top: 1.75rem;
  width: 100%;
}

.hero-feat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--accent-2);
  font-weight: 500;
}

.hero-feat-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

/* Collage (Right Column) */
.hero-visual-collage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-right: 2rem;
}

.collage-main-frame {
  position: relative;
  z-index: 2;
  width: 85%;
  aspect-ratio: 4 / 3.8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--surface);
  box-shadow: var(--shadow);
  transition: transform var(--transition-smooth), border var(--transition-theme);
}

.collage-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.collage-side-frame {
  position: absolute;
  bottom: -2.5rem;
  right: -0.5rem;
  z-index: 3;
  width: 44%;
  aspect-ratio: 4 / 3.3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--surface);
  box-shadow: var(--shadow-hover);
  transition: transform var(--transition-smooth), border var(--transition-theme);
}

.collage-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circular gold badge emblem */
.collage-emblem {
  position: absolute;
  top: -1.5rem;
  left: 10%;
  z-index: 4;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--sand);
  color: hsl(173, 50%, 16%);
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(20, 61, 56, 0.25);
  animation: emblem-rotate 25s linear infinite;
}

.emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.emblem-text-top,
.emblem-text-bot {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.emblem-text-mid {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

@keyframes emblem-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Micro interaction collage hover translations */
.hero-visual-collage:hover .collage-main-frame {
  transform: translate(-5px, -5px) scale(1.01);
}

.hero-visual-collage:hover .collage-side-frame {
  transform: translate(5px, 5px) scale(1.02);
}

/* ==========================================================================
   Service Strip (Floating Quick Facts)
   ========================================================================== */

.shell-wrapper {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1px;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--muted-light);
  box-shadow: var(--shadow);
  transition: border var(--transition-theme);
}

.strip-item {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem var(--shell-pad);
  background: var(--surface);
  transition: background var(--transition-theme);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.strip-item span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.strip-item strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.15rem;
}

.strip-cta {
  color: #fff;
  background: var(--accent-2);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 2rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.strip-cta:hover {
  background: var(--accent-2-hover);
}

.strip-cta svg {
  transition: transform var(--transition-fast);
}

.strip-cta:hover svg {
  transform: translateX(3px);
}

/* ==========================================================================
   Story Section
   ========================================================================== */

.story-section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 1.25rem 0;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: var(--line);
  transition: background var(--transition-theme);
}

.stat-card h3 {
  font-size: 1.85rem;
  color: var(--accent-2);
  margin-bottom: 0.25rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.story-image-wrapper {
  position: relative;
}

.story-image-wrapper::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: 2px dashed var(--sand);
  z-index: 1;
}

.story-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

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

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

/* ==========================================================================
   Menu Section
   ========================================================================== */

.menu-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
  transition: background var(--transition-theme);
}

.section-head {
  max-width: 38rem;
  margin: 0 auto 3.5rem;
}

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

.section-head h2 {
  margin: 0.4rem 0 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.menu-card {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--line);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  outline: none;
  transition: transform var(--transition-smooth), 
              box-shadow var(--transition-smooth), 
              border-color var(--transition-smooth),
              background var(--transition-theme);
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.menu-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-hover);
  transform: translateY(-8px);
}

.menu-image-container {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.menu-card:hover .menu-image-container img {
  transform: scale(1.06);
}

.price-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: var(--line);
  transition: all var(--transition-theme);
}

.price-badge.accent {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.menu-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-content h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.menu-card-content p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.select-indicator {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-2);
  transition: color var(--transition-fast);
}

.select-indicator svg {
  transition: transform var(--transition-fast);
}

.menu-card:hover .select-indicator {
  color: var(--accent);
}

.menu-card:hover .select-indicator svg {
  transform: translateX(4px);
}

.menu-card.is-selected .select-indicator {
  color: var(--accent);
}

.menu-card.is-selected .select-indicator span {
  visibility: hidden;
  font-size: 0;
}

.menu-card.is-selected .select-indicator::before {
  content: 'Selected ✓';
  font-weight: 800;
}

.menu-card.is-selected .select-indicator svg {
  display: none;
}

/* Featured (Middle) Card Ribbon Styling */
.featured {
  position: relative;
  transform: translateY(-0.5rem);
}

.featured.is-selected {
  transform: translateY(-1.2rem);
}

.card-ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Visit Section
   ========================================================================== */

.visit-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.visit-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.5rem 0;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.detail-row svg {
  color: var(--accent-2);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.visit-photo-wrapper {
  position: relative;
}

.visit-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  border: 2px dashed var(--sand);
  z-index: 1;
}

.visit-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.visit-photo:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   Order Visual Builder Section
   ========================================================================== */

.order-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--surface-2);
  transition: background var(--transition-theme);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

/* Visualizer Box styling */
.box-visualizer {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  border: var(--line-strong);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visualizer-header {
  padding: 0.9rem 1.25rem;
  background: var(--accent-2);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.visualizer-status {
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visualizer-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.visualizer-line {
  display: flex;
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px dashed var(--muted-light);
  padding-bottom: 0.5rem;
}

.visualizer-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vis-label {
  width: 100px;
  color: var(--muted);
  font-weight: 600;
}

.vis-value {
  color: var(--ink);
  font-weight: 700;
}

/* Order card card structure */
.order-card {
  display: grid;
  gap: 1.4rem;
  border: var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: var(--shadow);
  transition: background var(--transition-theme), border var(--transition-theme);
}

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

.field-label {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Styled Select input */
select {
  width: 100%;
  min-height: 48px;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23143d38' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 1.15rem center;
  background-size: 14px;
  padding: 0 2.5rem 0 1.15rem;
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all var(--transition-fast);
}

[data-theme='dark'] select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff6e8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Styled Textarea */
textarea {
  width: 100%;
  min-height: 96px;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--ink);
  padding: 0.9rem;
  resize: vertical;
  line-height: 1.5;
  transition: all var(--transition-fast);
}

textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea::placeholder {
  color: hsla(var(--h-ink), var(--s-ink), var(--l-ink), 0.45);
}

/* Portion adjustments and presets */
.quantity-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.quantity-controls {
  display: inline-flex;
  overflow: hidden;
  border: var(--line-strong);
  border-radius: var(--radius-full);
  background: var(--surface-2);
  padding: 2px;
}

.qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.qty-btn:hover {
  background: var(--surface);
  color: var(--accent);
}

.quantity-controls input {
  width: 60px;
  border: none;
  background: transparent;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Chrome/Safari spinner removal */
.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.preset-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.preset-row button {
  min-height: 42px;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.preset-row button:hover {
  border-color: var(--ink);
}

.preset-row button.is-active {
  background: var(--accent-2);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 10px var(--accent-2-soft);
}

/* Custom segmented radio controls */
.service-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  background: var(--surface-2);
  padding: 4px;
  border-radius: var(--radius-md);
  border: var(--line);
}

.segmented-chip {
  position: relative;
  cursor: pointer;
  display: block;
}

.segmented-chip input[type='radio'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.segmented-chip .chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: calc(var(--radius-md) - 2px);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--muted);
  background: transparent;
  transition: all var(--transition-fast);
}

.segmented-chip input[type='radio']:checked + .chip-label {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Custom check chips */
.addons-row {
  display: grid;
  gap: 0.65rem;
}

.check-chip {
  border: var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all var(--transition-fast);
}

.check-chip:hover {
  border-color: var(--ink);
}

.check-chip input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom Checkbox Graphic */
.check-box-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--muted);
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  background: var(--surface);
  transition: all var(--transition-fast);
}

.check-chip input[type='checkbox']:checked ~ .check-box-custom {
  background: var(--accent);
  border-color: transparent;
}

.check-box-custom::after {
  content: '';
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-chip input[type='checkbox']:checked ~ .check-box-custom::after {
  display: block;
}

.check-chip input[type='checkbox']:checked ~ .addon-label-text {
  color: var(--ink);
  font-weight: 700;
}

/* Pricing container */
.totals-container {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition-theme);
}

.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.total-row strong {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.total-row.highlight {
  border-top: 1px dashed var(--muted);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  color: var(--ink);
  font-weight: 600;
}

.total-row.highlight strong {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
}

/* Actions */
.form-actions {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 0.6rem;
}

.submit-btn {
  background: var(--accent-2);
  color: #fff;
  border: none;
  gap: 0.5rem;
  box-shadow: 0 4px 15px var(--accent-2-soft);
}

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

.copy-btn {
  background: var(--surface-2);
  color: var(--ink);
  gap: 0.5rem;
}

.map-btn {
  width: 44px;
  padding: 0;
  display: grid;
  place-items: center;
}

.map-btn span {
  display: none;
}

/* ==========================================================================
   Contact / Connect Section
   ========================================================================== */

.contact-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-header-block h2 {
  margin: 0.4rem 0 1rem;
}

.contact-header-block p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

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

.contact-item-card {
  min-height: 90px;
  border: var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem;
  transition: transform var(--transition-smooth), 
              box-shadow var(--transition-smooth), 
              border-color var(--transition-smooth),
              background var(--transition-theme);
}

.contact-item-card:not(.no-hover):hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.2rem;
  line-height: 1.3;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: var(--line);
  padding: 3rem 0;
  background: var(--surface);
  transition: background var(--transition-theme), border var(--transition-theme);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--surface);
  transition: border var(--transition-theme);
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), 
              transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Progressive scroll animations support */
@supports (animation-range: entry 15% cover 30%) and (animation-timeline: view()) {
  @keyframes fade-up-reveal {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .reveal {
    animation: fade-up-reveal linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
    transition: none !important;
  }
}

/* ==========================================================================
   Media Queries & Responsive Rules
   ========================================================================== */

@media (max-width: 980px) {
  .primary-nav,
  .reserve-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 2.5rem 0 4rem;
  }

  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-visual-collage {
    padding-right: 0;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .collage-main-frame {
    width: 88%;
  }

  .collage-side-frame {
    bottom: -1.5rem;
    right: 0;
    width: 44%;
  }

  .collage-emblem {
    left: 2%;
    width: 80px;
    height: 80px;
  }

  .emblem-text-mid {
    font-size: 0.95rem;
  }

  .service-strip {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
    margin-top: 0;
  }

  .shell-wrapper {
    margin-top: 2rem;
  }

  .strip-item {
    min-height: 78px;
    padding: 1rem 1.25rem;
  }

  .strip-cta {
    min-height: 52px;
    padding: 1rem;
  }

  .story-section,
  .visit-section,
  .order-layout,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image-wrapper::before,
  .visit-photo-wrapper::before {
    display: none;
  }

  .story-image,
  .visit-photo {
    aspect-ratio: 16 / 10;
  }

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

  .featured {
    transform: none !important;
  }
  
  .contact-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --shell-pad: 1.25rem;
  }

  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-features-footer {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .hero-feat-item strong {
    font-size: 1.35rem;
  }

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

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

  .map-btn {
    grid-column: span 2;
    width: 100%;
    min-height: 44px;
    gap: 0.5rem;
  }

  .map-btn span {
    display: inline;
  }

  .footer-shell {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }
}
