/* ═══════════════════════════════════════════════════════════════
   Làng Việt – Vietnamesisches Restaurant Bayreuth
   Stylesheet · Light Theme · Vietnamese Warmth
═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand colours (derived from logo) */
  --clr-primary:       #c8272d;   /* logo red */
  --clr-primary-dark:  #a01f24;
  --clr-primary-light: #e8464c;
  --clr-gold:          #e8a800;   /* logo gold/yellow */
  --clr-gold-light:    #ffd54f;
  --clr-gold-dark:     #c48c00;

  /* Background palette – warm cream/beige */
  --clr-bg:            #f5ede2;
  --clr-bg-alt:        #ede0ce;
  --clr-bg-card:       #fffaf5;
  --clr-bg-dark:       #1c1008;   /* very dark brown */

  /* Bamboo / nature greens */
  --clr-green:         #2d5a27;
  --clr-green-light:   #4a8a3f;

  /* Typography */
  --clr-text:          #1c1008;
  --clr-text-muted:    #7a5638;
  --clr-text-on-dark:  #f5ede2;

  /* UI helpers */
  --clr-border:        #d4b896;
  --clr-border-light:  #e8d5bb;
  --clr-white:         #ffffff;

  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;

  /* Layout */
  --max-width: 1180px;
  --nav-height: 72px;
  --br:    8px;
  --br-lg: 16px;
  --br-xl: 24px;

  /* Shadows */
  --shadow-sm:  0 2px  8px rgba(28,16,8,.08);
  --shadow-md:  0 4px 20px rgba(28,16,8,.14);
  --shadow-lg:  0 8px 40px rgba(28,16,8,.20);

  /* Transitions */
  --ease: 0.3s cubic-bezier(.4,0,.2,1);
}


/* ─── Reset & Base ───────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* Focus ring */
:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 3px;
}


/* ─── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}


/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.65em 1.5em;
  border-radius: var(--br);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background var(--ease), color var(--ease),
              box-shadow var(--ease), transform var(--ease),
              border-color var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary (red) */
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border: 2px solid var(--clr-primary);
  box-shadow: 0 4px 14px rgba(200,39,45,.3);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  border-color: var(--clr-primary-dark);
  box-shadow: 0 6px 20px rgba(200,39,45,.4);
}

/* Ghost (white border on dark) */
.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--clr-white);
}

/* Outline on light bg */
.btn-outline-dark {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}
.btn-outline-dark:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* XL size */
.btn-xl {
  padding: 0.85em 2.2em;
  font-size: 1.05rem;
  border-radius: var(--br-lg);
}

/* Order (gold) */
.btn-order {
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  border: 2px solid var(--clr-gold);
  padding: 0.5em 1.2em;
  border-radius: var(--br);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(232,168,0,.3);
  white-space: nowrap;
}
.btn-order:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  box-shadow: 0 6px 20px rgba(232,168,0,.45);
}

.btn-order-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  border: 2px solid var(--clr-gold);
  padding: 0.65em 1.6em;
  border-radius: var(--br);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  margin-top: var(--sp-sm);
}
.btn-order-footer:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,168,0,.4);
}

.btn-order-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--clr-gold);
  color: var(--clr-bg-dark);
  border: 2px solid var(--clr-gold);
  padding: 0.85em 2.2em;
  border-radius: var(--br-lg);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(232,168,0,.4);
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-order-banner:hover {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,168,0,.5);
}


/* ─── Decorative helpers ──────────────────────────────────────── */
.decorative-rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
  border-radius: 2px;
  margin-block: 1.25rem 2rem;
}
.decorative-rule-center {
  margin-inline: auto;
  margin-bottom: 3rem;
}


/* ─── Section defaults ────────────────────────────────────────── */
.section {
  padding-block: clamp(3rem, 8vw, var(--sp-xl));
}
.section-alt {
  background-color: var(--clr-bg-alt);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
}

/* Auto-center the label when it accompanies a centered title */
:has(> .section-title-center) > .section-label,
.section-title-center ~ .section-label,
.section-label:has(+ .section-title-center) {
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}
.section-title em {
  font-style: italic;
  color: var(--clr-primary);
}
.section-title-center { text-align: center; }

.section-cta {
  text-align: center;
  margin-top: var(--sp-md);
}


/* ════════════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-bg-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--sp-sm);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(232,168,0,.4);
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Nav list */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-right: 1rem;
}
.nav-link {
  display: block;
  padding: 0.45em 0.85em;
  color: rgba(245,237,226,.8);
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: var(--br);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
  background: rgba(232,168,0,.1);
}
.nav-link.active {
  font-weight: 700;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
  border-radius: var(--br);
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gold-light);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.nav-toggle.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .burger-line:nth-child(2) { opacity: 0; }
.nav-toggle.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,16,8,.5);
  z-index: 90;
  backdrop-filter: blur(2px);
}
.nav-overlay.visible { display: block; }


/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  will-change: transform;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,16,8,.75) 0%,
    rgba(28,16,8,.55) 50%,
    rgba(28,16,8,.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--clr-white);
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35em 1.1em;
  background: rgba(232,168,0,.2);
  border: 1px solid rgba(232,168,0,.5);
  color: var(--clr-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}

.hero-logo-wrap {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.hero-logo {
  width: clamp(140px, 22vw, 200px);
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(232,168,0,.5);
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(245,237,226,.9);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245,237,226,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scroll-fade 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(245,237,226,.5);
  border-bottom: 2px solid rgba(245,237,226,.5);
  transform: rotate(45deg);
}
@keyframes scroll-fade {
  0%,100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 0.3; transform: translateX(-50%) translateY(4px); }
}


/* ════════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-text {
  max-width: 540px;
}
.about-text p {
  margin-bottom: 1.1rem;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}
.about-text p strong { color: var(--clr-text); }
.about-text .btn { margin-top: 0.5rem; }

.about-image {
  position: relative;
}
.about-image-frame {
  position: relative;
  border-radius: var(--br-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-frame:hover img { transform: scale(1.04); }

/* Decorative corner accent */
.about-image-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-primary) 100%);
  border-radius: var(--br-xl);
  z-index: -1;
  opacity: 0.6;
}


/* ════════════════════════════════════════════════════════════════
   FEATURES
════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--br-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--clr-gold);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(200,39,45,.1), rgba(232,168,0,.15));
  border-radius: var(--br-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--clr-primary);
  transition: background var(--ease), color var(--ease);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
  color: white;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════════
   GALLERY PREVIEW (homepage)
════════════════════════════════════════════════════════════════ */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--br-lg);
  overflow: hidden;
  display: block;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-preview-item:hover img { transform: scale(1.08); }

.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity var(--ease);
}
.gallery-preview-item:hover .gallery-preview-overlay { opacity: 1; }
.gallery-preview-overlay span {
  color: var(--clr-gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}


/* ════════════════════════════════════════════════════════════════
   ORDER BANNER
════════════════════════════════════════════════════════════════ */
.section-order-banner {
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, #3d1a0e 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.section-order-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 18px,
      rgba(232,168,0,.04) 18px,
      rgba(232,168,0,.04) 20px
    );
}

.order-banner-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.order-banner-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  margin-bottom: 0.5rem;
}
.order-banner-text p {
  font-size: 1.05rem;
  color: rgba(245,237,226,.75);
}


/* ════════════════════════════════════════════════════════════════
   INFO CARDS (hours / address / order)
════════════════════════════════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.info-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--br-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1rem;
}

.info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200,39,45,.1), rgba(232,168,0,.12));
  border-radius: var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: 1rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td {
  padding: 0.35rem 0;
  vertical-align: top;
}
.hours-table td:first-child {
  font-weight: 700;
  padding-right: 1rem;
  white-space: nowrap;
  color: var(--clr-text);
}
.hours-table td:last-child { color: var(--clr-text-muted); }
.hours-closed { color: var(--clr-primary) !important; font-weight: 700 !important; }
.hours-note {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.75rem;
}

.info-card address {
  font-size: 0.98rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}
.info-card address strong { color: var(--clr-text); }


/* ════════════════════════════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--br-lg);
  overflow: hidden;
  cursor: zoom-in;
  border: 2px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.gallery-item:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,39,45,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity var(--ease);
  border-radius: calc(var(--br-lg) - 2px);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }


/* Lightbox */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,10,5,.92);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
[hidden] { display: none !important; }

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--br-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.lightbox-caption {
  color: rgba(245,237,226,.8);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.15);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease), transform var(--ease);
  backdrop-filter: blur(4px);
  z-index: 220;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-primary);
  transform: scale(1.1);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }


/* ════════════════════════════════════════════════════════════════
   PAGE HERO (for single pages)
════════════════════════════════════════════════════════════════ */
.section-page-hero {
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, #2e150b 100%);
  padding-block: 4rem 3rem;
}
.section-page-hero .section-label { color: var(--clr-gold-light); }
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--clr-gold-light);
  margin-bottom: 0;
}
.section-page-hero .decorative-rule {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-primary));
}
.page-intro {
  color: rgba(245,237,226,.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 0.5rem;
}

/* ─── Prose (single-page content) ──── */
.section-page-content { background: var(--clr-bg); }
.page-content-wrap { max-width: 760px; }

.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--clr-border-light);
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.prose p  { margin-bottom: 1rem; color: var(--clr-text-muted); font-size: 0.98rem; }
.prose a  { color: var(--clr-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--clr-primary-dark); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: var(--clr-text-muted); margin-bottom: 0.3rem; font-size: 0.98rem; }
.prose strong { color: var(--clr-text); }
.prose address { font-style: normal; }
.prose hr { border: none; border-top: 1px solid var(--clr-border-light); margin-block: 2rem; }


/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--clr-bg-dark); color: var(--clr-text-on-dark); }

.footer-top { padding-block: clamp(3rem, 6vw, 5rem); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(232,168,0,.3);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,237,226,.65);
  margin-bottom: 0.5rem;
  max-width: 260px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold-light);
  margin-bottom: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-address {
  font-size: 0.92rem;
  color: rgba(245,237,226,.65);
  line-height: 1.8;
}
.footer-map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--clr-gold-light);
  transition: color var(--ease);
}
.footer-map-link:hover { color: var(--clr-gold); }

.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245,237,226,.65);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--clr-gold-light); }

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(245,237,226,.45);
}
.footer-bottom-inner a {
  color: rgba(245,237,226,.55);
  transition: color var(--ease);
}
.footer-bottom-inner a:hover { color: var(--clr-gold-light); }


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  .about-grid     { grid-template-columns: 1fr; }
  .about-image    { order: -1; }
  .about-image-frame { aspect-ratio: 16/9; }
  .about-text     { max-width: 100%; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--clr-bg-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 100;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    margin-right: 0;
    gap: 0;
  }
  .nav-link {
    padding: 0.75em 1em;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .btn-order { width: 100%; justify-content: center; padding: 0.75em 1em; }

  .features-grid  { grid-template-columns: 1fr; }
  .info-grid      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }

  .hero-actions   { flex-direction: column; align-items: center; }
  .btn-xl         { width: 100%; max-width: 320px; justify-content: center; }

  .order-banner-inner { flex-direction: column; text-align: center; }
  .btn-order-banner   { width: 100%; justify-content: center; max-width: 320px; align-self: center; }

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

  .footer-bottom-inner { flex-direction: column; text-align: center; }

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

@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
