/* WuDae proefles LP v2 - boutique sportschool, not SaaS template
   Photos still temporary placeholders; logo.svg / logo-mark.svg are real WuDae mark (owner 2026-09-16). */

:root {
  --bg: #F7F4EF;
  --bg-elevated: #ffffff;
  --bg-soft: #efe9e0;
  --text: #1A1A1A;
  --text-muted: #3f3c37;
  --cta: #0F3D3E;
  --cta-hover: #0a2e2f;
  --cta-deep: #0a2a2b;
  --accent: #C4A484;
  --accent-soft: rgba(196, 164, 132, 0.18);
  --border: rgba(26, 26, 26, 0.12);
  --border-strong: rgba(26, 26, 26, 0.18);
  --radius: 7px;
  --radius-lg: 10px;
  --focus: 0 0 0 3px rgba(15, 61, 62, 0.22);
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 680px;
  --max-wide: 1120px;
  --space: clamp(2.75rem, 6vw, 4.5rem);
  /* Sticky cream header + peek of next section in the first viewport */
  --site-top-h: 3.5rem;
  --hero-peek: 2.75rem;
}

@media (min-width: 640px) {
  :root {
    --site-top-h: 4.2rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--cta-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap--wide {
  width: min(100% - 2rem, var(--max-wide));
}

.section {
  padding-block: var(--space);
}

.section--cream {
  background: var(--bg);
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--cta);
  color: #f4f1ec;
}

.section--dark h2,
.section--dark .eyebrow {
  color: #f7f4ef;
}

.section--dark .muted,
.section--dark p {
  color: rgba(247, 244, 239, 0.78);
}

.section--dark .accent-line {
  background: var(--accent);
}

.section--form {
  padding-block: calc(var(--space) * 1.1);
  background: var(--cta);
  color: #f4f1ec;
}

.section--form .eyebrow,
.section--form .form-eyebrow {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 0.65rem;
}

.section--form h2 {
  color: #f7f4ef;
}

.section--form .muted {
  color: rgba(247, 244, 239, 0.78);
}

.section--form .accent-line {
  background: var(--accent);
}

/* Top bar */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg-soft) 86%, var(--accent) 14%);
  background: rgba(236, 226, 212, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 164, 132, 0.38);
}

.site-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 2.75rem;
  gap: 0.5rem;
  padding-block: 0.35rem;
}

@media (min-width: 640px) {
  .site-top__inner {
    min-height: 3.25rem;
    gap: 0.75rem;
    padding-block: 0.45rem;
  }
}

.site-top__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-top__brand img {
  height: 1.65rem;
  width: auto;
}

.site-top__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (min-width: 640px) {
  .lang-switch {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    gap: 0.35rem;
    opacity: 1;
  }
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.15rem;
}

.lang-switch a:hover,
.lang-switch a[aria-current="page"] {
  color: var(--cta);
}

.lang-switch .sep {
  opacity: 0.35;
  user-select: none;
}

.site-top__cta {
  display: inline-flex;
  min-height: 2.1rem;
  padding: 0.32rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
  background: var(--cta);
  color: #fff;
  border: 1.5px solid var(--cta);
  box-shadow: 0 1px 0 rgba(15, 61, 62, 0.12);
  max-width: min(58vw, 13.5rem);
  text-align: center;
}

.site-top__cta:hover {
  background: var(--cta-hover);
  color: #fff;
}

@media (min-width: 640px) {
  .site-top__cta {
    min-height: 2.35rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.8125rem;
    max-width: none;
  }
}

/* Typography */
.eyebrow {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.9rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

h1 {
  font-size: clamp(2.55rem, 9vw, 4.35rem);
  font-weight: 600;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
}

h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.lead,
.sub {
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 34rem;
}

.muted {
  color: var(--text-muted);
}

.center {
  text-align: center;
}

.center .lead,
.center .sub {
  margin-inline: auto;
}

/* Trust */
.trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
  margin: 0 0 1.35rem;
  letter-spacing: 0.01em;
}

.trust__rating {
  color: var(--accent);
}

.hero .trust__rating {
  color: var(--accent);
}

.trust .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.trust--center {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 7px;
  background: var(--cta);
  color: #fff;
  font: inherit;
  font-weight: 650;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--cta-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--block {
  width: 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--cta);
  border: 1.5px solid var(--cta);
}

.btn--ghost:hover {
  background: var(--cta);
  color: #fff;
}

.btn--on-dark {
  background: #f7f4ef;
  color: var(--cta);
}

.btn--on-dark:hover {
  background: #fff;
  color: var(--cta-deep);
}

.btn--ghost-light {
  background: transparent;
  color: #f7f4ef;
  border: 1.5px solid rgba(247, 244, 239, 0.55);
}

.btn--ghost-light:hover {
  background: rgba(247, 244, 239, 0.1);
  color: #fff;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.cta-stack.center,
.cta-stack--narrow {
  align-items: center;
  max-width: 28rem;
  margin-inline: auto;
  margin-top: 2rem;
  text-align: center;
}

.cta-stack .social-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.hero .cta-stack .social-line {
  color: rgba(247, 244, 239, 0.88);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.7);
  pointer-events: none;
}
.scroll-hint__chevron {
  display: block;
  width: auto;
  height: auto;
  border: none;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  color: rgba(247, 244, 239, 0.8);
  animation: scroll-hint-bob 1.8s ease-in-out infinite;
}
.scroll-hint__chevron::before {
  content: "↓";
}
.scroll-hint__label {
  line-height: 1;
}
@keyframes scroll-hint-bob {
  0%, 100% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(0.35rem); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint__chevron { animation: none; }
}

.expectation {
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.82);
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

/* Hero — fit under sticky header; title/CTA/reviews/scroll-hint above the fold + peek */
.hero {
  position: relative;
  /* Not forced fullscreen: leave header + small peek of next section */
  min-height: auto;
  min-height: calc(100vh - var(--site-top-h) - var(--hero-peek));
  min-height: calc(100dvh - var(--site-top-h) - var(--hero-peek));
  display: flex;
  align-items: flex-end;
  color: #f7f4ef;
  overflow: hidden;
  background: #0a1f20;
}

.hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Portrait training photo: bias to practitioners (武德, arms, kick) */
  object-position: center 38%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 25, 0.35) 0%, rgba(8, 24, 25, 0.22) 35%, rgba(8, 24, 25, 0.78) 78%, rgba(8, 24, 25, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 24, 25, 0.55) 0%, rgba(8, 24, 25, 0.15) 55%, transparent 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
  /* Tighter pack so reviews chip + scroll hint stay in first viewport */
  padding: clamp(1.75rem, 5vw, 3.25rem) 0 clamp(3.15rem, 5.5vw, 3.85rem);
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max-wide)) / 2));
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  color: #f7f4ef;
  margin-bottom: 0.65rem;
  text-wrap: balance;
}

.hero .sub {
  color: rgba(247, 244, 239, 0.82);
  margin-bottom: 0.85rem;
}

.hero .btn {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero .btn:hover {
  background: var(--cta-hover);
  color: #fff;
}

/* Keep reviews chip fully visible above scroll hint (not half-cut) */
.hero .trust--chip {
  margin: 0.35rem 0 0;
}

@media (min-width: 880px) {
  .hero {
    min-height: calc(100vh - var(--site-top-h) - var(--hero-peek));
    min-height: calc(100dvh - var(--site-top-h) - var(--hero-peek));
    align-items: flex-end;
  }

  .hero__content {
    padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(3.35rem, 5vw, 4rem);
    margin-left: max(1rem, calc((100% - var(--max-wide)) / 2));
  }

  .hero__media img {
    /* Wider desktop crop: bias up + slight right so faces stay in frame */
    object-position: 58% 25%;
  }
}

/* Benefits - editorial rows, not SaaS cards */
.benefit-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.benefit-row {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 760px) {
  .benefit-row {
    grid-template-columns: 0.9fr 1.4fr;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.55rem 0;
  }
}

.benefit-row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--text);
}

.benefit-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

@media (min-width: 760px) {
  .benefit-row h3 {
    margin-bottom: 0.45rem;
  }
}

/* Trial - horizontal timeline */
.step-timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 820px) {
  .step-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    position: relative;
  }

  .step-timeline::before {
    content: "";
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(15, 61, 62, 0.25));
  }
}

.step-item {
  counter-increment: step;
  position: relative;
  padding-top: 0;
}

.step-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid var(--cta);
  background: var(--bg);
  color: var(--cta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.step-item h3 {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.step-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Form */
.form-shell {
  max-width: 36rem;
  margin-inline: auto;
}

.form-shell .section-head {
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid .field:not(.field--half),
  .form-grid .field-check,
  .form-grid .btn,
  .form-grid .expectation,
  .form-grid details.field--notes {
    grid-column: 1 / -1;
  }
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  color: rgba(247, 244, 239, 0.9);
}

.field .req {
  color: var(--accent);
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: rgba(247, 244, 239, 0.96);
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.85rem 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input:hover,
.field textarea:hover {
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.28);
}

.field textarea {
  min-height: 3.5rem;
  resize: vertical;
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  color: rgba(247, 244, 239, 0.85);
}

.field-check input {
  margin-top: 0.3rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.field-check a {
  color: #fff;
  font-weight: 600;
}

.section--form .btn {
  background: #f7f4ef;
  color: var(--cta);
}

.section--form .btn:hover {
  background: #fff;
}

/* Media / prose splits */
.split-media {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 860px) {
  .split-media {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
  }
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-frame--location img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.media-frame--captioned {
  display: flex;
  flex-direction: column;
}

.media-frame--captioned img {
  aspect-ratio: 4 / 5;
}

.media-caption {
  margin: 0;
  padding: 0.65rem 0.85rem 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg-soft);
}

.prose-block h2 {
  margin-bottom: 0.65rem;
}

.prose-block p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose-block p:last-child {
  margin-bottom: 0;
}

/* Checklist - refined marks, no floating cards */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.checklist li {
  position: relative;
  padding: 1.05rem 0 1.05rem 1.85rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1.02rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.7rem;
  height: 0.35rem;
  border-left: 2px solid var(--cta);
  border-bottom: 2px solid var(--cta);
  transform: rotate(-45deg);
}

/* Pricing - restrained panels */
.price-grid {
  display: grid;
  gap: 1px;
  margin: 1.5rem 0 1.15rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 760px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  position: relative;
  background: var(--bg);
  padding: 1.55rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-card--featured,
.price-card--primary {
  background: var(--cta);
  color: #f7f4ef;
  box-shadow: inset 0 0 0 2px var(--accent);
  z-index: 1;
}

.price-card--primary .amount {
  font-size: clamp(2.75rem, 6vw, 3.15rem);
}

.price-card--primary .name {
  font-size: clamp(1.45rem, 3vw, 1.65rem);
}

.price-card--secondary {
  opacity: 0.96;
}

.price-card--secondary .amount {
  font-size: 2.15rem;
  color: var(--text-muted);
}

@media (min-width: 760px) {
  .price-card--primary {
    transform: scale(1.03);
    padding-block: 1.85rem;
  }
}

.price-card--featured .name,
.price-card--featured .amount,
.price-card--primary .name,
.price-card--primary .amount {
  color: #f7f4ef;
}

.price-card--featured .period,
.price-card--featured .detail,
.price-card--primary .period,
.price-card--primary .detail {
  color: rgba(247, 244, 239, 0.75);
}

.price-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--accent);
  border-radius: 4px;
  padding: 0.28rem 0.5rem;
}

.price-card .name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  padding-right: 4.5rem;
}

.price-card .amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--cta);
  margin: 0.2rem 0 0;
  line-height: 1;
}

.price-card .period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.price-card .detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

/* Primary/featured: cream on dark (must win over .price-card .amount) */
.price-card.price-card--primary,
.price-card.price-card--featured {
  background: var(--cta);
  color: #f7f4ef;
}

.price-card.price-card--primary .name,
.price-card.price-card--featured .name,
.price-card.price-card--primary .amount,
.price-card.price-card--featured .amount {
  color: #f7f4ef;
}

.price-card.price-card--primary .period,
.price-card.price-card--featured .period,
.price-card.price-card--primary .detail,
.price-card.price-card--featured .detail {
  color: rgba(247, 244, 239, 0.88);
}

a.price-card--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.price-card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 61, 62, 0.22);
}

a.price-card--link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.pricing-note {
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 0.25rem;
}

/* Testimonials - pull quotes */
.testimonial-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.quote-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
  border-top: 2px solid var(--accent);
  padding-top: 1.25rem;
}

.quote-block__mark {
  font-family: var(--serif);
  font-size: 3.25rem;
  line-height: 0.7;
  color: var(--accent);
  font-weight: 600;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.quote-block .who {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font);
}

.quote-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quote-avatar--fallback {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #f7f4ef;
  background: var(--cta);
}

.who__meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.quote-block .who strong {
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.01em;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
  background: transparent;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.15rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--accent);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Location: stacked photos on mobile; side-by-side equal columns on desktop */
.location-stack {
  display: grid;
  gap: 1.35rem;
}

.location-photos {
  display: grid;
  gap: 1rem;
}

@media (min-width: 880px) {
  .location-photos {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .location-photos .media-frame--location {
    min-width: 0;
  }
}

.location-copy p {
  color: var(--text-muted);
}

.form-logo {
  margin: 1.35rem 0 0;
  text-align: center;
  opacity: 0.42;
  pointer-events: none;
}

.form-logo img {
  width: 132px;
  height: 132px;
  display: inline-block;
  vertical-align: middle;
}

/* Footer */
.site-footer {
  padding: 2.5rem 1rem 3rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.7);
  background: var(--cta-deep);
}

.site-footer a {
  color: rgba(247, 244, 239, 0.78);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .brand {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7f4ef;
}

/* Simple pages */
.simple-page {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
}

.simple-card {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}

.simple-card--left {
  text-align: left;
}

.simple-card p {
  color: var(--text-muted);
}

.simple-card__action {
  margin-top: 1.75rem !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin-bottom: 0.65rem;
}

.accent-line {
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin: 0 0 1rem;
}

.section-head.center .accent-line,
.accent-line--center {
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}


.site-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}


.site-wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--cta, #0F3D3E);
  line-height: 1;
}

@media (min-width: 640px) {
  .site-wordmark {
    font-size: 1.72rem;
    letter-spacing: 0.07em;
  }
}


/* Soft Google reviews link */
.trust--soft {
  font-weight: 600;
}
.trust__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.hero .trust__link {
  color: rgba(247, 244, 239, 0.92);
}
.trust__link:hover {
  color: var(--cta);
}
.hero .trust__link:hover {
  color: #fff;
}
.reviews-link {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.reviews-link a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Light gold stars on testimonials */
.quote-stars {
  color: #c4a484;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}

/* Location accessibility + maps */
.location-access {
  color: var(--text-muted);
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
}
.location-maps {
  margin: 0.85rem 0 0;
  font-weight: 600;
}
.location-maps a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Optional daypart select (match inputs) */
.form-grid select {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  appearance: auto;
}
.form-grid select:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: var(--cta);
}


/* ===== Landing / CRO mobile-first batch ===== */

/* Trust chip above the fold */
.trust--chip {
  margin: 0.15rem 0 0;
}
.trust__chip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 244, 239, 0.14);
  border: 1px solid rgba(247, 244, 239, 0.32);
  color: #f7f4ef;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  backdrop-filter: blur(6px);
  cursor: default;
}
a.trust__chip {
  cursor: pointer;
}
a.trust__chip:hover {
  background: rgba(247, 244, 239, 0.22);
  color: #fff;
  text-decoration: none;
}
.trust__chip .trust__rating {
  color: var(--accent);
  font-weight: 700;
}
.trust__chip .trust__sep {
  opacity: 0.45;
}
.trust__chip .trust__link {
  color: rgba(247, 244, 239, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
  font-weight: 600;
}
.trust__chip:hover .trust__link {
  color: #fff;
}

/* Collapsed optional notes in form */
details.field--notes {
  border: 1px solid rgba(247, 244, 239, 0.22);
  border-radius: var(--radius);
  padding: 0.15rem 0.75rem 0.15rem;
  background: rgba(8, 24, 25, 0.18);
}
details.field--notes > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(247, 244, 239, 0.88);
  padding: 0.65rem 0;
}
details.field--notes > summary::-webkit-details-marker {
  display: none;
}
details.field--notes > summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1;
}
details.field--notes[open] > summary::after {
  content: "–";
}
details.field--notes .field--notes-inner {
  padding-bottom: 0.65rem;
}
details.field--notes .field--notes-inner label {
  margin-top: 0.15rem;
}

/* Mobile sticky bottom CTA (thumb zone); desktop off */
.sticky-cta {
  display: none;
}
@media (max-width: 879px) {
  .sticky-cta.is-visible {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(236, 226, 212, 0.96);
    border-top: 1px solid rgba(196, 164, 132, 0.4);
    box-shadow: 0 -8px 24px rgba(26, 26, 26, 0.12);
    backdrop-filter: blur(10px);
  }
  .sticky-cta__btn {
    width: 100%;
    min-height: 3.05rem;
    background: var(--cta);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(15, 61, 62, 0.22);
  }
  .sticky-cta__btn:hover {
    background: var(--cta-hover);
    color: #fff;
  }
  html.has-sticky-cta body {
    padding-bottom: calc(4.4rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Hide Netlify "Powered by" badge if injected (CSS best-effort).
   Bas still needs: Netlify → Site → Project configuration → General →
   disable "Enable Netlify Draw / Powered by Netlify" (or similar badge toggle).
   CSP frame-src 'none' already blocks the badge iframe. */
html.fixed-footer,
body.fixed-footer,
.fixed-footer,
#netlify-badge,
iframe[title*="Netlify"],
iframe[src*="netlify"],
a[href*="www.netlify.com"][style*="position: fixed"],
div[data-netlify-deploy-id] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}

.field--notes textarea {
  min-height: 5.5rem;
}


/* In-prose text link (Wing Chun closing line): underline only, body text color */
.text-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
.text-link:hover,
.text-link:focus-visible {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  opacity: 0.85;
}

.wrap--narrow {
  width: min(100% - 2rem, 46rem);
}

.simple-page--doc {
  align-items: flex-start;
  padding-block: 2rem 3.5rem;
}

.simple-card--doc {
  max-width: none;
  margin-inline: 0;
}

.privacy-doc h1 {
  margin-bottom: 0.35rem;
}

.privacy-banner,
.privacy-note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  background: rgba(15, 61, 62, 0.06);
  border: 1px solid rgba(15, 61, 62, 0.12);
  color: var(--text) !important;
  font-size: 0.95rem;
  line-height: 1.55;
}

.privacy-note {
  background: rgba(196, 154, 74, 0.12);
  border-color: rgba(196, 154, 74, 0.28);
}

.privacy-doc > p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.privacy-section {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(15, 61, 62, 0.1);
}

.privacy-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--cta, #0f3d3e);
  margin: 0 0 0.85rem;
  line-height: 1.3;
}

.privacy-section h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
  color: var(--text);
}

.privacy-section p {
  margin: 0 0 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.privacy-section ul,
.privacy-section ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.privacy-section li {
  margin: 0.35rem 0;
  line-height: 1.55;
}

.privacy-contact {
  list-style: none;
  padding-left: 0 !important;
}

.privacy-contact li {
  margin: 0.45rem 0;
  color: var(--text);
  font-weight: 500;
}

.privacy-section--contact {
  margin-bottom: 0.5rem;
}
