/* FysioDanmark Asnæs — rework */

:root {
  --green-900: #203b12;
  --green-800: #4f8f2d;
  --green-700: #71bf44;   /* primary, from current asnaesfysioterapi.dk */
  --green-600: #8bc34a;
  --green-500: #a0ce4e;
  --green-100: #eaf5dc;
  --green-50:  #f6fbef;
  --green-700-rgb: 113, 191, 68;
  --green-500-rgb: 160, 206, 78;

  --bg:        #f7f5f0;
  --bg-alt:    #efece4;
  --paper:    #ffffff;
  --ink-900:   #0f1a14;
  --ink-700:   #2a3630;
  --ink-500:   #5a665f;
  --ink-400:   #7c877f;
  --ink-300:   #a5ada6;
  --line:      rgba(15,26,20,0.10);
  --line-strong: rgba(15,26,20,0.18);

  --serif: "Fraunces", "Noe Display", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;
}

/* Reset-ish inside artboards */
.fd, .fd *, .fd *::before, .fd *::after { box-sizing: border-box; }
.fd {
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
.fd h1, .fd h2, .fd h3, .fd h4, .fd p, .fd ul, .fd ol, .fd figure { margin: 0; padding: 0; }
.fd ul, .fd ol { list-style: none; }
.fd a { color: inherit; text-decoration: none; }
.fd button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
.fd img, .fd svg { display: block; max-width: 100%; }

/* ——— type ——— */
.fd .display {
  font-family: var(--serif);
  font-weight: var(--display-weight, 300);
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.fd .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}
.fd .eyebrow.muted { color: var(--ink-500); }
.fd .mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-500);
}

/* ——— textures / backgrounds ——— */
.fd .grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* organic blob — pure CSS */
.fd .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

/* ——— buttons ——— */
.fd .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.fd .btn.primary { background: var(--green-700); color: var(--ink-900); }
.fd .btn.primary:hover { background: var(--green-500); transform: translateY(-1px); }
.fd .btn.primary .arr { transition: transform 200ms ease; }
.fd .btn.primary:hover .arr { transform: translateX(3px); }
.fd .btn.ghost { border: 1px solid var(--line-strong); color: var(--ink-900); }
.fd .btn.ghost:hover { background: var(--ink-900); color: var(--bg); border-color: var(--ink-900); }
.fd .btn.small { padding: 10px 16px; font-size: 13px; }

/* ——— inputs ——— */
.fd .input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  outline: none;
  transition: border-color 160ms ease;
}
.fd .input:focus { border-color: var(--green-700); }
.fd .input::placeholder { color: var(--ink-400); }
.fd .input.message-input {
  resize: none;
  padding-top: 14px;
}
.fd .honeypot {
  position: absolute;
  left: -9999px;
}

/* ——— link w/ arrow ——— */
.fd .link-arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  font-weight: 500;
}
.fd .link-arr .arr { transition: transform 200ms ease; }
.fd .link-arr:hover .arr { transform: translateX(4px); }

/* ——— placeholder imagery ——— */
.fd .ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(var(--green-700-rgb),0.08) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.fd .ph.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0 1px,
      transparent 1px 14px
    ),
    linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--green-100);
}

/* ——— utilities used by screens ——— */
.fd .rule { height: 1px; background: var(--line); width: 100%; }
.fd .rule.strong { background: var(--line-strong); }
.fd .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--green-100);
  font-size: 12px;
  color: var(--green-700);
  background: var(--green-50);
}
.fd .chip.muted {
  color: var(--ink-500);
  background: var(--bg-alt);
  border-color: var(--line-strong);
}
.fd .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-700); display: inline-block; }
.fd .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 0 rgba(var(--green-700-rgb),0.45);
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--green-700-rgb),0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(var(--green-700-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--green-700-rgb),0); }
}

/* ——— service card hover (was inline JS in prototype) ——— */
.fd .service-card { transition: background 200ms ease; }
.fd .service-card:hover { background: var(--bg-alt); }

/* ——— skip-link (keyboard a11y) ——— */
.fd .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 18px;
  background: var(--ink-900);
  color: var(--bg);
  font-weight: 500;
  z-index: 1000;
  border-radius: 2px;
}
.fd .skip-link:focus {
  left: 16px;
  top: 16px;
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

/* ——— focus-visible ring on all interactive controls ——— */
.fd a:focus-visible,
.fd button:focus-visible,
.fd input:focus-visible,
.fd textarea:focus-visible,
.fd select:focus-visible,
.fd summary:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
  border-radius: 2px;
}
/* inputs already signal focus via border-color; suppress the outer ring there */
.fd .input:focus-visible { outline: none; }

/* ——— screen-reader only (visually hidden, accessible) ——— */
.fd .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;
}

/* ——— form states ——— */
.fd .form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid var(--green-700);
  border-radius: 10px;
  color: var(--ink-900);
  animation: fd-form-success-in 0.4s ease-out;
}
.fd .form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-700);
  color: #ffffff;
}
.fd .form-success h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: var(--green-700);
}
.fd .form-success p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-500);
}
@keyframes fd-form-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fd .form-error { color: #9a2a2a; font-size: 13px; min-height: 20px; }

/* ——— cookie consent ——— */
.fd .cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 18px 18px 22px;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(15,26,20,0.18);
  backdrop-filter: blur(16px);
}
.fd .cookie-banner[hidden] {
  display: none;
}
.fd .cookie-banner-title {
  margin-bottom: 4px;
  font-weight: 650;
  color: var(--ink-900);
}
.fd .cookie-banner-copy p:last-child {
  max-width: 680px;
  color: var(--ink-500);
  font-size: 13px;
  line-height: 1.5;
}
.fd .cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

/* ═══════════════════════════════════════════
   SHARED PAGE LAYOUT
   ═══════════════════════════════════════════ */
.fd .page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 32px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.fd .page-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 390px;
  height: 390px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(var(--green-700-rgb),0.18), transparent 66%);
  border-radius: 999px;
}
.fd .page-hero-inner,
.fd .page-section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.fd .kicker {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.fd .page-hero-title,
.fd .section-title,
.fd .card-title {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink-900);
}
.fd .page-hero-title {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: 54px;
}
.fd .page-hero-title em,
.fd .section-title em {
  font-style: normal;
  color: var(--green-700);
}
.fd .page-lede {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-700);
}
.fd .page-section {
  padding: 96px 32px;
  background: var(--bg);
}
.fd .page-section.alt {
  max-width: none;
  background: #f1f5e7;
}
.fd .page-section.compact {
  padding-top: 68px;
  padding-bottom: 76px;
}
.fd .section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.fd .section-head.between {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.fd .section-title {
  margin-bottom: 20px;
  font-size: 38px;
}
.fd .section-copy {
  display: grid;
  gap: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
}
.fd .content-bullet-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding-left: 1.1em;
  list-style: disc;
}
.fd .content-bullet-list li {
  padding-left: 4px;
}
.fd .content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.fd .content-split.wide-left {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: start;
}
.fd .content-split.text-heavy {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}
.fd .media-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(15,26,20,0.10);
}
.fd .media-card.tall { min-height: 520px; }
.fd .media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.fd .content-placeholder-media {
  position: sticky;
  top: 112px;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0)),
    radial-gradient(circle at 25% 20%, rgba(var(--green-700-rgb),0.22), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(var(--green-500-rgb),0.26), transparent 30%),
    repeating-linear-gradient(135deg, rgba(15,26,20,0.055) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #eef4e8, #dfe9d7);
  box-shadow: 0 20px 52px rgba(15,26,20,0.10);
}
.fd .content-placeholder-media::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 20%;
  height: 42%;
  border: 2px solid rgba(32,59,18,0.16);
  border-radius: 999px 999px 26px 26px;
}
.fd .content-placeholder-media::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 22%;
  height: 16%;
  border-top: 12px solid rgba(var(--green-700-rgb),0.28);
  border-bottom: 12px solid rgba(var(--green-700-rgb),0.18);
  border-radius: 999px;
}
.fd .content-placeholder-media span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  backdrop-filter: blur(12px);
}
.fd .media-card-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.fd .media-card-caption h3 {
  margin-bottom: 6px;
  font-size: 23px;
}
.fd .media-card-caption p {
  color: var(--ink-700);
}
.fd .info-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}
.fd .info-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  font-size: 14.5px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--line);
}
.fd .compact-list {
  margin-top: 0;
}
.fd .compact-list li:first-child {
  padding-top: 0;
}
.fd .overview-grid a {
  color: inherit;
}
.fd .overview-card {
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.fd .overview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--green-700-rgb),0.28);
  box-shadow: 0 16px 34px rgba(15,26,20,0.08);
}
.fd .overview-card .link-arr {
  margin-top: auto;
}
.fd .feature-grid,
.fd .team-directory-grid,
.fd .class-grid,
.fd .stat-grid {
  display: grid;
  gap: 24px;
}
.fd .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fd .team-directory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fd .class-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fd .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fd .feature-card,
.fd .profile-card,
.fd .class-card,
.fd .process-card,
.fd .stat-card,
.fd .notice-panel,
.fd .booking-panel {
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15,26,20,0.04);
}
.fd .feature-card {
  min-height: 220px;
  padding: 30px;
}
.fd .feature-card .mono,
.fd .process-card .mono,
.fd .stat-card .mono {
  margin-bottom: 14px;
}
.fd .feature-card h3,
.fd .class-card h3,
.fd .process-card h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}
.fd .feature-card p,
.fd .class-card p,
.fd .process-card p,
.fd .notice-panel p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--ink-700);
}
.fd .process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.fd .process-card {
  padding: 22px;
}
.fd .condition-list,
.fd .value-list,
.fd .faq-list {
  display: grid;
}
.fd .condition-row,
.fd .value-row,
.fd .faq-list details {
  border-top: 1px solid var(--line-strong);
}
.fd .condition-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 24px 0;
}
.fd .condition-row h3,
.fd .value-row h3,
.fd .faq-list h3 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.24;
}
.fd .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--ink-700);
  font-size: 14px;
}
.fd .cta-band {
  padding: 82px 32px;
  color: var(--ink-900);
  background: var(--green-700);
}
.fd .cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.fd .cta-band .kicker { color: var(--green-900); }
.fd .cta-band h2 {
  margin: 0;
  max-width: 760px;
  color: var(--ink-900);
  font-size: 48px;
}
.fd .cta-band .btn {
  background: var(--ink-900);
  color: #f7f5f0;
}
.fd .dark-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  color: #e4ede6;
  background: var(--green-900);
  border-radius: 8px;
}
.fd .dark-panel > * {
  position: relative;
  z-index: 1;
}
.fd .dark-panel h3 {
  margin-bottom: 12px;
  color: #f7f5f0;
  font-size: 30px;
}
.fd .dark-panel p,
.fd .dark-panel li {
  color: #cdd3ce;
}
.fd .side-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}
.fd .sticky-side {
  position: sticky;
  top: 104px;
}
.fd .notice-panel {
  padding: 26px;
  background: var(--bg-alt);
}
.fd .class-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--bg);
}
.fd .class-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.fd .class-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-700);
}
.fd .class-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.fd .schedule-matrix-wrap {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15,26,20,0.04);
  overflow-x: auto;
}
.fd .schedule-matrix {
  display: grid;
  grid-template-columns: 84px repeat(5, minmax(140px, 1fr));
  gap: 10px;
  align-items: stretch;
  min-width: 760px;
}
.fd .schedule-corner,
.fd .schedule-head,
.fd .schedule-time {
  display: flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.fd .schedule-head {
  justify-content: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--ink-700);
}
.fd .schedule-corner {
  justify-content: flex-end;
  padding-right: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 11.5px;
  text-transform: uppercase;
  color: var(--ink-500);
}
.fd .schedule-time {
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 12px;
  color: var(--green-700);
  text-transform: uppercase;
}
.fd .schedule-cell-empty {
  min-height: 70px;
  border-radius: 6px;
  background: rgba(15,26,20,0.025);
}
.fd .schedule-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-800);
  background: rgba(var(--green-700-rgb),0.12);
  border-radius: 999px;
}
.fd .schedule-item {
  --class-bg: var(--green-50);
  --class-border: rgba(var(--green-700-rgb),0.22);
  --class-text: var(--green-800);
  width: 100%;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px 12px;
  text-align: left;
  color: var(--class-text);
  background: var(--class-bg);
  border: 1px solid var(--class-border);
  border-radius: 6px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.fd .schedule-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15,26,20,0.07);
}
.fd .schedule-item strong {
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--class-text);
}
.fd .schedule-item small {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--class-text);
  opacity: .82;
}
.fd .schedule-stack {
  display: none;
  gap: 14px;
}
.fd .schedule-day-card {
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15,26,20,0.04);
}
.fd .schedule-day-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.2;
}
.fd .schedule-day-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fd .schedule-day-list li {
  margin: 0;
}
.fd .schedule-day-item {
  --class-bg: var(--green-50);
  --class-border: rgba(var(--green-700-rgb),0.22);
  --class-text: var(--green-800);
  width: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-align: left;
  color: var(--class-text);
  background: var(--class-bg);
  border: 1px solid var(--class-border);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.fd .schedule-day-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15,26,20,0.07);
}
.fd .schedule-day-time {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--green-700);
  text-transform: uppercase;
}
.fd .schedule-day-text {
  display: grid;
  gap: 2px;
}
.fd .schedule-day-text strong {
  font-size: 13.5px;
  line-height: 1.3;
  color: var(--class-text);
}
.fd .schedule-day-text small {
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--class-text);
  opacity: .82;
}
.fd .schedule-day-empty {
  color: var(--ink-500);
  font-size: 13px;
}
.fd .stat-card {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fd .stat-number {
  font-family: var(--sans);
  font-size: 62px;
  font-weight: 800;
  line-height: 0.95;
  color: var(--green-700);
}
.fd .stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-500);
}
.fd .glad-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-self: center;
}
.fd .glad-hero-section {
  padding-top: 66px;
  padding-bottom: 68px;
}
.fd .glad-hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 42px;
}
.fd .glad-stat-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "index label"
    "value label";
  column-gap: 10px;
  row-gap: 4px;
  align-items: center;
  padding: 14px 13px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15,26,20,0.04);
}
.fd .glad-stat-card .mono {
  grid-area: index;
  margin: 0;
  font-size: 10px;
}
.fd .glad-stat-card strong {
  grid-area: value;
  font-size: 26px;
  line-height: 1;
  color: var(--green-700);
  overflow-wrap: anywhere;
}
.fd .glad-stat-card > span:last-child {
  grid-area: label;
  align-self: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-700);
}
.fd .glad-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}
.fd .glad-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 12px;
  background: rgba(var(--green-700-rgb),0.08);
  border: 1px solid rgba(var(--green-700-rgb),0.14);
  border-radius: 8px;
}
.fd .glad-benefit-item span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--green-900);
  background: var(--green-500);
  border-radius: 999px;
}
.fd .glad-benefit-item strong {
  font-size: 13.5px;
  line-height: 1.25;
  color: var(--ink-900);
}
.fd .class-modal[hidden] {
  display: none;
}
.fd .class-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
}
.fd .class-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,26,20,0.62);
}
.fd .class-modal-panel {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  max-height: min(720px, calc(100vh - 56px));
  overflow: hidden;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}
.fd .class-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink-900);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.fd .class-modal-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background: linear-gradient(135deg, var(--green-50), var(--bg-alt));
  font-size: 46px;
  font-weight: 800;
}
.fd .class-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fd .class-modal-media.avatar-stack-mode {
  padding: 34px;
}
.fd .class-modal-avatar-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fd .class-modal-avatar {
  display: grid;
  place-items: center;
  width: clamp(76px, 8vw, 118px);
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--green-800);
  background: #fff;
  border: 3px solid rgba(var(--green-700-rgb),0.18);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(15,26,20,0.1);
  font-size: clamp(23px, 2.8vw, 34px);
  font-weight: 800;
}
.fd .class-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fd .class-modal-media.single-avatar-mode .class-modal-avatar {
  width: clamp(118px, 13vw, 168px);
  font-size: clamp(34px, 4vw, 50px);
}
.fd .class-modal-content {
  padding: 44px;
  overflow-y: auto;
}
.fd .class-modal-content .section-title {
  margin-bottom: 24px;
  font-size: 36px;
}
.fd .class-modal-facts {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}
.fd .class-modal-facts div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.fd .class-modal-facts dt {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.fd .class-modal-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
}
.fd .class-modal-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}
body.class-modal-open {
  overflow: hidden;
}
.fd .metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.fd .section-copy + .metric-strip {
  margin-top: 28px;
}
.fd .metric-number {
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 800;
  color: var(--green-700);
}
.fd .timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  border: 1px solid var(--line);
}
.fd .timeline-item {
  padding: 22px 18px 26px;
  background: var(--bg);
}
.fd .timeline-item:nth-child(even) {
  background: var(--bg-alt);
}
.fd .timeline-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
.fd .timeline-item p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-500);
}
.fd .faq-list details {
  padding: 26px 0;
}
.fd .faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
}
.fd .faq-list summary::-webkit-details-marker { display: none; }
.fd .faq-list p {
  max-width: 760px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}
.fd .price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  max-width: 880px;
}
.fd .price-table {
  width: 100%;
  border-collapse: collapse;
}
.fd .price-table th {
  padding: 0 0 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  border-bottom: 1px solid var(--line-strong);
}
.fd .price-table th:not(:first-child) {
  text-align: right;
}
.fd .price-table tr {
  border-bottom: 1px solid var(--line);
}
.fd .price-table td {
  padding: 22px 0;
  vertical-align: top;
}
.fd .price-name {
  font-size: 16px;
  font-weight: 700;
}
.fd .price-note {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.fd .price-amount {
  text-align: right;
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 800;
  color: var(--ink-900);
  white-space: nowrap;
}
.fd .price-matrix .price-amount {
  font-size: 19px;
}
.fd .small-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--ink-500);
}
.fd .price-subhead {
  margin-top: 56px;
}
.fd .text-center { text-align: center; }
.fd .action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.fd .profile-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.fd .profile-card-button {
  width: 100%;
  display: grid;
  padding: 0;
  color: inherit;
  text-align: left;
}
.fd .profile-photo-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.fd .profile-card:has(.profile-open-button:hover) .profile-photo,
.fd .profile-card:has(.profile-open-button:focus-visible) .profile-photo,
.fd .profile-card:has(.profile-photo-button:hover) .profile-photo,
.fd .profile-card:has(.profile-photo-button:focus-visible) .profile-photo {
  border-color: rgba(var(--green-700-rgb),0.42);
  transform: translateY(-2px);
}
.fd .profile-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  object-fit: cover;
  color: var(--green-700);
  background: linear-gradient(135deg, var(--green-50), var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 160ms ease, transform 160ms ease;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
}
.fd .profile-card-body {
  padding-top: 16px;
}
.fd .profile-card h3 {
  font-size: 21px;
}
.fd .profile-role {
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--ink-500);
}
.fd .profile-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-700);
}
.fd .profile-card-expanded {
  display: flex;
  flex-direction: column;
}
.fd .profile-card-expanded .profile-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fd .profile-detail-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-700);
}
.fd .profile-detail-list li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.fd .profile-card-expanded .profile-meta {
  margin-top: auto;
}
.fd .profile-open-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-800);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.fd .profile-open-button:hover,
.fd .profile-open-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fd .employee-modal[hidden] {
  display: none;
}
.fd .employee-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 28px;
}
.fd .employee-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,26,20,0.62);
}
.fd .employee-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: flex;
  align-items: stretch;
  max-height: min(760px, calc(100vh - 56px));
  overflow: hidden;
  background: var(--bg);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}
.fd .employee-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink-900);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.fd .employee-modal-media {
  flex: 0 0 34%;
  min-width: 240px;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--green-700);
  background: linear-gradient(135deg, var(--green-50), var(--bg-alt));
  font-size: 48px;
  font-weight: 800;
}
.fd .employee-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fd .employee-modal-content {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  padding: 46px 52px 38px 40px;
  overflow-x: hidden;
  overflow-y: auto;
}
.fd .employee-modal-content .section-title {
  margin-bottom: 22px;
  font-size: 34px;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}
.fd .employee-modal-description {
  display: grid;
  gap: 14px;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.65;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  text-wrap: pretty;
  white-space: normal;
}
.fd .employee-modal-description p,
.fd .employee-modal-description li {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: manual;
  white-space: normal;
}
.fd .employee-modal-description ul,
.fd .employee-modal-description ol {
  padding-left: 1.4em;
}
.fd .employee-modal-description ul {
  list-style: disc;
}
.fd .employee-modal-description ol {
  list-style: decimal;
}
.fd .employee-modal-description li {
  margin-bottom: 7px;
}
.fd .employee-modal-description li:last-child {
  margin-bottom: 0;
}
.fd .employee-modal-description a {
  color: var(--green-800);
  font-weight: 800;
}
html.employee-modal-open,
body.employee-modal-open {
  overflow: hidden;
}
.fd .value-row {
  display: grid;
  grid-template-columns: 60px 180px 1fr;
  gap: 24px;
  padding: 28px 0;
}
.fd .value-row p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-700);
}
.fd .booking-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 44px;
  text-align: center;
  background: var(--bg-alt);
}
.fd .booking-page-layout {
  align-items: start;
}
.fd .booking-page-layout .booking-panel {
  margin: 0;
}
.fd .booking-panel h2 {
  margin-bottom: 18px;
  font-size: 40px;
}
.fd .booking-panel p {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}
.fd .booking-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.fd .booking-note {
  margin-top: 28px;
}
.fd .booking-frame {
  width: 100%;
  min-height: 900px;
  border: 0;
  border-radius: 8px;
}
.fd .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 72px;
  align-items: start;
}
.fd .contact-title {
  margin-bottom: 36px;
  font-size: 76px;
}
.fd .contact-title em {
  display: block;
}
.fd .contact-list {
  display: grid;
  gap: 0;
  max-width: 500px;
}
.fd .contact-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-strong);
}
.fd .contact-label {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.fd .contact-value {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}
.fd a.contact-value:hover,
.fd .map-address-link:hover,
.fd .home-location-media a:hover {
  color: var(--green-700);
}
.fd .social-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.fd .social-link-row a {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-900);
}
.fd .social-link-row a:hover {
  color: var(--green-700);
}
.fd .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.fd .hours-row + .hours-row {
  margin-top: 8px;
  color: var(--ink-500);
}
.fd .contact-form-panel {
  padding: 38px;
  background: var(--bg-alt);
  border-radius: 8px;
}
.fd .contact-form-panel h2 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.2;
}
.fd .contact-form-panel p {
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-500);
}
.fd .contact-form-panel .form-error {
  margin-top: 16px;
}
.fd .contact-form-panel .form-success p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-500);
}
.fd .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.fd .map-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #dfe3dc;
  border-radius: 8px;
}
.fd .map-card svg,
.fd .map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.fd .map-callout {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 310px;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.fd .map-callout h3 {
  margin-bottom: 4px;
  font-size: 21px;
}
.fd .map-callout p {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink-500);
}
.fd .dark-panel .kicker {
  color: var(--green-500);
}
.fd .dark-panel .info-list li {
  border-bottom-color: rgba(255,255,255,0.10);
}
.fd .dark-panel .dot {
  background: var(--green-500);
}

/* ═══════════════════════════════════════════
   SITE SHELL
   ═══════════════════════════════════════════ */
.fd .site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 0 48px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,26,20,0.08);
  box-shadow: 0 12px 32px rgba(15,26,20,0.06);
  backdrop-filter: blur(12px);
}
.fd .site-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}
.fd .site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-700);
  min-width: max-content;
}
.fd .site-brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
}
.fd .nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.fd .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.fd .nav-desktop a,
.fd .nav-parent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-500);
  transition: color 160ms ease;
}
.fd .nav-desktop a:hover,
.fd .nav-desktop a.active,
.fd .nav-parent:hover,
.fd .nav-parent.active {
  color: var(--green-700);
}
.fd .nav-parent svg {
  width: 11px;
  height: 11px;
  color: currentColor;
}
.fd .nav-desktop a.active::after,
.fd .nav-parent.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--green-700);
  border-radius: 999px;
}
.fd .nav-submenu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 280px;
  max-height: min(70vh, 620px);
  overflow-y: auto;
  padding: 10px;
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(15,26,20,0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 150ms ease, transform 150ms ease;
}
.fd .nav-item.has-submenu::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}
.fd .nav-item:hover .nav-submenu,
.fd .nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.fd .nav-submenu a {
  display: block;
  padding: 10px 11px;
  color: var(--ink-700);
  border-radius: 6px;
}
.fd .nav-submenu a:hover,
.fd .nav-submenu a:focus-visible,
.fd .nav-submenu a.active {
  color: var(--green-800);
  background: rgba(var(--green-700-rgb),0.10);
}
.fd .header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fd .header-social span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.fd .header-social a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink-700);
  background: rgba(var(--green-700-rgb),0.10);
  border: 1px solid rgba(var(--green-700-rgb),0.16);
  border-radius: 999px;
}
.fd .header-social a:hover {
  color: var(--green-800);
  background: rgba(var(--green-700-rgb),0.16);
}
.fd .header-cta,
.fd .header-phone {
  display: inline-flex;
  align-items: center;
}
.fd .header-cta {
  align-items: center;
  gap: 14px;
}
.fd .header-contact-stack {
  display: grid;
  justify-items: center;
  gap: 5px;
}
.fd .header-cta .btn {
  min-width: 112px;
}
.fd .header-phone {
  gap: 6px;
  color: var(--ink-700);
  font-size: 13px;
  white-space: nowrap;
}

.fd .site-footer {
  background: var(--ink-900);
  color: #cdd3ce;
  padding: 64px 48px 28px;
}
.fd .site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.fd .site-footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
}
.fd .site-footer-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
  background: rgba(255,255,255,0.94);
  padding: 6px 10px;
  border-radius: 6px;
}
.fd .site-footer-text {
  font-size: 13px;
  line-height: 1.6;
  max-width: 300px;
  color: #9aa39d;
}
.fd .site-footer-cta {
  margin-top: 24px;
  background: var(--green-800);
}
.fd .site-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.fd .site-footer-social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #f7f5f0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
}
.fd .site-footer-social a:hover {
  color: var(--green-500);
  background: rgba(255,255,255,0.12);
}
.fd .site-footer-ddkm-logo {
  display: block;
  width: auto;
  height: 60px;
  margin-top: 16px;
  padding: 6px 8px;
  background: #fff;
  border-radius: 6px;
}
.fd .footer-label {
  margin-bottom: 14px;
  color: #7a847d;
}
.fd .footer-label.with-gap {
  margin-top: 22px;
  margin-bottom: 10px;
}
.fd .footer-spacer {
  margin-top: 6px;
}
.fd .site-footer ul {
  display: grid;
  gap: 10px;
  font-size: 13px;
}
.fd .site-footer-hours {
  gap: 6px;
}
.fd .site-footer-hours li {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}
.fd .site-footer-hours li span:first-child {
  min-width: 72px;
}
.fd .site-footer-hours li:last-child {
  color: #7a847d;
}
.fd .site-footer-phone-hours {
  gap: 6px;
  font-size: 12.5px;
  color: #9aa39d;
}
.fd .site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  color: #7a847d;
}
.fd .site-footer-bottom div:last-child {
  display: flex;
  gap: 18px;
}
.fd .site-footer-bottom button {
  color: inherit;
  font-size: inherit;
}
.fd .site-footer-bottom button:hover {
  color: #f7f5f0;
}
.fd .error-code {
  margin-bottom: 28px;
  font-size: 132px;
  line-height: 0.9;
  color: var(--green-700);
}
.fd .error-links {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.fd .error-links li {
  border-bottom: 1px solid var(--line);
}
.fd .error-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink-900);
}

/* ═══════════════════════════════════════════
   REDESIGNED HOME
   ═══════════════════════════════════════════ */
.fd .home-kicker {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.fd .home-hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f7fbec;
}
.fd .home-hero-media {
  position: absolute;
  inset: 0;
}
.fd .home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fd .home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.74) 42%, rgba(255,255,255,0.18) 74%),
    linear-gradient(0deg, rgba(247,251,236,0.28), rgba(247,251,236,0.28));
}
.fd .home-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}
.fd .home-hero-copy {
  max-width: 640px;
}
.fd .home-hero h1,
.fd .home-section-copy h2,
.fd .home-section-head h2,
.fd .home-location-copy h2,
.fd .home-final-cta h2 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink-900);
}
.fd .home-hero h1 {
  margin-bottom: 24px;
  font-size: 54px;
}
.fd .home-hero h1 span {
  color: var(--green-700);
}
.fd .home-hero-copy > p:not(.home-kicker) {
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-700);
}
.fd .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.fd .hero-booking-btn {
  min-height: 58px;
  padding: 18px 30px;
  font-size: 17px;
  font-weight: 800;
}

.fd .home-welcome,
.fd .home-services,
.fd .home-team,
.fd .home-location,
.fd .home-final-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 32px;
}
.fd .home-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  max-width: 980px;
}
.fd .home-section-copy h2,
.fd .home-section-head h2,
.fd .home-location-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.4vw, 42px);
}
.fd .home-section-copy p:not(.home-kicker),
.fd .home-location-copy > p {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.fd .home-action-list {
  display: grid;
  gap: 18px;
}
.fd .home-action-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.06);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15,26,20,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.fd .home-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,26,20,0.10);
}
.fd .home-action-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  color: var(--green-700);
  background: rgba(var(--green-700-rgb),0.16);
  border-radius: 999px;
}
.fd .home-action-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink-900);
}
.fd .home-action-card small {
  display: block;
  font-size: 14px;
  color: var(--ink-500);
}

.fd .home-services,
.fd .home-team {
  max-width: none;
}
.fd .home-services {
  background: #f1f5e7;
}
.fd .home-section-head {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.fd .home-section-head.center {
  text-align: center;
}
.fd .home-service-grid,
.fd .home-team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.fd .home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fd .home-service-card {
  display: block;
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15,26,20,0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.fd .home-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--green-700-rgb),0.24);
  box-shadow: 0 18px 42px rgba(15,26,20,0.09);
}
.fd .home-service-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--green-700);
  background: rgba(var(--green-700-rgb),0.15);
  border-radius: 999px;
}
.fd .home-service-card h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
}
.fd .home-service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

.fd .home-team {
  background: var(--bg);
}
.fd .home-team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.fd .home-team-card {
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15,26,20,0.04);
}
.fd .home-team-card img,
.fd .home-team-avatar {
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  border: 5px solid rgba(var(--green-700-rgb),0.2);
  border-radius: 999px;
}
.fd .home-team-card img {
  object-fit: cover;
}
.fd .home-team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e7eee3;
  color: var(--green-700);
  font-size: 34px;
  font-weight: 800;
}
.fd .home-team-card h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}
.fd .home-team-role {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.fd .home-team-card p:not(.home-team-role) {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
}
.fd .home-team-link {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.fd .home-location {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: start;
}
.fd .home-location-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(15,26,20,0.14);
}
.fd .home-location-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}
.fd .home-location-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}
.fd .home-location-media > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.fd .home-location-media h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}
.fd .home-location-media p {
  color: var(--ink-700);
}
.fd .home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 36px;
  max-width: 560px;
}
.fd .home-contact-grid > div > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.fd .home-contact-grid dl {
  display: grid;
  gap: 12px;
}
.fd .home-contact-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.fd .home-contact-grid dt,
.fd .home-contact-grid dd {
  font-size: 14px;
}
.fd .home-contact-grid dt {
  color: var(--ink-700);
}
.fd .home-contact-grid dd {
  font-weight: 700;
  color: var(--ink-900);
  text-align: right;
}
.fd .home-contact-table span:not(:first-child) {
  margin-top: 28px;
}
.fd .home-contact-grid dd a {
  color: inherit;
}

.fd .home-final-cta {
  text-align: center;
  padding-top: 96px;
}
.fd .home-final-cta h2 {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: clamp(36px, 5vw, 64px);
}
.fd .home-final-cta > div {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.fd .home-contact-section {
  background: #f1f5e7;
  padding: 104px 32px;
}
.fd .home-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: start;
}
.fd .home-contact-inner h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
}
.fd .home-contact-inner > div:first-child > p:not(.home-kicker) {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
}
.fd .home-contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.fd .home-contact-section .contact-form-panel h2 {
  font-size: 23px;
  line-height: 1.2;
  white-space: nowrap;
}
.fd .home-contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 800;
  color: var(--green-800);
}

@media (prefers-reduced-motion: reduce) {
  .fd .pulse { animation: none; }
  .fd .btn.primary:hover { transform: none; }
  .fd .btn.primary:hover .arr { transform: none; }
  .fd .link-arr:hover .arr { transform: none; }
  .fd .home-action-card:hover { transform: none; }
}

/* ═══════════════════════════════════════════
   MOBILE NAV (hamburger + overlay)
   ═══════════════════════════════════════════ */
.fd .nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  margin-left: auto;
}
.fd .nav-toggle:focus,
.fd .mobile-nav a:focus,
.fd .mobile-nav-parent:focus {
  outline: none;
}
.fd .nav-toggle:focus-visible,
.fd .mobile-nav a:focus-visible,
.fd .mobile-nav-parent:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
  border-radius: 4px;
}
.fd .nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink-900);
  transition: transform 200ms ease, opacity 200ms ease;
}
.fd .nav-toggle span:nth-child(1) { width: 22px; }
.fd .nav-toggle span:nth-child(2) { width: 14px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(3px) rotate(45deg); width: 22px; }
body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 22px; }

.fd .mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 72px 24px 32px;
  transform: translateX(100%);
  transition: transform 260ms ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
body.nav-open .mobile-nav { transform: translateX(0); }
body.nav-open { overflow: hidden; }

.fd .mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.fd .mobile-link-mark {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-700);
  opacity: 0.72;
}
.fd .mobile-nav-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 4px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink-900);
}
.fd .mobile-nav-parent.active {
  color: var(--green-700);
}
.fd .mobile-nav-parent svg {
  transition: transform 160ms ease;
}
.fd .mobile-nav-parent[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.fd .mobile-nav a.active { color: var(--green-700); }
.fd .mobile-subnav {
  display: grid;
  gap: 0;
  margin: -4px 0 6px 18px;
  padding-left: 14px;
  border-left: 1px solid var(--line-strong);
}
.fd .mobile-subnav[hidden] {
  display: none;
}
.fd .mobile-subnav a {
  padding: 9px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-700);
  border-bottom: 0;
}
.fd .mobile-social {
  justify-content: flex-start;
  margin-bottom: 4px;
}
.fd .mobile-subnav a.active {
  color: var(--green-800);
  background: rgba(var(--green-700-rgb),0.10);
}
.fd .mobile-nav-foot {
  margin-top: auto;
  padding: 20px;
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(15,26,20,0.08);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15,26,20,0.06);
}
.fd .mobile-nav .mobile-nav-phone {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--ink-900);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
}
.fd .mobile-social-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.fd .mobile-social-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 38px;
  height: 38px;
  padding: 0;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 0;
  color: var(--ink-700);
  background: rgba(var(--green-700-rgb),0.10);
  border: 1px solid rgba(var(--green-700-rgb),0.16);
  border-radius: 999px;
}
.fd .mobile-social-actions a svg {
  display: block;
  width: 16px;
  height: 16px;
}
.fd .mobile-nav .mobile-nav-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink-900);
  background: var(--green-700);
  border: 0;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════
   MOBILE (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav + in-header phone */
  .fd .nav-toggle { display: flex; }
  .fd .nav-desktop { display: none !important; }
  .fd .header-cta { display: none !important; }
  .fd header[style] {
    grid-template-columns: auto auto !important;
    justify-content: space-between;
    padding: 16px 20px !important;
    gap: 12px !important;
  }

  /* Tight gutters on sections */
  .fd section[style] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Collapse multi-column grids to single */
  .fd [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  /* Tighten grid gaps */
  .fd [style*="gap:72"],
  .fd [style*="gap:80"],
  .fd [style*="gap:64"],
  .fd [style*="gap:48"] {
    gap: 28px !important;
  }

  /* Display text: cap to mobile sizes */
  .fd .display { font-size: 44px !important; }
  .fd .display[style*="font-size:48"] { font-size: 36px !important; }
  .fd .display[style*="font-size:54"] { font-size: 36px !important; }
  .fd .display[style*="font-size:64"] { font-size: 40px !important; }
  .fd .display[style*="font-size:72"] { font-size: 40px !important; }
  .fd .display[style*="font-size:84"] { font-size: 44px !important; }
  .fd .display[style*="font-size:88"] { font-size: 44px !important; }
  .fd .display[style*="font-size:96"] { font-size: 48px !important; }
  .fd .display[style*="font-size:104"] { font-size: 48px !important; }

  /* Tame vertical paddings */
  .fd section[style*="padding:120px"],
  .fd section[style*="padding: 120px"] { padding-top: 56px !important; padding-bottom: 56px !important; }
  .fd section[style*="padding:100px"],
  .fd section[style*="padding: 100px"] { padding-top: 48px !important; padding-bottom: 48px !important; }
  .fd section[style*="padding:96px"] { padding-top: 40px !important; padding-bottom: 40px !important; }
  .fd section[style*="padding:80px"] { padding-top: 40px !important; padding-bottom: 40px !important; }
  .fd section[style*="padding:72px"] { padding-top: 36px !important; padding-bottom: 36px !important; }
  .fd section[style*="padding:60px"] { padding-top: 28px !important; padding-bottom: 36px !important; }
  .fd section[style*="padding:40px"] { padding-top: 28px !important; padding-bottom: 40px !important; }

  /* Trust marquee — wrap + smaller type */
  .fd section[style*="padding:20px"] {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 12px !important;
    font-size: 11px !important;
    text-align: center;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  /* Hero floating time card */
  .fd [style*="backdrop-filter"] {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  /* Hero CTA row — stack nicely */
  .fd [style*="display:flex"][style*="gap:14"] { flex-wrap: wrap !important; }

  /* Make primary buttons full-width in hero + CTA bands on mobile */
  .fd section .btn.primary,
  .fd section .btn.ghost { flex: 1 1 auto; justify-content: center; }

  /* CTA band green — stack heading + button */
  .fd section[style*="background:var(--green-700)"] { flex-wrap: wrap !important; gap: 20px !important; }

  /* Footer: stack columns, stack bottom bar */
  .fd footer[style] { padding: 48px 20px 24px !important; }
  .fd footer > div:first-child { gap: 32px !important; padding-bottom: 32px !important; }
  .fd footer > div:last-child { flex-wrap: wrap !important; gap: 12px !important; align-items: flex-start !important; }

  /* Booking timeslot grid — 2 per row instead of 8 */
  .fd [style*="grid-template-columns:repeat(8"] { grid-template-columns: repeat(2, 1fr) !important; }
  /* Team grid — 2 per row */
  .fd [style*="grid-template-columns:repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .fd [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  .fd [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }

  /* Map shorter */
  .fd [style*="height:380"] { height: 260px !important; }

  /* Tables: reduce column spacing */
  .fd td[style*="font-size:24"] { font-size: 18px !important; }

  /* Sticky sidebars become inline on mobile */
  .fd aside[style*="position:sticky"],
  .fd aside[style*="position: sticky"] { position: static !important; }
}

@media (max-width: 420px) {
  .fd .display { font-size: 36px !important; }
  .fd .display[style*="font-size:104"],
  .fd .display[style*="font-size:96"],
  .fd .display[style*="font-size:88"],
  .fd .display[style*="font-size:84"] { font-size: 40px !important; }
}

@media (max-width: 1024px) {
  .fd .page-hero-title,
  .fd .contact-title {
    font-size: 48px;
  }
  .fd .section-title,
  .fd .cta-band h2 {
    font-size: 34px;
  }
  .fd .content-split,
  .fd .content-split.wide-left,
  .fd .content-split.text-heavy,
  .fd .price-layout,
  .fd .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .fd .feature-grid,
  .fd .class-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fd .team-directory-grid,
  .fd .stat-grid,
  .fd .glad-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fd .glad-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fd .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fd .sticky-side {
    position: static;
  }
  .fd .site-header {
    gap: 18px;
    padding: 0 28px;
  }
  .fd .nav-desktop a {
    padding-inline: 9px;
    font-size: 13px;
  }
  .fd .header-phone {
    display: none;
  }
  .fd .header-social span {
    display: none;
  }
  .fd .header-social a {
    width: 28px;
    height: 28px;
  }
  .fd .home-hero {
    min-height: 620px;
  }
  .fd .home-welcome,
  .fd .home-location {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .fd .home-service-grid {
    grid-template-columns: 1fr;
  }
  .fd .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fd .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .fd .schedule-matrix-wrap {
    display: none;
  }
  .fd .schedule-stack {
    display: grid;
  }
  .fd .page-hero {
    padding: 52px 20px 42px;
  }
  .fd .page-section,
  .fd .page-section.compact,
  .fd .cta-band {
    padding: 62px 20px;
  }
  .fd .page-hero-title,
  .fd .contact-title {
    font-size: 42px;
  }
  .fd .page-lede {
    font-size: 16px;
  }
  .fd .section-title,
  .fd .cta-band h2,
  .fd .booking-panel h2 {
    font-size: 34px;
  }
  .fd .section-head.between,
  .fd .cta-band-inner,
  .fd .class-card-head,
  .fd .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .fd .feature-grid,
  .fd .team-directory-grid,
  .fd .class-grid,
  .fd .stat-grid,
  .fd .timeline-grid,
  .fd .process-grid,
  .fd .metric-strip,
  .fd .condition-row,
  .fd .value-row {
    grid-template-columns: 1fr;
  }
  .fd .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }
  .fd .profile-card-body {
    padding-top: 10px;
  }
  .fd .profile-card h3 {
    font-size: 16px;
    line-height: 1.2;
  }
  .fd .profile-role,
  .fd .profile-meta {
    font-size: 11px;
  }
  .fd .profile-open-button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
  }
  .fd .media-card,
  .fd .media-card.tall,
  .fd .media-card img {
    min-height: 360px;
  }
  .fd .media-card-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
  .fd .feature-card,
  .fd .class-card,
  .fd .process-card,
  .fd .stat-card,
  .fd .dark-panel,
  .fd .notice-panel,
  .fd .contact-form-panel {
    padding: 22px;
  }
  .fd .glad-hero-section {
    padding-top: 42px;
    padding-bottom: 46px;
  }
  .fd .glad-hero-layout {
    gap: 24px;
  }
  .fd .glad-stat-grid,
  .fd .glad-benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fd .glad-stat-card {
    min-height: 62px;
    padding: 10px;
    column-gap: 8px;
  }
  .fd .glad-stat-card strong {
    font-size: 21px;
  }
  .fd .glad-stat-card > span:last-child {
    font-size: 11.5px;
  }
  .fd .glad-benefit-list {
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
  }
  .fd .glad-benefit-item {
    min-height: 42px;
    padding: 9px 10px;
  }
  .fd .glad-benefit-item span {
    width: 20px;
    height: 20px;
  }
  .fd .glad-benefit-item strong {
    font-size: 12.5px;
  }
  .fd .schedule-hint {
    align-self: start;
  }
  .fd .class-modal {
    padding: 14px;
  }
  .fd .class-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
    overflow-y: auto;
  }
  .fd .class-modal-media {
    min-height: 260px;
  }
  .fd .class-modal-content {
    padding: 28px 22px 26px;
    overflow: visible;
  }
  .fd .class-modal-content .section-title {
    font-size: 30px;
  }
  .fd .employee-modal {
    padding: 14px;
  }
  .fd .employee-modal-panel {
    flex-direction: column;
    max-height: calc(100vh - 28px);
    overflow-x: hidden;
    overflow-y: auto;
  }
  .fd .employee-modal-media {
    flex: 0 0 auto;
    min-height: 260px;
  }
  .fd .employee-modal-content {
    flex: 1 1 auto;
    padding: 26px 22px 24px;
    overflow: visible;
  }
  .fd .employee-modal-content .section-title {
    margin-bottom: 16px;
    font-size: 28px;
  }
  .fd .employee-modal-description {
    font-size: 14px;
    line-height: 1.5;
  }
  .fd .booking-panel {
    padding: 46px 22px;
  }
  .fd .price-table,
  .fd .price-table tbody,
  .fd .price-table tr,
  .fd .price-table td {
    display: block;
    width: 100%;
  }
  .fd .price-table thead {
    display: none;
  }
  .fd .price-table tr {
    padding: 16px 0;
  }
  .fd .price-table td {
    padding: 5px 0;
  }
  .fd .price-table td.price-amount {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    font-size: 18px;
  }
  .fd .price-table td.price-amount::before {
    content: "Pris";
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-500);
  }
  .fd .price-matrix td:nth-child(3)::before {
    content: "Egenbetaling";
  }
  .fd .price-amount {
    padding-top: 0;
    text-align: left;
  }
  .fd .contact-value {
    font-size: 16px;
  }
  .fd .map-card {
    height: 300px;
  }
  .fd .map-callout {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
  .fd .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 20px;
  }
  .fd .site-brand-logo {
    height: 36px;
    max-width: 150px;
  }
  .fd .home-hero {
    min-height: auto;
  }
  .fd .home-hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
    width: 100%;
  }
  .fd .home-hero {
    display: flex;
    min-height: 620px;
    align-items: flex-end;
  }
  .fd .home-hero-inner {
    padding: 220px 20px 54px;
  }
  .fd .home-hero-media::after {
    background: linear-gradient(0deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.78) 45%, rgba(255,255,255,0.08) 100%);
  }
  .fd .home-hero-copy {
    max-width: none;
  }
  .fd .home-hero h1 {
    font-size: 40px;
  }
  .fd .home-hero-copy > p:not(.home-kicker) {
    font-size: 17px;
  }
  .fd .home-welcome,
  .fd .home-services,
  .fd .home-team,
  .fd .home-location,
  .fd .home-contact-section,
  .fd .home-final-cta {
    padding: 64px 20px;
  }
  .fd .home-section-copy h2,
  .fd .home-section-head h2,
  .fd .home-location-copy h2 {
    font-size: 30px;
  }
  .fd .home-action-card {
    padding: 22px;
  }
  .fd .home-action-card strong {
    font-size: 21px;
  }
  .fd .home-team-grid {
    grid-template-columns: 1fr;
  }
  .fd .home-location-media,
  .fd .home-location-media img,
  .fd .home-location-media iframe {
    min-height: 420px;
  }
  .fd .home-contact-grid {
    grid-template-columns: 1fr;
  }
  .fd .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .fd .home-contact-inner h2 {
    font-size: 38px;
  }
  .fd .home-contact-section .contact-form-panel h2 {
    font-size: 21px;
    white-space: normal;
  }
  .fd .home-final-cta h2 {
    font-size: 36px;
  }
  .fd .site-footer {
    padding: 48px 20px 24px;
  }
  .fd .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .fd .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .fd .site-footer-bottom div:last-child {
    flex-wrap: wrap;
  }
  .fd .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }
  .fd .cookie-banner-actions {
    justify-content: stretch;
  }
  .fd .cookie-banner-actions .btn {
    flex: 1 1 150px;
  }
}

@media (max-width: 480px) {
  .fd .site-brand-logo {
    height: 32px;
    max-width: 130px;
  }
  .fd .home-hero-media {
    min-height: 0;
  }
  .fd .home-hero h1 {
    font-size: 36px;
  }
  .fd .home-action-card {
    align-items: flex-start;
  }
  .fd .home-location-media,
  .fd .home-location-media img,
  .fd .home-location-media iframe {
    min-height: 360px;
  }
  .fd .home-location-media > div {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
}
