/* ==========================================================================
   Balance Thai Spa — Stylesheet
   ========================================================================== */

:root {
  --cream: #F4EFE6;
  --cream-light: #FAF7F1;
  --brown: #3E2D21;
  --brown-dark: #2F2118;
  --gold: #B58A3B;
  --olive: #4F604A;
  --text: #2A241F;
  --muted: #6F675F;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1EBE5A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1180px;
  --radius: 6px;
  --shadow-soft: 0 8px 24px rgba(47, 33, 24, 0.08);
  --transition: 220ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); color: var(--brown-dark); margin: 0; font-weight: 600; }
p { margin: 0; color: var(--muted); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--cream-light);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout helpers ---------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 24px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 600;
}
.eyebrow-light { color: var(--cream); opacity: 0.85; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brown);
  color: var(--cream-light);
}
.btn-primary:hover { background: var(--brown-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream-light); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--whatsapp-green);
  color: #fff;
  border-color: transparent;
}
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-whatsapp:hover {
  background: var(--whatsapp-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream-light);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(62, 45, 33, 0.12);
  box-shadow: 0 2px 16px rgba(47, 33, 24, 0.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 18px 24px;
}

.logo-link { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo-img { height: 76px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--brown-dark);
  white-space: nowrap;
}

.nav-desktop { flex: 1; margin-left: 28px; min-width: 0; }
.nav-desktop ul { display: flex; gap: 26px; justify-content: flex-end; }
.nav-desktop li { white-space: nowrap; }
.nav-desktop a {
  font-size: 0.98rem;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--gold); }

.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 2px;
}
.lang-btn[aria-pressed="true"] { color: var(--brown-dark); border-bottom: 2px solid var(--gold); }
.lang-sep { color: var(--muted); }

.btn-header { white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--brown-dark);
  transition: transform var(--transition), opacity var(--transition);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47, 33, 24, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 590;
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 88vw);
  background: var(--cream);
  z-index: 600;
  transform: translateX(100%);
  transition: transform 280ms ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-inner {
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--brown-dark);
  cursor: pointer;
  padding: 4px 8px;
}
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-link { font-family: var(--font-display); font-size: 1.6rem; color: var(--brown-dark); }

.lang-switch-mobile { font-size: 1.05rem; }

.mobile-cta-group { display: flex; flex-direction: column; gap: 12px; }
.mobile-cta-group .btn { width: 100%; }

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(62, 45, 33, 0.15);
  font-size: 0.92rem;
}
.mobile-menu-footer p { margin: 2px 0; }
.mobile-business-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--brown-dark); margin-bottom: 6px !important; }
.mobile-hours-label { font-weight: 600; color: var(--text); margin-top: 12px !important; }

body.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: 56px 24px 80px; background: var(--cream-light); }
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-copy { font-size: 1.1rem; margin-bottom: 30px; max-width: 46ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-location { font-size: 0.92rem; color: var(--muted); }
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

/* ==========================================================================
   WELCOME
   ========================================================================== */
.welcome { padding: 64px 24px; background: var(--cream); }
.welcome-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.welcome-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: clamp(320px, 32vw, 440px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.welcome-text { align-self: flex-start; }
.welcome-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 20px; }
.welcome-text p { font-size: 1.05rem; max-width: 52ch; }

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits { padding: 64px 24px; background: var(--cream-light); }
.benefits-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.benefit-icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.benefit-icon svg { width: 38px; height: 38px; stroke: currentColor; fill: none; }
.benefit h3 { font-size: 1.4rem; margin-bottom: 12px; }
.benefit p { font-size: 0.98rem; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { padding: 90px 24px; background: var(--cream); }
.services-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--cream-light);
  border: 1px solid rgba(62, 45, 33, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 16px; }
.price-list { margin-bottom: 8px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid rgba(62, 45, 33, 0.1);
  font-size: 0.95rem;
  color: var(--text);
}
.price-list li:first-child { border-top: none; }
.price-list li span:last-child { color: var(--gold); font-weight: 600; }
.card-detail-btn { margin-top: auto; align-self: flex-start; }
.services-grid .service-card:nth-child(3) img { object-position: 50% 45%; }

/* Tablet: bewusst 2x2-Grid für vier Anwendungskarten, keine 3+1-Anordnung.
   Bereich 769–1199px, damit weder die Mobile-Regel (<=768px) noch der
   Basis-Wert (4 Spalten, >=1200px) hier greifen. */
@media (min-width: 769px) and (max-width: 1199px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PROMO (Oktober-Aktion) — isolierter Block, leicht entfernbar
   ========================================================================== */
.promo { background: var(--olive); padding: 70px 24px; }
.promo-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.promo-inner h2 { color: var(--cream-light); font-size: clamp(1.9rem, 4vw, 2.4rem); margin-bottom: 16px; }
.promo-percent { font-size: 1.4em; font-weight: 800; }
.promo-inner p { color: var(--cream); opacity: 0.92; margin-bottom: 28px; font-size: 1.05rem; }
.promo-inner .btn-primary { background: var(--gold); color: var(--brown-dark); }
.promo-inner .btn-primary:hover { background: #c99a49; }

/* ==========================================================================
   VOUCHERS
   ========================================================================== */
.vouchers { padding: 64px 24px; background: var(--cream-light); }
.vouchers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
.vouchers-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: clamp(360px, 30vw, 430px);
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.vouchers-text { align-self: flex-start; }
.vouchers-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.vouchers-text p { font-size: 1.05rem; max-width: 50ch; margin-bottom: 28px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { padding: 90px 24px; background: var(--cream); }
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.contact-business {
  font-family: var(--font-display) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--brown-dark) !important;
  margin-bottom: 10px !important;
}
.contact-details p { margin: 6px 0; font-size: 0.98rem; }
.contact-label { font-weight: 600; color: var(--text); margin-top: 18px !important; }
.contact-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 240px; }
.contact-qr { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.contact-qr-link {
  flex-shrink: 0;
  display: inline-block;
  padding: 8px;
  background: var(--cream-light);
  border: 1px solid rgba(62, 45, 33, 0.15);
  border-radius: 6px;
  transition: border-color var(--transition);
}
.contact-qr-link:hover { border-color: var(--gold); }
.contact-qr-link img { display: block; width: 170px; height: 170px; }
.contact-qr-caption { font-size: 0.82rem; color: var(--muted); max-width: 130px; line-height: 1.3; }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(62, 45, 33, 0.15);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-note p { font-size: 0.98rem; margin-bottom: 16px; }
.link-directions { color: var(--gold); font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* Tablet: QR-Code etwas größer als Desktop-Basiswert (statt Größenreduktion) */
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-qr-link img { width: 180px; height: 180px; }
}

/* ==========================================================================
   NOTICE
   ========================================================================== */
.notice { padding: 44px 24px; background: var(--cream-light); border-top: 1px solid rgba(62, 45, 33, 0.1); }
.notice-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.notice-inner h2 { font-size: 1.3rem; margin-bottom: 10px; color: var(--muted); }
.notice-inner p { font-size: 0.92rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--brown-dark); color: var(--cream); padding: 28px 24px; }
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-business-name {
  font-family: var(--font-display) !important;
  font-size: 23px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: var(--cream-light) !important;
  margin: 0 0 8px !important;
}
.footer-brand { line-height: 1.5; }
.footer-brand p { color: rgba(244, 239, 230, 0.75); margin: 0; font-size: 0.9rem; }
.footer-brand a { color: rgba(244, 239, 230, 0.9); }
.footer-gisa { margin-top: 2px !important; font-size: 0.82rem; }

.footer-social { justify-self: center; }
.footer-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, 0.3);
  opacity: 0.85;
  transition: opacity var(--transition), color var(--transition), border-color var(--transition);
}
.footer-facebook svg { width: 17px; height: 17px; }
.footer-facebook:hover { opacity: 1; color: var(--gold); border-color: var(--gold); }

.footer-links-group { justify-self: end; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-links a { color: var(--cream); opacity: 0.85; font-size: 0.9rem; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-sep { color: rgba(244, 239, 230, 0.4); }

.footer-lang { color: var(--cream); }
.footer-lang .lang-btn { color: rgba(244, 239, 230, 0.7); }
.footer-lang .lang-btn[aria-pressed="true"] { color: var(--cream-light); border-bottom-color: var(--gold); }

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  z-index: 400;
  transition: transform var(--transition), opacity var(--transition), background var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  background: var(--whatsapp-green-dark);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
body.menu-open .whatsapp-fab { opacity: 0; pointer-events: none; }

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--brown-dark);
  color: var(--cream-light);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }
@media (max-width: 768px) { .whatsapp-tooltip { display: none; } }

/* ==========================================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================================== */
.legal-page { padding: 70px 24px 100px; background: var(--cream-light); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 28px; }
.legal-inner h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.legal-inner p { margin-bottom: 14px; font-size: 1rem; }
.legal-inner a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.legal-placeholder-note {
  background: var(--cream);
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ==========================================================================
   DETAILSEITEN (Thai-Ölanwendung, Kokosöl, Nacken & Schulter)
   ========================================================================== */
.detail-page { padding: 0 0 100px; background: var(--cream-light); }
.detail-back-wrap {
  position: sticky;
  top: 112px;
  z-index: 400;
  background: var(--cream);
  border-bottom: 1px solid rgba(62, 45, 33, 0.1);
}
.detail-back-inner { max-width: var(--max-width); margin: 0 auto; padding: 12px 24px; }
.detail-back {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 40px 24px 0;
}
.detail-media img {
  width: 100%;
  height: clamp(360px, 32vw, 460px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: block;
}
.detail-text h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 18px; }
.detail-text .eyebrow { margin-bottom: 10px; }
.detail-intro { font-size: 1.05rem; margin-bottom: 22px; max-width: 56ch; }
.detail-description { font-size: 1rem; margin-bottom: 30px; max-width: 58ch; }
.detail-description p + p { margin-top: 14px; }

.detail-benefits { margin-bottom: 30px; }
.detail-benefits h2 { font-size: 1.2rem; margin-bottom: 14px; }
.detail-benefits ul { display: flex; flex-direction: column; gap: 10px; }
.detail-benefits li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--text);
}
.detail-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-pricing { margin-bottom: 30px; }
.detail-pricing h2 { font-size: 1.2rem; margin-bottom: 14px; }
.detail-pricing .price-list { max-width: 320px; }

.detail-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   RESPONSIVE — WELCOME BLEIBT BIS 640PX ZWEISPALTIG
   ========================================================================== */
@media (max-width: 640px) {
  .welcome-inner { grid-template-columns: 1fr; gap: 28px; }
  .welcome-media img { height: 240px; }
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 1024px) {
  .logo-img { height: 66px; }
  .brand-name { font-size: 1.78rem; }
  .detail-back-wrap { top: 102px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card img { height: 310px; }
  .benefits-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .vouchers-inner { grid-template-columns: 1fr; gap: 36px; }
  .vouchers-media { order: -1; }
  .vouchers-media img { height: 360px; }
  .detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .detail-media { order: -1; }
  .contact { padding: 60px 24px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-note { grid-column: 1 / -1; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE NAV SWITCH
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-desktop, .header-inner > .lang-switch, .btn-header { display: none; }
  .burger { display: flex; }
  .header-inner { justify-content: space-between; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card img { height: 260px; }
  .vouchers-media img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 20px 60px; }
  .welcome, .services, .vouchers, .contact { padding: 48px 20px; }
  .benefits { padding: 48px 20px; }
  .detail-page { padding: 0 0 72px; }
  .detail-inner { padding: 28px 20px 0; }
  .detail-media img { height: 260px; }
  .detail-ctas { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; gap: 22px; text-align: left; }
  .footer-social { justify-self: start; }
  .footer-links-group { justify-self: start; }
  .contact-qr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .contact-qr-link { padding: 10px; }
  .contact-qr-link img {
    width: min(190px, 55vw);
    height: auto;
    max-width: none;
  }
  .contact-qr-caption { margin-top: 12px; max-width: none; }
  .detail-ctas .btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .header-inner { padding: 14px 16px; }
  .logo-img { height: 54px; }
  .brand-name {
    font-size: clamp(22px, calc((100vw - 205px) / 7.3), 34px);
    font-weight: 600;
    line-height: 1.08;
  }
  .contact-business { font-size: 23px !important; }
  .footer-business-name { font-size: 21px !important; }
  .detail-back-wrap { top: 82px; }
}
