/*
   _                    _ __  __ _ _ _
  | |    ___  __ _  ___| |  \/  (_) | |
  | |   / _ \/ _` |/ __  | |\/| | | | |
  | |__|  __/ (_| | |__| | |  | | | | |
  |_____\___|\__,_|\___|_|_|  |_|_|_|_|

  LeadMill AS - leadmill.no
*/

/* ============================================================
   main.css — Merze Restaurant Styles
   Imports tokens.css for all design values.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@400;500;700&display=swap');
@import './tokens.css';


/* ------------------------------------------------------------------
   RESET & BASE
------------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Keep anchor targets clear of the fixed announcement strip + nav */
  scroll-padding-top: calc(var(--strip-height) + var(--nav-height) + var(--space-xl));
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-default);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------------
   ACCESSIBILITY — focus states (keyboard)
------------------------------------------------------------------ */

:where(a, button, [role="button"], input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

:where(a, button, [role="button"], input, textarea, select, summary):focus:not(:focus-visible) {
  outline: none;
}

/* Skip link (visible on keyboard focus) */
.skip-link {
  position: absolute;
  top: calc(var(--strip-height) + var(--space-sm));
  left: -9999px;
  z-index: 1000;
  padding: 0.6rem 0.9rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  transition: left 0ms, box-shadow 180ms ease, outline-color 180ms ease;
}

.skip-link:focus-visible {
  left: var(--space-lg);
}


/* ------------------------------------------------------------------
   UTILITIES
------------------------------------------------------------------ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  color: var(--color-text-primary);
}

.section-subheading {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin-top: var(--space-md);
  line-height: var(--line-height-base);
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--transition-default);
}

.btn-primary:hover {
  background-color: var(--color-accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Secondary / outline button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: transparent;
  color: var(--color-accent-gold);
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-accent-gold);
  transition: var(--transition-default);
}

.btn-secondary:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background-color: var(--color-accent-gold);
  margin: var(--space-lg) 0;
}


/* ------------------------------------------------------------------
   NAVIGATION
------------------------------------------------------------------ */

.site-nav {
  position: fixed;
  top: var(--strip-height);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition-default);
  /* Starts transparent over hero, becomes solid on scroll via JS */
}

.site-nav.scrolled {
  background-color: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------------------------------------------------------------
   HOMEPAGE NAV (index.html) — centered links + morph logo
---------------------------------------------------------------- */

body.home .nav-inner {
  justify-content: center;
  position: relative;
}

body.home .nav-right {
  position: absolute;
  right: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
}

/* Small logo that fades in on scroll */
body.home .nav-logo-morph {
  position: absolute;
  left: var(--space-lg);
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 260ms ease;
  will-change: opacity, transform;
}

body.home .nav-logo-morph img {
  display: block;
  border-radius: 50%;
}

/* Hero logo fades out when nav becomes scrolled */
body.home .hero-logo {
  transition: opacity 260ms ease, transform 320ms ease;
  will-change: opacity, transform;
}

body.home.nav-scrolled .nav-logo-morph {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

body.home.nav-scrolled .hero-logo {
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  body.home .nav-logo-morph,
  body.home .hero-logo {
    transition: none;
  }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-logo svg {
  height: 36px;
  width: auto;
}

/* Real logo image — circular crop to match the badge shape */
.nav-logo-img {
  height: 104px;
  width: 104px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}

.footer-logo-img {
  height: 160px;
  width: 160px;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  margin-bottom: var(--space-sm);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  opacity: 0.85;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transform: scaleX(0);
  transition: var(--transition-default);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-accent-gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Nav right — CTA + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-default);
}

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

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--strip-height) + var(--nav-height));
  left: 0;
  right: 0;
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  z-index: 99;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-lg);
}

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

.nav-mobile a {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a:hover {
  color: var(--color-accent-gold);
}

.nav-mobile .btn-primary {
  margin-top: var(--space-md);
  justify-content: center;
}


/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--strip-height) + var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1509;
  /* Gradient simulates a dark atmospheric restaurant scene */
  background-image:
    radial-gradient(ellipse at 60% 40%, rgba(164,134,61,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(14,48,14,0.12) 0%, transparent 50%);
}

/* Decorative pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23A4863D' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 8, 0.3) 0%,
    rgba(10, 10, 8, 0.55) 50%,
    rgba(10, 10, 8, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 820px;
}

/* Hero logo placeholder (swap with real logo later) */
.hero-logo-placeholder {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  border: 1px dashed rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
}

/* Hero logo (real asset) */
.hero-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.hero-logo picture,
.hero-logo img {
  display: block;
}

.hero-logo img {
  width: min(620px, 88vw);
  height: auto;
}

/* ------------------------------------------------------------------
   MOBILE STICKY CALL CTA
------------------------------------------------------------------ */

.call-sticky {
  position: fixed;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: var(--space-lg);
  z-index: 150;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-md);
}

@media (max-width: 720px) {
  .call-sticky {
    display: inline-flex;
  }

  body {
    padding-bottom: 86px;
  }
}

.hero-eyebrow {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--color-accent-gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6.2vw, 3.9rem);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent-gold);
}

.hero-tagline {
  font-size: var(--font-size-md);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--line-height-base);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--font-size-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent-gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* Category pills in hero */
.hero-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-category-pill {
  background-color: rgba(164, 134, 61, 0.12);
  border: 1px solid rgba(164, 134, 61, 0.3);
  color: var(--color-accent-gold);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}


/* ------------------------------------------------------------------
   ANNOUNCEMENT STRIP
------------------------------------------------------------------ */

.announcement-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--strip-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-green);
  padding: 0 var(--space-lg);
  text-align: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  letter-spacing: 0.04em;
}

.announcement-strip a {
  color: var(--color-accent-gold);
  font-weight: var(--font-weight-bold);
  margin-left: var(--space-sm);
}

.announcement-strip a:hover {
  text-decoration: underline;
}


/* ------------------------------------------------------------------
   ABOUT / OUR STORY
------------------------------------------------------------------ */

.about {
  padding: var(--section-padding);
  background-color: var(--color-bg-secondary);
}

/* Legal / info subpages: fixed strip + .site-nav — section padding alone
   does not clear the header (strip 40px + nav 116px > 6rem top padding). */
body:not(.home) nav.site-nav ~ main > .about {
  padding-top: calc(var(--strip-height) + var(--nav-height) + var(--space-xl));
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* ------------------------------------------------------------------
   PHOTO CREDIT — newspaper-style caption below an image (e.g. "Foto:Telemarksavisa")
   Place inside the same wrapper as the image, AFTER the image.
------------------------------------------------------------------ */

.photo-credit {
  display: block;
  margin-top: var(--space-xs);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(201, 168, 76, 0.7);
  text-align: right;
}

.about-image-wrap {
  position: relative;
}

/* Frame that contains ONLY the image and the floating badge.
   The photo credit lives outside this frame so it doesn't shift the badge. */
.about-image-frame {
  position: relative;
}

.about-image-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-surface);
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(164,134,61,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(14,48,14,0.2) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder svg {
  width: 80px;
  opacity: 0.3;
}

/* Real photo slot — same shape as the placeholder, photo crops to fit */
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-surface);
}

.about-image picture,
.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative floating card — straddles the image's bottom edge:
   top half overlaps the image, bottom half hangs below. */
.about-badge {
  position: absolute;
  bottom: 0;
  right: -var(--space-xl);
  transform: translateY(50%);
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 120px;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  display: block;
}

.about-badge-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
  display: block;
}

.about-text .section-heading {
  font-size: var(--font-size-3xl);
}

.about-text p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-lg);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(164, 134, 61, 0.1);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-gold);
}

.about-value-text strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
  color: var(--color-text-primary);
}

.about-value-text span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}


/* ------------------------------------------------------------------
   MENU
------------------------------------------------------------------ */

.menu {
  padding: var(--section-padding);
  background-color: var(--color-bg-primary);
}

.menu-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.menu-header .section-heading {
  font-size: var(--font-size-3xl);
}

/* Category tabs */
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.menu-tab {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: transparent;
  transition: var(--transition-default);
}

.menu-tab:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
}

.menu-tab.active {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
}

/* Menu category section */
.menu-category {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: none;
}

.menu-category.active {
  display: block;
}

.menu-category-heading {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.menu-category-heading h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  white-space: nowrap;
}

.menu-category-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Subcategory heading (rendered dynamically when a tab has sub-sections) */
.menu-subcategory + .menu-subcategory { margin-top: var(--space-3xl); }

.menu-subcategory-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.menu-subcategory-heading-main {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  color: var(--color-accent-gold);
  line-height: var(--line-height-snug);
}

/* Same size as .menu-card-name — text after the hyphen / dash in content */
.menu-subcategory-heading-sub {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
}

/* Empty subcategory placeholder */
.menu-subcategory-empty {
  padding: var(--space-xl);
  text-align: center;
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
}

/* Menu items grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

/* Menu item card */
.menu-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition-default);
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-light);
}

.menu-card:hover::before {
  border-color: rgba(164,134,61,0.15);
}

.menu-card-info {
  flex: 1;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-snug);
}

.menu-card-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-base);
  margin-bottom: var(--space-md);
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.menu-tag {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background-color: rgba(14, 48, 14, 0.2);
  color: #6dbf8a;
  border: 1px solid rgba(14, 48, 14, 0.4);
}

.menu-tag.spicy {
  background-color: rgba(180, 60, 40, 0.2);
  color: #e87060;
  border-color: rgba(180, 60, 40, 0.4);
}

.menu-tag.popular {
  background-color: rgba(164, 134, 61, 0.15);
  color: var(--color-accent-gold);
  border-color: rgba(164, 134, 61, 0.35);
}

.menu-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-lg);
  flex-shrink: 0;
}

.menu-card-price {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent-gold);
  white-space: nowrap;
}

/* Allergen line on index.html menu cards */
.menu-card-allergens {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  opacity: 0.9;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

/* Allergen label + chips */
.menu-card-allergens-label {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.62rem;
  opacity: 0.85;
  margin-right: var(--space-xs);
}

.allergen-chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  vertical-align: middle;
}

.allergen-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

/* Collapsible allergen legend near the menu */
.allergen-legend {
  max-width: var(--max-width);
  margin: var(--space-lg) auto 0;
  padding: 0 var(--space-lg);
  color: var(--color-text-secondary);
}

.allergen-legend-body {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-md);
  line-height: 1.6;
}

.allergen-legend-body .allergen-chip {
  margin: 0 4px 0 0;
}

/* Legend title + grid (match menu.html style) */
.allergen-legend-title {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-sm);
}

.allergen-legend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  text-align: left;
  align-items: center;
}

@media (min-width: 520px) {
  .allergen-legend-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.allergen-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.allergen-legend-text {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Variant rows (e.g. "Med cheddar  204 kr") inside the price column */
.menu-card-variants {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.menu-card-variant {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-xs);
}

.menu-card-variant-label {
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.menu-card-variant-price {
  font-family: var(--font-heading);
  color: var(--color-accent-gold);
  white-space: nowrap;
}

/* ORDER FEATURE: Add cart logic here in v2 */
.menu-card-add {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  transition: var(--transition-default);
  line-height: 1;
}

.menu-card-add:hover {
  background-color: var(--color-accent-gold-hover);
  transform: scale(1.1);
}

/* Menu footer note */
.menu-note {
  max-width: var(--max-width);
  margin: var(--space-2xl) auto 0;
  padding: 0 var(--space-lg);
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.menu-note a {
  color: var(--color-accent-gold);
}


/* ------------------------------------------------------------------
   GALLERY
------------------------------------------------------------------ */

.gallery {
  padding: var(--section-padding);
  background-color: var(--color-bg-secondary);
  overflow: hidden;
}

.gallery-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  position: relative;
  /* Flex column so the image grows to fill any extra row-stretch space
     and the photo-credit stays pinned directly below the image. */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Mosaic layout */
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  flex-direction: column;
  gap: var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item:nth-child(1) .gallery-placeholder {
  aspect-ratio: unset;
  min-height: 400px;
}

.gallery-placeholder-icon {
  font-size: 2rem;
  opacity: 0.3;
}

/* Real photos — replaces placeholder */
.gallery-img-link {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  /* Grow to fill any extra height the grid row added (e.g. when a sibling
     has a photo credit). object-fit on the inner image keeps it filling. */
  flex: 1 1 auto;
  min-height: 0;
}

.gallery-placeholder {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
}

.gallery-img-link picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item:first-child .gallery-img-link {
  aspect-ratio: unset;
  min-height: 400px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Photo credit beneath gallery image (Telemarksavisa attribution) */
.photo-credit--gallery {
  margin: var(--space-xs) var(--space-md) var(--space-sm);
}

.gallery-label {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background-color: rgba(10, 10, 8, 0.75);
  backdrop-filter: blur(8px);
  color: var(--color-text-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

/* Each gallery item gets a subtle tint */
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #1a1509, #1e1a0a); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #0e1a12, #0a150f); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #1a1009, #15100a); }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #0f1a15, #0c1810); }
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #181208, #14100a); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #0e1612, #0b130f); }

/* ------------------------------------------------------------------
   SOCIAL (INSTAGRAM GRID) + LIGHTBOX
------------------------------------------------------------------ */

.gallery.social {
  padding-top: 0;
}

.social-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .social-grid { grid-template-columns: repeat(4, 1fr); }
}

.social-tile {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.social-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.social-tile:hover img {
  transform: scale(1.05);
}

.social-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.social-lightbox[aria-hidden="false"] {
  display: block;
}

.social-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.8);
  backdrop-filter: blur(8px);
}

.social-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 6vh auto;
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.social-lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(240,237,230,0.08);
  border: 1px solid rgba(240,237,230,0.15);
  color: rgba(240,237,230,0.8);
  font-size: 22px;
  line-height: 1;
}

.social-lightbox-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.social-lightbox-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}


/* ------------------------------------------------------------------
   HOURS & LOCATION
------------------------------------------------------------------ */

.info {
  padding: var(--section-padding);
  background-color: var(--color-bg-primary);
}

.info-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.info-block .section-label {
  display: block;
  margin-bottom: var(--space-sm);
}

.info-block .section-heading {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-xl);
}

/* Hours table */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-base);
}

.hours-row:first-child {
  border-top: 1px solid var(--color-border);
}

.hours-day {
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-medium);
}

.hours-time {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-bold);
}

.hours-row.today .hours-day,
.hours-row.today .hours-time {
  color: var(--color-accent-gold);
}

.hours-row.today .hours-day::after {
  content: ' ';
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-gold);
  opacity: 0.7;
}

/* Location */
.location-address {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.location-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.location-line svg {
  flex-shrink: 0;
  color: var(--color-accent-gold);
  margin-top: 2px;
}

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  margin-top: var(--space-lg);
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}


/* ------------------------------------------------------------------
   BOOK A TABLE
------------------------------------------------------------------ */

.booking {
  padding: var(--section-padding);
  background-color: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164,134,61,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

.booking-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.booking-header .section-heading {
  font-size: var(--font-size-3xl);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-field label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  transition: var(--transition-default);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(164, 134, 61, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #e87060;
}

.form-error {
  font-size: var(--font-size-xs);
  color: #e87060;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9b93' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.form-submit .btn-primary {
  width: 100%;
  max-width: 360px;
  justify-content: center;
  font-size: var(--font-size-base);
  padding: 1rem 2.5rem;
}

.form-privacy {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  text-align: center;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  background-color: rgba(14, 48, 14, 0.1);
  border: 1px solid rgba(14, 48, 14, 0.3);
  border-radius: var(--radius-lg);
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}


/* ------------------------------------------------------------------
   CONTACT
------------------------------------------------------------------ */

.contact {
  padding: var(--section-padding);
  background-color: var(--color-bg-primary);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.contact-text .section-heading {
  font-size: var(--font-size-2xl);
}

.contact-text p {
  color: var(--color-text-secondary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
  line-height: var(--line-height-base);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-default);
}

.contact-method:hover {
  border-color: var(--color-border-light);
  background-color: rgba(164,134,61,0.05);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(164, 134, 61, 0.1);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent-gold);
}

.contact-method-text strong {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.contact-method-text span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* Social links */
.contact-socials {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-default);
}

.social-link:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  background-color: rgba(164,134,61,0.08);
}


/* ------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------ */

.site-footer {
  background-color: var(--color-accent-green);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(240,237,230,0.15);
}

.footer-brand-tagline {
  font-size: var(--font-size-sm);
  color: rgba(240,237,230,0.6);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
  max-width: 280px;
  line-height: var(--line-height-base);
}

.footer-brand-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: rgba(240,237,230,0.1);
  border: 1px solid rgba(240,237,230,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,237,230,0.7);
  transition: var(--transition-default);
}

.footer-social-link:hover {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-bg-primary);
}

.footer-col h4 {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li a {
  font-size: var(--font-size-sm);
  color: rgba(240,237,230,0.55);
  transition: var(--transition-default);
}

.footer-col ul li a:hover {
  color: var(--color-accent-gold);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(240,237,230,0.4);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--font-size-xs);
  color: rgba(240,237,230,0.4);
  transition: var(--transition-default);
}

.footer-legal a:hover {
  color: rgba(240,237,230,0.8);
}


/* ------------------------------------------------------------------
   SECTION DIVIDERS / TRANSITIONS
------------------------------------------------------------------ */

.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}


/* ------------------------------------------------------------------
   RESPONSIVE — Tablet (max 1024px)
------------------------------------------------------------------ */

@media (max-width: 1024px) {
  :root {
    --font-size-4xl: 4rem;
    --font-size-3xl: 2.5rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image-wrap {
    max-width: 480px;
  }

  .about-image-placeholder,
  .about-image {
    aspect-ratio: 16/9;
  }

  .about-badge {
    bottom: var(--space-md);
    right: var(--space-md);
    transform: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .info-inner {
    gap: var(--space-2xl);
  }

  .gallery-item:nth-child(1) { grid-column: span 6; }
  .gallery-item:nth-child(2) { grid-column: span 6; }
  .gallery-item:nth-child(3) { grid-column: span 4; }
  .gallery-item:nth-child(4) { grid-column: span 4; }
  .gallery-item:nth-child(5) { grid-column: span 4; }
  .gallery-item:nth-child(6) { grid-column: span 12; }
}


/* ------------------------------------------------------------------
   RESPONSIVE — Mobile (max 768px)
------------------------------------------------------------------ */

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2.8rem;
    --font-size-3xl: 2rem;
    --font-size-2xl: 1.75rem;
    --section-padding: 4rem 1rem;
  }

  /* Nav */
  .nav-links,
  .nav-right .btn-primary {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  /* About */
  .about-values {
    grid-template-columns: 1fr;
  }

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

  .menu-card {
    flex-direction: column;
  }

  .menu-card-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 1; }
  .gallery-item:nth-child(3) { grid-column: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }

  /* Info */
  .info-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

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

  /* Contact */
  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ------------------------------------------------------------------
   RESPONSIVE — Small mobile (max 480px)
------------------------------------------------------------------ */

@media (max-width: 480px) {
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: var(--space-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
