/* ====================================================================
   Praxis Logo Freiburg — Andorfer
   Warm sage healthcare aesthetic
   ==================================================================== */

:root {
  --bg: #fbfaf7;
  --bg-soft: #f5f1ea;
  --bg-card: #ffffff;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --ink-muted: #6b7280;
  --sage: #7ba098;
  --sage-deep: #5b8175;
  --sage-soft: #d4e2dd;
  --peach: #e8d5c4;
  --peach-deep: #c97b5a;
  --line: #e7e2d8;
  --line-strong: #c9c2b3;

  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);

  --density: 1;
}

[data-density="compact"] { --density: 0.78; }
[data-density="airy"] { --density: 1.2; }

[data-palette="cream"] {
  --bg: #fff8f0;
  --bg-soft: #fbeed8;
  --sage: #e8a87c;
  --sage-deep: #c97b5a;
  --sage-soft: #f7d9be;
  --peach: #41436a;
  --peach-deep: #2d2f4c;
}

[data-palette="forest"] {
  --bg: #f0ede6;
  --bg-soft: #e3ddcf;
  --sage: #5b8a72;
  --sage-deep: #3f6650;
  --sage-soft: #c8d8c9;
  --peach: #d4a574;
  --peach-deep: #a07344;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Type scale */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.05;
  text-wrap: balance;
}

h1 { font-size: clamp(44px, 6.5vw, 92px); }
h2 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
h4 { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.25; }

p { color: var(--ink-soft); text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

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

/* Layout helpers */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section {
  padding: calc(120px * var(--density)) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  margin-bottom: calc(72px * var(--density));
  align-items: end;
}

@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  section { padding: 72px 0; }
}

.section-head .lead { max-width: 56ch; font-size: 18px; }
.section-head h2 { margin-top: 16px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--sage-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-soft); }

.btn-sage {
  background: var(--sage);
  color: var(--bg);
}
.btn-sage:hover { background: var(--sage-deep); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--sage-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.btn-arrow:hover { gap: 12px; }

/* Image placeholder */
.placeholder {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--sage-soft) 0 12px,
      var(--bg-soft) 12px 24px);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.placeholder::after {
  content: attr(data-label);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* Card */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: var(--line-strong); }

/* Sticky nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.2s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-logo .mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
  flex-shrink: 0;
}
.nav-logo .mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bg);
}
.nav-logo .mark::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-deep);
  top: 12px; left: 12px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* Hero */
.hero {
  padding-top: 140px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px 16px 8px 8px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}
.hero h1 .accent {
  font-style: italic;
  color: var(--sage-deep);
  font-family: var(--font-display);
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  margin-top: 32px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-meta-item .label {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-visual .placeholder { width: 100%; height: 100%; border-radius: var(--radius-xl); }

.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.18);
}
.floating-card .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-weight: 600;
  flex-shrink: 0;
}
.floating-card-1 {
  bottom: 32px;
  left: -32px;
  animation: float 6s ease-in-out infinite;
}
.floating-card-2 {
  top: 80px;
  right: -24px;
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 980px) {
  .floating-card-1 { left: 0; }
  .floating-card-2 { right: 0; }
}

/* About */
.about {
  background: var(--bg-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
}
.about-body p { font-size: 17px; margin-top: 20px; }
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  border-left: 3px solid var(--sage);
  padding-left: 24px;
  margin: 32px 0;
  letter-spacing: -0.01em;
}
.about-creds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.cred {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cred .y {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sage-deep);
  letter-spacing: 0.04em;
}
.cred .t {
  font-family: var(--font-display);
  font-size: 17px;
  margin-top: 4px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service {
  background: var(--bg-card);
  padding: 36px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
}
.service:hover { background: var(--bg-soft); }
.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--sage-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 24px;
}
.service h3 { margin-top: 24px; }
.service-summary {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 15px;
}
.service-expand {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.service-chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s ease;
}
.service.open .service-chev { transform: rotate(180deg); background: var(--sage-soft); }
.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  margin-top: 0;
}
.service-detail-inner {
  overflow: hidden;
  font-size: 14px;
  color: var(--ink-soft);
}
.service.open .service-detail { grid-template-rows: 1fr; margin-top: 20px; }
.service-detail ul { list-style: none; padding: 0; margin-top: 8px; }
.service-detail li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-detail li::before {
  content: "—";
  color: var(--sage);
  flex-shrink: 0;
}
.service-detail li:last-child { border-bottom: none; }

/* Process */
.process { background: var(--ink); color: var(--bg); }
.process h2, .process h3 { color: var(--bg); }
.process p { color: rgba(251, 250, 247, 0.72); }
.process .eyebrow { color: var(--sage-soft); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(251, 250, 247, 0.15);
}
@media (max-width: 880px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding-top: 64px;
}
.step-num {
  position: absolute;
  top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  z-index: 1;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.5; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.team-member { }
.team-photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}
.team-member:hover .team-photo { transform: translateY(-4px); }
.team-name { font-family: var(--font-display); font-size: 22px; }
.team-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sage-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.team-tags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg-soft);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Testimonials */
.testimonials { background: var(--sage-soft); }
.testimonials h2 { color: var(--ink); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
  letter-spacing: -0.01em;
}
.testimonial-quote::before {
  content: "„";
  font-size: 48px;
  color: var(--sage);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
}
.testimonial-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
}
.testimonial-name { font-weight: 500; font-size: 14px; }
.testimonial-rel { font-size: 12px; color: var(--ink-muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 80px; }
}
.gallery-item {
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; grid-row: span 2; }
.g3 { grid-column: span 3; grid-row: span 1; }
.g4 { grid-column: span 3; grid-row: span 1; }
.g5 { grid-column: span 4; grid-row: span 2; }
.g6 { grid-column: span 4; grid-row: span 2; }
.g7 { grid-column: span 4; grid-row: span 2; }

/* Pricing */
.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
}
@media (max-width: 880px) {
  .pricing-row { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured h3, .price-card.featured .price-amount { color: var(--bg); }
.price-card.featured .price-detail { color: rgba(251, 250, 247, 0.7); }
.price-card.featured .price-feat { border-color: rgba(251, 250, 247, 0.15); }
.price-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  border-radius: 999px;
  display: inline-block;
}
.price-card.featured .price-tag { background: var(--sage); color: var(--ink); }
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.02em;
  margin: 16px 0 4px;
}
.price-amount .period { font-size: 16px; color: var(--ink-muted); font-family: var(--font-body); }
.price-card.featured .price-amount .period { color: rgba(251, 250, 247, 0.6); }
.price-detail { font-size: 14px; color: var(--ink-soft); }
.price-feats { margin-top: 28px; }
.price-feat {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 10px;
  font-size: 14px;
}
.price-feat:last-child { border-bottom: none; }
.price-feat .check {
  color: var(--sage-deep);
  flex-shrink: 0;
}
.price-card.featured .price-feat .check { color: var(--sage-soft); }

.insurance-strip {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.insurance-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.ins-logo {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink-muted);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  letter-spacing: -0.01em;
}

/* Location / Map */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; }
}
.location-info {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.info-row { }
.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 6px;
}
.info-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}
.hours-day { color: var(--ink-muted); }
.hours-time { color: var(--ink); font-variant-numeric: tabular-nums; }

.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 480px;
}
.map svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin .pin-bubble {
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
}
.map-pin .pin-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.map-pin .pin-dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.25;
  animation: pulse 2.4s ease-in-out infinite;
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--sage-deep); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-a-inner { overflow: hidden; padding: 0 0 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a-inner { padding: 0 56px 24px 0; }
.faq-a p { font-size: 16px; line-height: 1.6; }

/* Booking */
.booking { background: var(--bg-soft); }
.booking-shell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 700px) { .booking-shell { padding: 28px; } }
.booking-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}
.bp-step {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  transition: background 0.3s ease;
}
.bp-step.active { background: var(--sage); }
.bp-step.done { background: var(--sage-deep); }
.booking-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  margin-bottom: 8px;
}
.booking-step-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.booking-step-desc { color: var(--ink-soft); margin-bottom: 32px; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.choice {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.choice:hover { border-color: var(--sage); }
.choice.selected {
  border-color: var(--sage-deep);
  background: var(--sage-soft);
}
.choice-title { font-family: var(--font-display); font-size: 18px; }
.choice-sub { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.date-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 14px;
  position: relative;
}
.date-cell .dow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.date-cell .day { font-family: var(--font-display); font-size: 18px; margin-top: 2px; }
.date-cell:hover:not(.disabled) { border-color: var(--sage); background: var(--sage-soft); }
.date-cell.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.date-cell.selected .dow,
.date-cell.selected .day { color: var(--bg); }
.date-cell.disabled { opacity: 0.35; cursor: not-allowed; }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.time-cell {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  transition: all 0.15s ease;
}
.time-cell:hover { border-color: var(--sage); }
.time-cell.selected {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.field {
  display: block;
  margin-bottom: 18px;
}
.field-label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-weight: 500;
}
.field-input, .field-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field-input:focus, .field-textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 3px var(--sage-soft);
}
.field-textarea { resize: vertical; min-height: 120px; }
.field-error {
  font-size: 12px;
  color: #b54545;
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.field.invalid .field-input,
.field.invalid .field-textarea {
  border-color: #b54545;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

.booking-summary {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k { color: var(--ink-muted); }
.summary-row .v { color: var(--ink); font-weight: 500; }

.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  gap: 12px;
}

.booking-success {
  text-align: center;
  padding: 24px 0;
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--sage-soft);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-size: 32px;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
.contact-side { }
.contact-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-row .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-deep);
}
.contact-row .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-row .val {
  font-family: var(--font-display);
  font-size: 18px;
  margin-top: 2px;
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(251, 250, 247, 0.7);
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--bg); }
.footer-brand p {
  margin-top: 16px;
  color: rgba(251, 250, 247, 0.6);
  font-size: 14px;
  max-width: 36ch;
}
.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 250, 247, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(251, 250, 247, 0.5);
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Hero waveform animation */
.waveform {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 60px;
  display: flex;
  align-items: end;
  gap: 4px;
  pointer-events: none;
  opacity: 0.7;
}
.waveform .bar {
  flex: 1;
  background: var(--bg);
  border-radius: 2px;
  animation: wave 1.6s ease-in-out infinite;
  min-height: 4px;
}
@keyframes wave {
  0%, 100% { height: 8px; }
  50% { height: var(--h, 30px); }
}

/* Animated entrance */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* Misc */
.divider-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.divider-mono::before, .divider-mono::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
