:root {
  --orange: #F4711F;
  --orange-dark: #d4540c;
  --orange-bright: #FF8C35;
  --grey: #3A3A3A;
  --grey-mid: #888;
  --cream: #F5F0E8;
  --black: #111111;
  --cream-dark: #EAE3D5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--cream-dark);
  color: var(--black);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--cream); letter-spacing: 1px; }
.nav-logo-text span { color: var(--orange); }
.nav-center-logo { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; pointer-events: none; }
.nav-center-logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo-img { width: 36px; height: 36px; max-width: 36px; max-height: 36px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-links { display: flex; gap: 0.5rem; list-style: none; justify-content: flex-end; align-items: center; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }
.nav-links a.active { color: var(--orange); }

/* ── PAGE ── */
.page-wrap { padding-top: 70px; min-height: 100vh; }

/* ── HERO ── */
.page-hero {
  background: var(--black);
  background-image:
    linear-gradient(rgba(244,113,31,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,113,31,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  padding: 1.5rem 2rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(244,113,31,0.2);
}
.page-tag {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 0.5rem;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.page-title span { color: var(--orange); }
.page-title span[data-i18n$=".label"] { color: var(--cream); }
.page-sub {
  color: var(--grey-mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.page-divider {
  width: 50px; height: 4px;
  background: var(--orange);
  margin: 0.8rem auto;
  position: relative;
}
.page-divider::before, .page-divider::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--orange);
  top: -2px;
}
.page-divider::before { left: -14px; }
.page-divider::after  { right: -14px; }

/* ── CONTENT ── */
.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-label {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--black);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--orange); }

/* ── ABOUT GRID ── */
.about-quinconce {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: 4rem;
}
.quinconce-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.quinconce-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.quinconce-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.quinconce-img-small {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.quinconce-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-body {
  text-align: justify;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-body strong { color: var(--black); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--cream-dark);
  border-left: 3px solid var(--orange);
}
.about-feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.about-feature h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-feature p { font-size: 0.85rem; color: var(--grey-mid); line-height: 1.5; }

/* ── MOSAIC ── */
.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.mosaic-card {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--grey);
}
.mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── STATS ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,113,31,0.15);
  border: 1px solid rgba(244,113,31,0.2);
  margin-bottom: 3rem;
}
.about-stat {
  background: var(--grey);
  padding: 2rem 1rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-mid);
}

/* ── CTA ── */
.about-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn-primary, .btn-secondary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  transition: all 0.2s;
}
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { background: var(--orange-bright); }
.btn-secondary { background: transparent; color: var(--cream); border: 1px solid rgba(244,113,31,0.4); }
.btn-secondary:hover { border-color: var(--cream); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(244,113,31,0.2);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--cream); letter-spacing: 3px; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-family: 'VT323', monospace; color: var(--grey-mid); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 1rem; }
.footer-bottom { font-size: 0.8rem; color: var(--grey-mid); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 1.2rem; margin: 0.8rem 0 0.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--grey-mid); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }
.footer-legal-sep { color: rgba(155,155,155,0.3); font-size: 0.75rem; }
.footer-business { font-size: 0.7rem; color: rgba(155,155,155,0.5); margin-top: 0.4rem; }


/* ── LANG TOGGLE ── */
.lang-btn {
  background: transparent;
  border: 1px solid var(--cream);
  font-size: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream);
  line-height: 1;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
}
.lang-btn:hover { transform: scale(1.25); }
.nav-links li:has(.lang-btn) {
  display: flex;
  align-items: center;
  padding: 0 0.25rem;
}

@media (max-width: 768px) {
  .quinconce-row { grid-template-columns: 1fr; }
  .quinconce-img { aspect-ratio: 16 / 9; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-cta-row { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════
   NEW LAYOUT — BAKERY-STYLE 3 SECTIONS
   ═══════════════════════════════════════════════ */

/* ── SECTION 1 : INTRO CARD ── */
.ab-intro-section {
  position: relative;
  background: var(--cream);
  padding: 4rem 2rem;
  overflow: hidden;
}
.ab-deco {
  position: absolute;
  border-radius: 0;
  background: var(--orange);
  pointer-events: none;
}
.ab-deco-tl  { width: 200px; height: 200px; top: -70px; left: -70px; opacity: 0.12; }
.ab-deco-br  { width: 130px; height: 130px; bottom: -45px; right: 80px; opacity: 0.09; }
.ab-deco-dot { width: 14px; height: 14px; bottom: 1.2rem; right: 1.2rem; opacity: 0.7; }

.ab-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 6px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}
.ab-intro-photo {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 420px;
}
.ab-intro-info-col {
  padding: 3rem 2.5rem;
  position: relative;
  display: flex; flex-direction: column; gap: 1rem;
}
.ab-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--black);
  line-height: 1; letter-spacing: 2px;
}
.ab-card-title span { color: var(--orange); }

.ab-hours-block { margin-top: 0.3rem; }
.ab-hours-label {
  font-size: 0.85rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.5rem;
  display: block;
}
.ab-hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--grey);
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.ab-hour-val { color: var(--orange); font-weight: 600; }

.ab-social-row { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.ab-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s;
}
.ab-social-btn:hover { background: var(--orange); }

/* ── SECTION 2 : FEATURE BAND ── */
.ab-feature-band {
  position: relative;
  background: var(--cream-dark);
  padding: 5rem 2rem;
  overflow: hidden;
}
.ab-feature-deco {
  position: absolute;
  border-radius: 0;
  background: var(--orange);
  pointer-events: none;
}
.ab-feature-deco-tr { width: 280px; height: 280px; top: -90px; right: -70px; opacity: 0.10; }
.ab-feature-deco-sm { width: 18px; height: 18px; top: 52%; left: 48%; opacity: 0.5; }

.ab-feature-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ab-feature-text { display: flex; flex-direction: column; gap: 0.9rem; }
.ab-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--black); line-height: 1.05; letter-spacing: 2px;
}
.ab-feature-title span { color: var(--orange); }
.ab-feature-photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.ab-visit-btn {
  display: inline-block; margin-top: 0.8rem;
  padding: 0.85rem 2rem;
  background: var(--orange); color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  text-decoration: none; transition: background 0.2s;
  width: fit-content; border-radius: 2px;
}
.ab-visit-btn:hover { background: var(--orange-bright); }

/* ── SECTION 3 : BENEFITS ── */
.ab-benefits-section {
  background: var(--cream);
  padding: 5rem 2rem;
}
.ab-benefits-inner { max-width: 1100px; margin: 0 auto; }
.ab-benefits-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black); letter-spacing: 2px;
  text-align: center; margin-bottom: 0.4rem;
}
.ab-benefits-title span { color: var(--orange); }
.ab-benefits-sub {
  text-align: center; color: var(--grey-mid);
  font-size: 0.95rem; max-width: 500px;
  margin: 0 auto 3rem; line-height: 1.6;
}
.ab-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  gap: 2rem; align-items: center;
}
.ab-benefits-col { display: flex; flex-direction: column; gap: 1rem; }
.ab-benefit-card {
  background: var(--cream-dark);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
}
.ab-benefit-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.3rem;
}
.ab-benefit-card p {
  font-size: 0.8rem; color: var(--grey-mid); line-height: 1.5;
}
.ab-benefits-center { display: flex; align-items: center; justify-content: center; }
.ab-benefits-img {
  width: 180px; height: 180px;
  border-radius: 0; object-fit: cover; display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ab-intro-card        { grid-template-columns: 1fr; }
  .ab-intro-photo       { min-height: 260px; }
  .ab-feature-inner     { grid-template-columns: 1fr; }
  .ab-benefits-grid     { grid-template-columns: 1fr; }
  .ab-benefits-center   { order: -1; }
}

/* ── NAV CART ICON ── */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0 0.25rem;
}
.nav-cart:hover { color: var(--orange); }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--orange);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}
.cart-badge.visible { display: flex; }
