/* GLOBAL / RESET */
:root {
  --color-bg: #f6efe7;
  --color-surface: #fffaf4;
  --color-surface-alt: #efe3d5;
  --color-primary: #603826;
  --color-primary-dark: #45261a;
  --color-accent: #c28a53;
  --color-text: #2f251f;
  --color-text-muted: #6b5f56;
  --color-border: #decebc;

  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;

  --container-width: 1240px;
  --container-width-wide: 1400px;
  --container-gutter: 0.75rem;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --section-space: 4rem;
  --section-space-sm: 3rem;
  --content-gap: 1rem;
  --content-gap-sm: 0.7rem;

  --shadow-soft: 0 10px 24px rgba(61, 39, 24, 0.08);
  --shadow-card: 0 4px 12px rgba(55, 34, 20, 0.06);

  --transition: 0.16s ease;
  --site-header-height: 76px;
  --site-header-alpha: 1;
  --nav-pill-width: 112px;
  --nav-pill-height: 38px;
  --hero-section-height: calc(92svh - var(--site-header-height));
  --hero-overlay-darkness: 0.35;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1200;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 140ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

main {
  padding-top: var(--site-header-height);
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

/* LAYOUT / CONTAINERS */
.container {
  width: min(100% - (var(--container-gutter) * 2), var(--container-width));
  margin-inline: auto;
}

.menu-filter-section .container,
.menu-section .container,
.menu-note-section .container {
  width: min(100% - (var(--container-gutter) * 2), var(--container-width-wide));
}

.section {
  padding: var(--section-space) 0;
}

.alt-background {
  background: linear-gradient(180deg, var(--color-surface-alt), #f5ebdf);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.95rem;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

.section-intro {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  max-width: 48rem;
}

.section-intro-compact {
  margin-bottom: 0;
}

.section-eyebrow,
.card-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-lead {
  color: var(--color-text-muted);
  max-width: 62ch;
  font-size: 1rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

/* MICRO ANIMATION: Card hover lift
Adds a subtle elevation effect when users hover card surfaces.
Designed to feel premium and responsive without changing layout behavior.
*/
.card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  box-shadow: var(--shadow-soft);
}

/* MICRO ANIMATION: Card image zoom
Gives media inside cards a gentle scale on hover for a polished interaction.
Overflow is clipped by card containers so scaled images stay visually clean.
*/
.card img,
.related-product-card img {
  transition: none;
}

.card-content {
  padding: 1.3rem;
  display: grid;
  gap: var(--content-gap-sm);
}

.price {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 2.5rem;
}

.split-layout > div {
  display: grid;
  gap: var(--content-gap);
}

/* HEADER / NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--site-header-height);
  min-height: var(--site-header-height);
  max-height: var(--site-header-height);
  background-color: rgba(246, 239, 231, var(--site-header-alpha));
  border-bottom: 1px solid rgba(69, 38, 26, 0.08);
  backdrop-filter: blur(8px);
  transition: background-color 160ms ease-out;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 100%;
  min-height: var(--site-header-height);
  max-height: var(--site-header-height);
}

.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  max-width: min(300px, 46vw);
}

.logo-image {
  display: block;
  width: auto;
  max-height: 68px;
  height: auto;
  border-radius: 0;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.site-nav {
  flex-shrink: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.35rem;
}

.site-nav li {
  flex: 0 0 auto;
}

.site-nav a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 86px;
  max-width: none;
  height: var(--nav-pill-height);
  min-height: var(--nav-pill-height);
  max-height: var(--nav-pill-height);
  line-height: 1;
  font-size: 0.92rem;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(69, 38, 26, 0.08);
  background-color: rgba(255, 250, 244, 0.88);
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.theme-toggle-btn {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 96px;
  max-width: none;
  height: var(--nav-pill-height);
  min-height: var(--nav-pill-height);
  max-height: var(--nav-pill-height);
  line-height: 1;
  font-size: 0.92rem;
  border: 1px solid var(--color-primary-dark);
  background-color: var(--color-primary-dark);
  color: #fff;
  border-radius: 999px;
  padding: 0 1rem;
  font-weight: 600;
  font: inherit;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.theme-toggle-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary-dark);
  margin: 5px 0;
  border-radius: 999px;
}

/* HERO SECTIONS */
.hero {
  position: relative;
  overflow: hidden;
  min-height: var(--hero-section-height);
  display: grid;
  align-items: center;
  background-color: #3c2a21;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 22, 15, var(--hero-overlay-darkness));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  width: 0.72rem;
  height: 3.1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.22) 0%, rgba(255, 248, 241, 0.82) 18%, rgba(255, 248, 241, 0.82) 82%, rgba(255, 248, 241, 0.22) 100%) center top / 0.08rem calc(100% - 0.62rem) no-repeat,
    linear-gradient(45deg, transparent 42%, rgba(255, 248, 241, 0.92) 43% 57%, transparent 58%) calc(50% - 0.12rem) calc(100% - 0.2rem) / 0.34rem 0.34rem no-repeat,
    linear-gradient(-45deg, transparent 42%, rgba(255, 248, 241, 0.92) 43% 57%, transparent 58%) calc(50% + 0.12rem) calc(100% - 0.2rem) / 0.34rem 0.34rem no-repeat;
  transform: translateX(-50%);
  opacity: 1;
  z-index: 3;
  pointer-events: none;
}

.hero::before,
.hero::after {
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero-small {
  min-height: var(--hero-section-height);
}

.hero-small .hero-video {
  object-position: center top;
}

.hero-home {
  min-height: var(--hero-section-height);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

.hero-home .hero-content {
  transform: translateY(0);
}

.hero-text {
  max-width: 640px;
  display: grid;
  gap: 1rem;
}

.hero-home .hero-text {
  gap: 0.85rem;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.75rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 246, 238, 0.82);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 0;
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 0;
}

.hero-home .hero-text > p:not(.hero-eyebrow) {
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.5;
  color: rgba(255, 248, 241, 0.88);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.1rem;
}

.hero-highlights li {
  border-radius: 999px;
  border: 1px solid rgba(255, 246, 238, 0.2);
  background-color: rgba(255, 246, 238, 0.08);
  color: #fff8f1;
  padding: 0.44rem 0.72rem;
  font-size: 0.84rem;
}

.hero-aside-card {
  padding: 1.35rem;
  background: rgba(30, 20, 15, 0.56);
  border: 1px solid rgba(255, 246, 238, 0.16);
  color: #fff8f1;
  display: grid;
  gap: 0.85rem;
  box-shadow: 0 10px 24px rgba(8, 5, 4, 0.16);
}

.hero-aside-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
}

.hero-aside-card p,
.hero-aside-card li {
  color: rgba(255, 248, 241, 0.88);
}

.hero-aside-card > p:not(.card-eyebrow) {
  font-size: 1rem;
  line-height: 1.55;
}

.hero-aside-card .card-eyebrow {
  color: rgba(255, 248, 241, 0.68);
}

.hero-aside-meta {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 246, 238, 0.14);
}

.hero-aside-meta div {
  display: grid;
  gap: 0.2rem;
}

.hero-aside-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 241, 0.62);
}

.hero-aside-card .btn-ghost {
  border-color: rgba(255, 248, 241, 0.26);
  color: #fff;
  background-color: rgba(255, 248, 241, 0.06);
}

.hero-aside-card .btn-ghost:hover {
  background-color: rgba(255, 248, 241, 0.12);
  border-color: rgba(255, 248, 241, 0.4);
}

/* HOME PAGE: STICKY VIDEO + SCROLLING OVERLAY SECTIONS */
.video-scroll-stage {
  /*
    How long the video stays visible before the first section starts covering it.
    Increase this value to keep the hero visible for a longer scroll distance.
  */
  --video-scroll-intro-space: var(--hero-section-height);

  /*
    Optional dark layer above the video for text readability.
    0 = no darkening, 1 = fully black overlay.
  */
  --hero-overlay-darkness: 0.45;

  /* Background used by sections that pass over the video (fully opaque). */
  --video-section-bg: var(--color-bg);

  position: relative;
  isolation: isolate;
}

.video-scroll-stage .hero-video {
  object-position: center top;
}

.video-sticky-layer {
  /*
    This creates the fixed/sticky feel:
    the layer pins below the sticky header while we scroll through this stage.
  */
  position: sticky;
  top: var(--site-header-height);
  height: var(--hero-section-height);
  overflow: hidden;
  z-index: 1;
}

.video-scroll-stage .hero-home {
  min-height: 100%;
}

.video-scroll-stage .hero-content {
  padding: 3rem 0;
}

.video-scroll-stage .hero-home .hero-content {
  transform: translateY(0);
}

.video-scroll-stage .hero-text {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
  transition: none;
}

.video-overlay-flow {
  /*
    Pull overlay sections upward so they pass over the sticky video.
    The negative margin places this layer on top of the sticky viewport area.
  */
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--hero-section-height));
  padding-top: var(--video-scroll-intro-space);
  /*
    Important:
    this wrapper has top padding used only for spacing, so it should not block
    interactions with the hero (buttons/links) underneath it.
  */
  pointer-events: none;
}

.section-over-video {
  position: relative;
  z-index: 2;
  background-color: var(--video-section-bg);
  /* Re-enable interactions for actual scrolling sections. */
  pointer-events: auto;
}

.video-overlay-flow .section-over-video + .section-over-video {
  border-top: 1px solid rgba(47, 37, 31, 0.08);
}

/* BUTTONS */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  letter-spacing: 0.01em;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.btn:hover {
  transform: none;
  box-shadow: none;
}

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

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

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.location-preview .btn-secondary,
.cta-section .btn-secondary {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
}

.location-preview .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background-color: rgba(107, 62, 38, 0.06);
  border-color: var(--color-primary);
}

.btn-ghost {
  background-color: transparent;
  border-color: var(--color-border);
  color: var(--color-primary-dark);
}

.btn-ghost:hover {
  background-color: var(--color-surface-alt);
  border-color: var(--color-primary);
}

/* FEATURED DRINKS SECTION */
.featured-drinks .drink-card h3,
.highlights .small-card h3,
.about-values .small-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.35rem;
}

.card-meta-note {
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 1.3rem;
  display: grid;
  gap: 0.55rem;
}

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

.offer-card {
  padding: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

body.js-scroll-reveal .scroll-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}

body.js-scroll-reveal .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.js-scroll-reveal .scroll-reveal,
  body.js-scroll-reveal .scroll-reveal.revealed {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.small-card {
  padding: 1.35rem;
  display: grid;
  gap: 0.65rem;
}

/* MENU PAGE */
.menu-filter-section {
  position: sticky;
  top: var(--site-header-height);
  z-index: 4;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background-color: var(--video-section-bg);
  box-shadow: none;
  border-bottom: 1px solid rgba(47, 37, 31, 0.08);
}

.menu-filter-section .section-intro {
  margin-bottom: 0.9rem;
}

/* MENU FILTER BAR
   Provides compact category controls for filtering menu items.
   Styled with existing theme tokens so it matches both light and dark modes. */
.menu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* MENU FILTER BUTTONS
   Active and hover states are intentionally subtle for a premium, calm feel. */
.menu-filter-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background-color: var(--color-surface);
  color: var(--color-primary-dark);
  font: inherit;
  font-weight: 600;
  line-height: 1;
  padding: 0.7rem 1.15rem;
  min-height: 42px;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.menu-filter-btn:hover {
  background-color: var(--color-surface-alt);
  border-color: var(--color-primary);
}

.menu-filter-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Active filter state
   This class is applied by JS to make the current category obvious. */
.menu-filter-btn.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.menu-section {
  position: relative;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  overflow: visible;
}

.menu-filter-section + .menu-section {
  padding-top: 1rem;
  margin-top: 0;
}

.menu-section-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: 1.5rem;
  align-items: start;
}

.menu-section-aside {
  display: grid;
  gap: 1rem;
}

.menu-section-intro {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0;
  max-width: 32rem;
}

.menu-section-panel {
  padding: 1.35rem;
  display: grid;
  gap: 0.8rem;
}

.menu-section-panel h3 {
  color: var(--color-primary-dark);
}

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

/* MICRO ANIMATION: Menu card hover lift
Improves menu card feedback with a subtle vertical lift and softer shadow.
Motion remains lightweight to keep interactions smooth on all pages.
*/
.menu-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.82rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  gap: 0.82rem;
  overflow: hidden;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.menu-item:hover {
  box-shadow: var(--shadow-soft);
}

.menu-item-media {
  width: 100%;
  margin: 0;
  border-radius: calc(var(--radius-sm) - 0.2rem);
  overflow: hidden;
  border: 1px solid rgba(69, 38, 26, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(240, 228, 215, 0.92));
}

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

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
  width: 100%;
}

.menu-item-top > div {
  display: grid;
  gap: 0.2rem;
}

.menu-item-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.menu-item-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.menu-item-badge {
  border-radius: 999px;
  border: 1px solid rgba(96, 56, 38, 0.12);
  background-color: rgba(194, 138, 83, 0.12);
  color: var(--color-primary-dark);
  padding: 0.18rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.menu-item h3 {
  margin-bottom: 0.1rem;
  color: var(--color-primary-dark);
}

.menu-item p {
  color: var(--color-text-muted);
}

.menu-item-description {
  font-size: 0.97rem;
  line-height: 1.6;
}

.menu-item-detail-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.menu-item-detail {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(69, 38, 26, 0.08);
  display: grid;
  gap: 0.15rem;
}

.menu-item-detail span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.menu-item-detail p {
  color: var(--color-primary-dark);
  font-size: 0.91rem;
  line-height: 1.45;
}

.menu-item-top .price {
  margin-top: 0;
  padding-top: 0;
  align-self: flex-start;
}

.menu-item-note {
  color: var(--color-primary-dark);
  font-size: 0.93rem;
}

.menu-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.menu-item-meta span {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-alt);
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.24rem 0.6rem;
}

.menu-item .price {
  margin-top: 0;
  padding-top: 0;
  align-self: flex-start;
  transition: color 140ms ease;
}

.menu-item:hover .price {
  color: var(--color-primary);
}

.menu-item-btn {
  margin-top: auto;
  padding: 0.42rem 0.78rem;
  font-size: 0.86rem;
  font-weight: 600;
}


.menu-note {
  background-color: #fff7ee;
  border: 1px solid #e5d3bf;
  color: var(--color-primary-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

/* ABOUT PAGE */
.about-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 260px);
  align-items: start;
  gap: 1.75rem;
}

.about-story-copy {
  display: grid;
  gap: 0.85rem;
}

.about-story-decor-wrap {
  justify-self: end;
  width: min(100%, 240px);
}

.about-story-decor-image {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-story p,
.about-space p {
  max-width: 78ch;
  color: var(--color-text-muted);
}

.about-signature {
  color: var(--color-primary-dark);
  font-weight: 600;
  max-width: 42ch;
}

.about-preview .btn {
  margin-top: 0.5rem;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.detail-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-row .section-title {
  margin-bottom: 0;
}

/* CONTACT PAGE */
.info-card {
  padding: 1.45rem;
  display: grid;
  gap: 0.65rem;
}

.info-card strong {
  color: var(--color-primary-dark);
}

.contact-info-grid {
  gap: 1rem;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-form-copy {
  display: grid;
  gap: 0.9rem;
}

.contact-note-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.contact-form {
  width: 100%;
  max-width: none;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  color: var(--color-text);
  font: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid #d3a87f;
  border-color: #d3a87f;
}

.form-actions {
  display: grid;
  gap: 0.7rem;
}

.form-support-note {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  max-width: 42ch;
}

.error-message {
  min-height: 1.1rem;
  margin-top: 0.25rem;
  color: #b43d2a;
  font-size: 0.92rem;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
}

.form-status.success {
  color: #2f7c46;
}

.form-status.error {
  color: #b43d2a;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #33211a, #251712);
  color: #f4ece4;
  margin-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 2.6rem 0 1.5rem;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.7rem;
  font-family: var(--font-heading);
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-brand p {
  max-width: 34ch;
}

.footer-overline {
  color: rgba(244, 236, 228, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  max-width: 14ch;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.footer-badges span {
  border-radius: 999px;
  border: 1px solid rgba(244, 236, 228, 0.12);
  background-color: rgba(244, 236, 228, 0.06);
  color: #f7efe7;
  padding: 0.32rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.site-footer a {
  color: #f4ece4;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: #f1c48f;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-note {
  color: rgba(244, 236, 228, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-socials {
  color: rgba(244, 236, 228, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 236, 228, 0.2);
  text-align: center;
  padding: 0.9rem 0;
  font-size: 0.93rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  :root {
    --hero-section-height: calc(92svh - var(--site-header-height));
    --container-gutter: 0.75rem;
  }

  .card-grid-3,
  .card-grid-2,
  .footer-grid,
  .split-layout,
  .hero-home-grid,
  .home-trust-grid,
  .home-offer-grid,
  .menu-section-shell,
  .contact-info-grid,
  .contact-form-layout,
  .form-grid-two,
  .product-hero-grid,
  .product-details-grid,
  .product-story-grid {
    grid-template-columns: 1fr;
  }

  .product-quick-meta {
    grid-template-columns: 1fr;
  }

  .video-scroll-stage {
    --video-scroll-intro-space: var(--hero-section-height);
  }

  .video-scroll-stage .hero-content {
    padding: 3.1rem 0;
  }

  .site-nav {
    position: absolute;
    top: var(--site-header-height);
    left: 0;
    right: 0;
    background-color: #fffdf9;
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease, transform 140ms ease;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a,
  .theme-toggle-btn {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

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

  .hero-aside-card {
    max-width: 34rem;
  }

  body.dark-mode .site-nav {
    background-color: #111;
    border-bottom: 1px solid #2b2b2b;
  }

  body.dark-mode .site-nav a {
    background-color: #111;
    color: #fff;
    border-color: #111;
  }

  body.dark-mode .site-nav a:hover,
  body.dark-mode .site-nav a.active {
    background-color: #fff;
    color: #111;
  }

  body.dark-mode .site-nav .theme-toggle-btn {
    background-color: #fff;
    color: #111;
    border-color: #fff;
  }

  body.dark-mode .site-nav .theme-toggle-btn:hover {
    background-color: #111;
    color: #fff;
  }

}

@media (max-width: 640px) {
  :root {
    --hero-section-height: calc(92svh - var(--site-header-height));
    --container-gutter: 0.625rem;
  }

  .hero-aside-card {
    display: none;
  }

  .section {
    padding: var(--section-space-sm) 0;
  }

  .video-scroll-stage {
    --video-scroll-intro-space: var(--hero-section-height);
  }

  .video-scroll-stage .hero-content {
    padding: 2.6rem 0;
  }

  .menu-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .logo {
    gap: 0.45rem;
  }

  .logo-wordmark {
    font-size: 0.98rem;
  }

  /* Mobile filter layout
     Allows filter buttons to wrap into touch-friendly rows. */
  .menu-filter-bar {
    gap: 0.5rem;
  }

  .menu-filter-btn {
    flex: 1 1 calc(50% - 0.5rem);
    justify-content: center;
    min-width: 128px;
  }

  .menu-item {
    min-height: 0;
    padding: 0.9rem;
  }

  .menu-item-media img {
    aspect-ratio: 16 / 11;
  }

  .menu-item h3 {
    font-size: 0.98rem;
  }

  .menu-item p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card-content,
  .info-card,
  .contact-note-card,
  .contact-form,
  .product-image-card,
  .product-summary-card,
  .product-details-card,
  .product-meta-card {
    padding: 1.1rem;
  }

  .split-layout > div,
  .hero-text,
  .about-story-copy {
    gap: 0.85rem;
  }

  .menu-item-detail-grid,
  .product-quick-meta {
    grid-template-columns: 1fr;
  }

  .product-hero-grid,
  .product-details-grid,
  .product-story-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-product .video-scroll-stage .hero-content {
    padding: 2.1rem 0;
  }

  .page-product .hero-text {
    max-width: none;
  }

  .page-product .section-over-video .container,
  .page-product .related-products-section .container {
    width: min(100% - 1rem, var(--container-width));
  }

  .product-image-card {
    max-width: none;
    justify-self: stretch;
    width: 100%;
  }

  .product-image-card img {
    width: min(100%, 280px);
  }

  .product-summary-card,
  .product-details-card,
  .product-meta-card {
    gap: 0.9rem;
  }

  .product-name {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .product-short-description,
  .product-availability-note,
  .product-spec-list dd,
  .product-story-item p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .product-tag-row {
    gap: 0.4rem;
  }

  .product-tag,
  .product-chip {
    width: fit-content;
  }

  .product-quick-meta,
  .product-story-grid {
    gap: 0.75rem;
  }

  .product-quick-meta div,
  .product-story-item,
  .product-spec-list div {
    padding: 0.95rem;
  }

  .page-product .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-product #relatedProducts {
    gap: 1rem;
  }

  .page-product .related-product-card .card-content {
    padding: 1rem;
  }

  .page-product .related-product-card img {
    max-width: 104px;
  }

  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-story-decor-wrap {
    justify-self: start;
    width: min(100%, 180px);
  }

  .about-story-decor-image {
    max-width: 180px;
  }

}

@media (min-width: 901px) {
  .video-scroll-stage .hero-content:not(.hero-home-grid) {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .video-scroll-stage .hero-home-grid {
    min-height: 100%;
    display: grid;
    align-items: center;
  }

  .video-scroll-stage .hero-text {
    transform: translateY(-56px);
  }

  .video-scroll-stage .hero-home-grid .hero-text {
    transform: translateY(-28px);
  }
}

/* DARK MODE VARIABLES */
body.dark-mode {
  --color-bg: #121212;
  --color-surface: #1f1f1f;
  --color-surface-alt: #2a2a2a;
  --color-primary: #c98a4a;
  --color-primary-dark: #e4b27a;
  --color-text: #e6e0d9;
  --color-text-muted: #b8aea3;
  --color-border: #3a3a3a;
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* DARK MODE OVERRIDES */
body.dark-mode .site-header {
  background-color: rgba(24, 24, 24, var(--site-header-alpha));
}

body.dark-mode .site-nav a {
  background-color: rgba(17, 17, 17, 0.88);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .site-nav a:hover,
body.dark-mode .site-nav a.active {
  background-color: #fff;
  color: #111;
}

body.dark-mode .theme-toggle-btn {
  background-color: #fff;
  color: #111;
  border-color: #fff;
}

body.dark-mode .theme-toggle-btn:hover {
  background-color: #111;
  color: #fff;
}

body.dark-mode .menu-note {
  background-color: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-primary-dark);
}

body.dark-mode .product-story-item {
  background-color: var(--color-surface-alt);
}

body.dark-mode .product-image-card {
  background: linear-gradient(180deg, rgba(201, 138, 74, 0.12), rgba(31, 31, 31, 0.92));
}

body.dark-mode .alt-background {
  background: linear-gradient(180deg, var(--color-surface-alt), #202020);
}

body.dark-mode .video-scroll-stage {
  --video-section-bg: var(--color-bg);
  --hero-overlay-darkness: 0.58;
}

body.dark-mode .video-overlay-flow .section-over-video + .section-over-video {
  border-top-color: transparent;
}

/* PRODUCT PAGE */
.product-hero-grid,
.product-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.5rem;
  align-items: start;
}

.product-details-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.product-image-card,
.product-summary-card,
.product-details-card,
.product-meta-card {
  padding: 1.35rem;
}

.product-image-card {
  background: linear-gradient(180deg, rgba(194, 138, 83, 0.12), rgba(255, 250, 244, 0.95));
  width: 100%;
  max-width: min(100%, 25rem);
  justify-self: start;
  align-self: start;
}

.product-summary-card,
.product-details-card,
.product-meta-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.product-image-card img {
  display: block;
  width: min(100%, 320px);
  max-width: 360px;
  margin: 0 auto;
  object-fit: contain;
}

.product-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.product-tag,
.product-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-alt);
  color: var(--color-primary-dark);
  border-radius: 999px;
  padding: 0.26rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.product-tag {
  background-color: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.product-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  color: var(--color-primary-dark);
}

.product-price {
  font-size: 1.35rem;
}

.product-short-description {
  color: var(--color-text-muted);
}

.product-quick-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-quick-meta div {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background-color: var(--color-surface-alt);
  padding: 0.85rem 0.9rem;
  display: grid;
  gap: 0.25rem;
}

.product-quick-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-availability-note {
  color: var(--color-primary-dark);
  font-weight: 600;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(69, 38, 26, 0.08);
}

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

.product-story-item {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background-color: rgba(255, 250, 244, 0.82);
  padding: 0.9rem;
  display: grid;
  gap: 0.25rem;
}

.product-story-item span,
.product-spec-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.product-story-item p {
  color: var(--color-primary-dark);
}

.product-meta-title {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  font-size: 1.35rem;
}

.product-spec-list {
  display: grid;
  gap: 0.8rem;
}

.product-spec-list div {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(69, 38, 26, 0.08);
  display: grid;
  gap: 0.25rem;
}

.product-spec-list dd {
  color: var(--color-primary-dark);
  line-height: 1.55;
}

.related-product-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.related-product-chip {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-alt);
  color: var(--color-primary-dark);
  padding: 0.22rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.related-product-reason {
  color: var(--color-primary-dark);
  font-size: 0.92rem;
  font-weight: 600;
}

.related-product-card img {
  max-width: 120px;
  margin: 1rem auto 0;
}

.product-feature-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  align-items: start;
}

.product-main-column,
.product-side-column {
  display: grid;
  gap: 1rem;
}

.product-summary-card {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(247, 238, 228, 0.95));
}

.product-summary-header {
  display: grid;
  gap: 1rem;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.product-title-copy {
  display: grid;
  gap: 0.7rem;
}

.product-price-block {
  min-width: 8rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(69, 38, 26, 0.08);
  background-color: rgba(96, 56, 38, 0.06);
  text-align: right;
}

.product-price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.product-service-card,
.product-visit-card {
  padding: 1.3rem;
  display: grid;
  gap: 0.75rem;
}

.product-service-card {
  background: linear-gradient(180deg, rgba(239, 227, 213, 0.55), rgba(255, 250, 244, 0.98));
}

.product-visit-card {
  background:
    linear-gradient(180deg, rgba(96, 56, 38, 0.94), rgba(69, 38, 26, 0.96));
  border-color: rgba(69, 38, 26, 0.18);
  color: #fff8f1;
}

.product-visit-card h3,
.product-visit-card p {
  color: #fff8f1;
}

.product-visit-card .card-eyebrow {
  color: rgba(255, 248, 241, 0.72);
}

.product-visit-card .btn {
  width: auto;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.product-details-card {
  padding: 1.6rem;
}

.product-details-card .section-title {
  margin-bottom: 0.35rem;
}

.product-meta-card {
  padding: 1.35rem;
}

.related-products-section .section-intro {
  max-width: 44rem;
}

body.dark-mode .product-summary-card {
  background: linear-gradient(180deg, rgba(36, 36, 36, 0.98), rgba(28, 28, 28, 0.95));
}

body.dark-mode .product-price-block {
  background-color: rgba(201, 138, 74, 0.12);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .product-service-card {
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.96), rgba(31, 31, 31, 0.96));
}

body.dark-mode .product-visit-card {
  background: linear-gradient(180deg, rgba(201, 138, 74, 0.16), rgba(31, 31, 31, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .product-feature-shell,
  .product-detail-shell,
  .product-title-row {
    grid-template-columns: 1fr;
  }

  .product-price-block {
    text-align: left;
    min-width: 0;
  }

  .product-image-card {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .product-feature-shell,
  .product-detail-shell,
  .product-main-column,
  .product-side-column {
    gap: 0.9rem;
  }

  .product-image-card,
  .product-summary-card,
  .product-details-card,
  .product-meta-card,
  .product-service-card,
  .product-visit-card {
    padding: 1.1rem;
  }

  .product-title-row {
    gap: 0.75rem;
  }

  .product-price-block {
    padding: 0.8rem 0.9rem;
  }

  .product-visit-card .btn {
    width: 100%;
  }
}

/* MICRO ANIMATION: Reduced motion safety
Respects accessibility preferences by disabling transform-driven motion.
Keeps interactions static when users request reduced animation.
*/
@media (prefers-reduced-motion: reduce) {
  .hero::after {
    animation: none;
  }

  .card,
  .menu-item,
  .menu-section,
  .menu-filter-btn,
  .btn,
  .card img,
  .related-product-card img,
  .site-nav,
  .site-header,
  .theme-toggle-btn {
    transition: none;
    animation: none;
    transform: none;
  }

  .card:hover,
  .menu-item:hover,
  .btn:hover,
  .card:hover img,
  .related-product-card:hover img {
    transform: none;
  }

  .card:hover {
    box-shadow: var(--shadow-card);
  }

  .menu-item:hover,
  .btn:hover {
    box-shadow: none;
  }

  .menu-item:hover .price {
    color: var(--color-primary);
  }

}
