:root {
  --bg: #f7f4ef;
  --bg-alt: #f1ece6;
  --bg-mint: #ecf4f1;
  --panel: #ffffff;
  --ink: #1f2a2e;
  --ink-light: #4b5a61;
  --muted: #6c7781;
  --accent: #0f766e;
  --accent-light: #0f877d;
  --accent-soft: #e4f3ef;
  --border: #e2ddd6;
  --border-light: #efeae4;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --focus-ring: 0 0 0 3px rgba(15, 118, 110, 0.2);
  --font-sans: "Work Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% -8%, rgba(15, 118, 110, 0.14), transparent 45%),
    radial-gradient(circle at 88% 8%, rgba(15, 118, 110, 0.08), transparent 40%),
    linear-gradient(180deg, #faf8f5 0%, var(--bg) 55%, #f1ede7 100%);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding: 0;
}

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

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

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

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 48px;
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid var(--border-light);
}

.brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #1b9a8c);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.brand__name {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.brand__role {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav a {
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-light);
  font-weight: 500;
  font-size: 13px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.15);
}

.nav a:focus-visible {
  box-shadow: var(--focus-ring);
}

.controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid var(--border-light);
}

#language-selector {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

#language-selector:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(15, 118, 110, 0.35);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(15, 118, 110, 0.08);
  border-color: var(--accent);
}

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 48px;
}

.hero__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--ink-light);
  margin: 0 0 24px;
  line-height: 1.7;
  max-width: 52ch;
}

.lead {
  font-size: 18px;
  color: var(--ink-light);
  margin: 0 0 24px;
  line-height: 1.7;
  max-width: 58ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.pill--subtle {
  background: var(--bg-alt);
  color: var(--muted);
  border-color: var(--border-light);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.meta__label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.meta__value {
  margin: 4px 0 0;
  font-weight: 500;
  color: var(--ink);
}

.meta__list {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.meta__list li {
  margin: 4px 0;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
}

.hero__surtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 8px;
  line-height: 1.5;
  font-style: italic;
}

.reflections-placeholder {
  text-align: center;
  padding: 60px 24px;
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}

.reflections-placeholder p:first-child {
  font-size: 24px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}

.reflections-placeholder p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.hero__card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.card__eyebrow {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card__price {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
}

.card__list {
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--ink-light);
}

.card__list li {
  margin-bottom: 8px;
}

.card__footnote {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 88px 48px;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #f4efe9 100%);
  max-width: none;
}

.section--mint {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #e7f1ed 100%);
  max-width: none;
}

.section--alt > *,
.section--mint > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  margin: 12px 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section__lead {
  color: var(--ink-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@supports (text-wrap: balance) {
  .hero__content h1,
  .section__header h2,
  .groups-hero h1 {
    text-wrap: balance;
  }
}

.entry-hesitate {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.entry-hesitate__link {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(15, 118, 110, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.entry-hesitate__link:hover {
  border-color: var(--accent);
}

.approach-mini {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.approach-mini p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
}

.approach-mini strong {
  color: var(--ink);
}

/* ===== GRID & CARDS ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
  transform: translateY(-3px);
}

.card h3 {
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.7;
}

.card--soft {
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  box-shadow: none;
}

.card--soft:hover {
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}

.card--highlight {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 70%);
  border-color: rgba(15, 118, 110, 0.12);
}

.card--form,
.card--calendar {
  background: var(--panel);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* ===== CALENDLY BOOKING ===== */
.calendly-booking {
  text-align: center;
  padding: 40px 20px;
}

.calendly-booking__text {
  color: var(--ink-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.calendly-booking__btn {
  font-size: 16px;
  padding: 16px 32px;
  margin-bottom: 16px;
}

.card--photo {
  position: relative;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.2));
}

.card--photo > * {
  position: relative;
}

.card--photo h3,
.card--photo p {
  color: white;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
}

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* ===== APPROACH BLOCKS ===== */
.approach-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 48px;
}

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

.approach-block--intro {
  text-align: center;
  background: var(--panel);
  padding: 32px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.approach-block--intro .approach-block__text {
  align-items: center;
}

.approach-block--intro p:first-child {
  font-size: 20px;
  color: var(--ink);
}

.approach-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-block__text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin: 0;
}

.approach-block__text strong {
  color: var(--ink);
  font-weight: 600;
}

.approach-block__image {
  margin: 8px 0;
}

.approach-block__image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .approach-block {
    gap: 20px;
  }

  .approach-block__image img {
    max-height: 240px;
  }

  .approach-block--intro {
    padding: 24px 20px;
  }
}

/* ===== FLEX LAYOUT ===== */
.flex {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* ===== FORMS ===== */
form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}

input,
textarea,
select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--panel);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--focus-ring);
}

.form__note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* ===== ICON LIST ===== */
.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.icon-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 12px;
}

.bullet {
  color: var(--accent);
  font-size: 10px;
  margin-top: 6px;
}

.icon-list__title {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--ink);
}

.icon-list__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ===== RATES ===== */
.rates {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.rates__label {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.rates__value {
  margin: 4px 0;
  color: var(--ink-light);
}

.rates__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* ===== TIMELINE ===== */
.timeline {
  border-left: 2px solid var(--border);
  margin: 24px 0 0;
  padding-left: 24px;
  display: grid;
  gap: 24px;
}

.timeline__item {
  position: relative;
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: -31px;
  top: 4px;
  border: 2px solid var(--panel);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.timeline__date {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.timeline__title {
  margin: 4px 0 8px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

.timeline__text {
  margin: 0;
  color: var(--muted);
}

.cv__actions {
  margin-top: 32px;
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact__details p {
  margin: 8px 0;
  color: var(--ink-light);
}

.contact__details strong {
  color: var(--ink);
}

/* ===== CALENDAR ===== */
.calendar {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.calendar__nav:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar__weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 0;
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: default;
  color: var(--muted);
  transition: all 0.2s ease;
}

.calendar__day--empty {
  background: transparent;
}

.calendar__day--past {
  color: var(--border);
}

.calendar__day--available {
  color: var(--ink);
  cursor: pointer;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}

.calendar__day--available:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(15, 118, 110, 0.2);
}

.calendar__day--selected {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 600;
}

/* ===== TIMESLOTS ===== */
.timeslots {
  display: none;
  margin-bottom: 20px;
}

.timeslots--visible {
  display: block;
}

.timeslots__title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 12px;
}

.timeslots__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.timeslot {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timeslot:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.timeslot--selected {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ===== CALENDAR SELECTION ===== */
.calendar__selection {
  display: none;
  padding: 16px;
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.calendar__selection--visible {
  display: block;
}

.calendar__selection-info p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--ink);
}

.calendar__selection-info strong {
  color: var(--muted);
}

.calendar__confirm {
  margin-top: 12px;
}

/* ===== GROUPS PAGE ===== */
.groups-hero {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, #ffffff 55%, var(--bg-alt) 100%);
  padding: 80px 48px 60px;
  text-align: center;
}

.groups-hero__content {
  max-width: 700px;
  margin: 0 auto;
}

.groups-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 600;
  margin: 16px 0;
  color: var(--ink);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

.group-card {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.group-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.group-card__image {
  height: 220px;
  overflow: hidden;
}

.group-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.group-card:hover .group-card__image img {
  transform: scale(1.05);
}

.group-card__content {
  padding: 24px;
}

.group-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(15, 118, 110, 0.18);
}

.group-card__content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}

.group-card__content > p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.group-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border-light);
}

.group-card__details li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-light);
  border-bottom: 1px solid var(--border-light);
}

.group-card__details li:last-child {
  border-bottom: none;
}

.group-card__details strong {
  color: var(--ink);
}

/* ===== CTA BOX ===== */
.cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 70%, #15a393 100%);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 0 0 12px;
  color: white;
}

.cta-box p {
  margin: 0 0 24px;
  opacity: 0.9;
  font-size: 17px;
}

.cta-box__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-box .btn {
  background: white;
  color: var(--accent);
}

.cta-box .btn:hover {
  background: var(--bg-alt);
}

.cta-box .btn--ghost {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-box .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .groups-grid {
    grid-template-columns: 1fr;
  }

  .groups-hero {
    padding: 48px 24px 40px;
  }

  .cta-box {
    padding: 32px 24px;
  }
}

/* ===== FOOTER ===== */
.footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 48px;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--ink-light);
}

.footer p {
  margin: 0;
}

.footer__meta {
  margin-top: 8px;
  font-size: 13px;
}

/* ===== HERO SUBTITLE ===== */
.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.7;
}

/* ===== ENTRY SECTION ===== */
.entry-card {
  display: block;
  min-height: 180px;
}

.entry-card h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.entry-hesitate {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--muted);
}

.entry-hesitate__link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 8px;
}

.entry-hesitate__link:hover {
  color: var(--accent-light);
}

/* ===== APPROACH MINI ===== */
.approach-mini {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.approach-mini p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin: 0;
}

/* ===== THERAPY BLOCKS ===== */
.therapy-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.therapy-block {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.therapy-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}

.therapy-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-light);
  margin: 0 0 12px;
}

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

.therapy-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.therapy-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-light);
}

.therapy-list li::before {
  content: "□";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== APPROACH NOTE ===== */
.approach-note {
  font-size: 14px !important;
  font-style: italic;
  color: var(--muted) !important;
  margin-top: 16px !important;
}

/* ===== SECTION CTA ===== */
.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== COACHING CONTENT ===== */
.coaching-content {
  max-width: 800px;
  margin: 0 auto;
}

.coaching-section {
  margin-bottom: 32px;
}

.coaching-section:last-child {
  margin-bottom: 0;
}

.coaching-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
}

.coaching-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-light);
  margin: 0;
}

/* ===== COMPARE PAGE ===== */
.compare-subtitle {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  margin: 8px 0 16px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-column {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-column h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  color: var(--ink);
}

.compare-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.compare-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-light);
}

.compare-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-size: 18px;
}

.compare-column--therapy {
  border-top: 4px solid var(--accent);
}

.compare-column--coaching {
  border-top: 4px solid #2ef2a2;
}

/* ===== CONTACT SIMPLE ===== */
.contact--simple {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact--simple .contact__intro {
  margin-bottom: 32px;
}

.contact--simple .contact__form {
  text-align: left;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .topbar {
    padding: 12px 24px;
    gap: 16px;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .brand {
    padding-right: 16px;
  }

  .controls {
    padding-left: 16px;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .hero__visual {
    order: -1;
  }

  .flex {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 24px;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand {
    border-right: none;
    padding-right: 0;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .controls {
    border-left: none;
    padding-left: 0;
    margin-left: auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 12px 16px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav a {
    padding: 6px 8px;
    font-size: 12px;
  }

  .controls {
    gap: 8px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
  }

  .timeslots__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
