/* ═══════════════════════════════════════════════
   HAARSTUDIO T13 — Main Stylesheet
   Modern Salon Design System
═══════════════════════════════════════════════ */

:root {
  /* Brand */
  --primary:      #004A42;
  --primary-dark: #003830;
  --primary-light:#2E7A66;
  --primary-50:   #E8F5F0;
  --primary-100:  #B8DFCF;
  --primary-200:  #7AC4A8;

  /* Warm neutrals */
  --warm-50:      #FDFCFA;
  --warm-100:     #FAF8F5;
  --warm-200:     #F5F1EB;
  --warm-300:     #EDE7DD;
  --warm-400:     #D4C9B8;

  /* Gold accent */
  --gold:         #C4A265;
  --gold-dark:    #A8894F;
  --gold-light:   #D4B87E;

  /* Text */
  --text:         #1A1A1A;
  --text-light:   #4A4A4A;
  --text-muted:   #545B66;
  --white:        #FFFFFF;

  /* Feedback */
  --success:      #059669;
  --success-bg:   #ECFDF5;
  --error:        #DC2626;
  --error-bg:     #FEF2F2;

  /* Typography */
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;
  --heading: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 6rem);
  --container:  75rem;
  --gap:        2rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--warm-50);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:visited { color: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--primary-200);
  color: var(--primary-dark);
}

/* ── Typography ─────────────────────────────── */
h1, h2, h3 { font-family: var(--heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ── Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

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

.section--alt {
  background: var(--warm-100);
}

.section--dark {
  background: var(--primary);
  color: var(--white);
}

/* ── Skip link (Accessibility) ──────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm-300);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header__logo-img {
  height: 2.25rem;
  width: auto;
}
@media (min-width: 640px) {
  .header__logo-img { height: 2.75rem; }
}

.header__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.125rem;
  font-weight: 700;
}

.header__logo-text {
  display: none;
}
@media (min-width: 640px) {
  .header__logo-text {
    display: block;
  }
}

.header__logo-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

.header__logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.2;
}

/* Nav */
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.header__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 0.375rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.header__link:hover,
.header__link--active {
  color: var(--primary);
  background: var(--primary-50);
}

/* CTA + Hamburger */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cta {
  display: none;
}
@media (min-width: 640px) {
  .header__cta { display: inline-flex; }
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text);
}
@media (min-width: 768px) {
  .hamburger { display: none; }
}
.hamburger svg { width: 1.5rem; height: 1.5rem; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-open { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 0 1rem 1rem;
}
.mobile-menu.open { display: block; }

.mobile-menu__link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 0.375rem;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.mobile-menu__link:hover { color: var(--primary); background: var(--primary-50); }

.mobile-menu__cta {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  line-height: 1.25;
  -webkit-appearance: none;
  appearance: none;
}

.btn--primary,
a.btn--primary:link,
a.btn--primary:visited {
  background: var(--primary);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.btn--primary:hover { background: var(--primary-dark); }

.btn--outline,
a.btn--outline:link,
a.btn--outline:visited {
  background: transparent;
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: var(--white); -webkit-text-fill-color: var(--white); }

.btn--white,
a.btn--white:link,
a.btn--white:visited {
  background: transparent;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  border: 2px solid var(--white);
}
.btn--white:hover { background: var(--white); color: var(--primary); -webkit-text-fill-color: var(--primary); }

.btn--gold,
a.btn--gold:link,
a.btn--gold:visited {
  background: var(--gold);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}
.btn--gold:hover { background: var(--gold-dark); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { min-height: 75vh; } }

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
  max-width: 50rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   SECTION HEADINGS
═══════════════════════════════════════════════ */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading--left { text-align: left; }

.section-heading__title {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section--dark .section-heading__title {
  color: var(--white);
}

.section-heading__subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-heading--left .section-heading__subtitle { margin: 0; }

.section--dark .section-heading__subtitle {
  color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════
   SERVICE GRID
═══════════════════════════════════════════════ */
.service-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--warm-300);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.service-card__title {
  font-family: var(--heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SPLIT SECTION (text + image)
═══════════════════════════════════════════════ */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Mobile: Bild immer vor Text */
.split .split__media { order: -1; }
@media (min-width: 768px) {
  .split .split__media { order: 0; }
  .split--reverse .split__media { order: -1; }
}

.split__img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
}
.split__img--extensions {
  object-fit: contain;
  background: var(--warm-100);
}
.split__img--braut {
  object-position: center 15%;
}

.split__text h2 { margin-bottom: 1rem; }
.split__text h3 { margin-bottom: 0.75rem; color: var(--primary); }

.split__text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split__text .btn { margin-top: 0.5rem; }

/* ═══════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  text-align: center;
}

.team-card__img-wrap {
  overflow: hidden;
  border-radius: 1rem;
  max-width: 280px;
  margin: 0 auto 1.25rem;
  aspect-ratio: 3/4;
}
.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
/* Alev: portrait photo — zoom in to match Elvan's tighter framing */
.team-card__img--alev {
  transform: scale(1.35);
  transform-origin: center 18%;
}
/* Elvan: landscape photo — center on face */
.team-card__img--elvan {
  object-position: center 20%;
}

.team-card__name {
  font-family: var(--heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   OPENING HOURS
═══════════════════════════════════════════════ */
.hours-list {
  max-width: 24rem;
}

.hours-list__row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--warm-300);
  font-size: 0.9375rem;
}

.hours-list__day { font-weight: 500; }
.hours-list__time { color: var(--text-muted); }
.hours-list__time--closed { color: var(--warm-400); }

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-group .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--warm-400);
  border-radius: 0.5rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-100);
}

.form-textarea { resize: vertical; min-height: 6rem; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

/* Form alerts */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  margin-top: 1rem;
  display: none;
}

.form-alert--success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #A7F3D0;
}

.form-alert--error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #FECACA;
}

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

/* Spinner */
.spinner {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  text-align: center;
  padding: var(--section-py) 0;
  background: var(--primary);
  color: var(--white);
}

.cta-banner__title {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #001C1A;
  color: #7AC4A8;
  padding: var(--section-py) 0 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer a,
.footer a:link,
.footer a:visited {
  color: #7AC4A8;
  transition: color 0.2s var(--ease);
}
.footer a:hover { color: #FFFFFF; }

.footer address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.875rem; }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #7AC4A8;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__social-icon:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.footer__social-icon svg { width: 1rem; height: 1rem; }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a,
.footer__legal a:link,
.footer__legal a:visited {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal a:hover { color: #FFFFFF; }

/* ═══════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
═══════════════════════════════════════════════ */
.legal {
  max-width: 48rem;
  margin: 0 auto;
}

.legal h1 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
}

.legal p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--primary-dark); }

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.legal ul li { margin-bottom: 0.5rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.35s; }

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

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumb__sep {
  margin: 0 0.5rem;
  color: var(--warm-400);
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--warm-100);
  border-bottom: 1px solid var(--warm-200);
  padding: 1rem 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
}
a.trust-bar__item:hover {
  color: var(--primary);
}
.trust-bar__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-bar__text strong {
  font-weight: 700;
}
.trust-bar__divider {
  width: 1px;
  height: 1.25rem;
  background: var(--warm-300);
  display: none;
}
@media (min-width: 768px) {
  .trust-bar__divider { display: block; }
  .trust-bar__inner { flex-wrap: nowrap; gap: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   SEO CONTENT PANEL (right-edge slide-out)
═══════════════════════════════════════════════ */
.seo-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 900;
  pointer-events: none;
}
/* Small vertical tab on right edge */
.seo-panel__tab {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 0.75rem 0.4rem;
  font-size: 0.6875rem;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.55;
  transition: opacity 0.25s, background 0.25s;
}
.seo-panel__tab:hover {
  opacity: 1;
  background: var(--primary-dark, #003a34);
}
.seo-panel__tab-text {
  display: block;
}
/* Slide-out drawer */
.seo-panel__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
}
.seo-panel.is-open .seo-panel__drawer {
  transform: translateX(0);
}
.seo-panel.is-open .seo-panel__tab {
  opacity: 0;
  pointer-events: none;
}
/* Close button */
.seo-panel__close {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--warm-50, #faf9f7);
  border: none;
  border-bottom: 1px solid var(--warm-200);
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 1;
  text-align: right;
}
.seo-panel__close:hover {
  color: var(--primary);
}
/* Content body */
.seo-panel__body {
  padding: 1.5rem 1.25rem 3rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-light);
}
.seo-panel__body h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.seo-panel__body h3 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--text);
  margin: 1.5rem 0 0.4rem;
}
.seo-panel__body p {
  margin: 0 0 0.75rem;
}
.seo-panel__body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Overlay behind drawer */
.seo-panel__overlay {
  display: none;
}
.seo-panel.is-open .seo-panel__overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: -1;
}
/* Hide on very small screens (< 360px) – too narrow */
@media (max-width: 359px) {
  .seo-panel { display: none; }
}

/* ═══════════════════════════════════════════════
   SERVICE HERO CARDS (large, 3-column intro)
═══════════════════════════════════════════════ */
.service-hero-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .service-hero-grid { grid-template-columns: repeat(3, 1fr); } }

.service-hero-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}
@media (min-width: 768px) {
  .service-hero-card { aspect-ratio: 2/3; }
}

.service-hero-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-hero-card:hover .service-hero-card__img {
  transform: scale(1.05);
}

.service-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
}

.service-hero-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.5rem;
}

.service-hero-card__title {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.375rem;
}

.service-hero-card__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.service-hero-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: gap 0.2s var(--ease);
}
.service-hero-card:hover .service-hero-card__arrow {
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════════
   PRICE LIST
═══════════════════════════════════════════════ */
.price-section {
  scroll-margin-top: 5rem;
}

.price-list {
  max-width: 36rem;
}

.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--warm-300);
}

.price-list__name {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9375rem;
}

.price-list__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

.price-list__dots {
  flex: 1;
  border-bottom: 1px dotted var(--warm-400);
  margin: 0 0.5rem;
  min-width: 2rem;
  align-self: end;
  margin-bottom: 0.375rem;
}

.price-list__price {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  font-size: 0.9375rem;
}

.price-list__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   PLANITY BOOKING WIDGET
═══════════════════════════════════════════════ */
/* ─── Booking Modal ─────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-modal__panel {
  position: relative;
  width: 100%;
  max-width: 52rem;
  max-height: 85vh;
  background: var(--white);
  border-radius: 1.25rem 1.25rem 0.75rem 0.75rem;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(2rem);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}

.booking-modal.is-open .booking-modal__panel {
  transform: translateY(0);
}

.booking-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--warm-300);
  flex-shrink: 0;
}

.booking-modal__title {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.booking-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: var(--warm-200);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  flex-shrink: 0;
}

.booking-modal__close:hover {
  background: var(--warm-300);
  transform: scale(1.05);
}

.booking-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.booking-modal__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem;
}

.booking-modal__body::-webkit-scrollbar {
  width: 6px;
}

.booking-modal__body::-webkit-scrollbar-track {
  background: transparent;
}

.booking-modal__body::-webkit-scrollbar-thumb {
  background: var(--warm-400);
  border-radius: 3px;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .booking-modal {
    align-items: center;
    padding: 2rem;
  }

  .booking-modal__panel {
    border-radius: 1.25rem;
    max-height: 88vh;
  }

  .booking-modal__header {
    padding: 1.5rem 2rem;
  }

  .booking-modal__body {
    padding: 1rem;
  }
}

/* ─── Booking CTA (inline section) ──────── */
.booking-cta {
  text-align: center;
  scroll-margin-top: 5rem;
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
