:root {
  --bg: #edf7f8;
  --bg-accent: #dff0f2;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-deep: #0d4651;
  --text: #14343c;
  --muted: #5f7480;
  --line: rgba(20, 52, 60, 0.1);
  --accent: #18a8b6;
  --accent-soft: #e5f9fb;
  --accent-deep: #0f7f8b;
  --warm: #ffa85a;
  --shadow: 0 24px 70px rgba(18, 70, 88, 0.1);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 168, 182, 0.14), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(15, 127, 139, 0.12), transparent 18%),
    linear-gradient(180deg, #f7fcfd 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 52, 60, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 52, 60, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, black 20%, black 80%, transparent 100%);
}

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

img {
  max-width: 100%;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(18, 70, 88, 0.08);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
}

.brand-kicker,
.panel-label,
.eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brand-name {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.98rem;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(24, 168, 182, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.button-nav {
  min-height: 42px;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.section {
  margin-top: 26px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
}

.section-grid > * {
  min-width: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  margin-top: 26px;
  padding: 42px 36px 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(231, 250, 252, 0.94) 60%, rgba(247, 255, 255, 0.95) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero::before {
  inset: -18% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(24, 168, 182, 0.18) 0%, transparent 70%);
}

.hero::after {
  inset: auto -8% -16% auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 127, 79, 0.18) 0%, transparent 70%);
}

.hero-copy h1,
.section-heading h2,
.booking-copy h2,
.hero-card h2,
.faq-card h3,
.profile-card h3,
.pricing-card h3,
.service-card h3,
.process-card h3 {
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.hero-main {
  align-items: start;
  gap: 48px;
}

.hero-main > * {
  min-width: 0;
}

.hero-copy {
  padding-left: clamp(12px, 2vw, 28px);
  padding-right: 10px;
}

.hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.6rem, 4.55vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-break {
  display: block;
}

.section-heading p,
.service-card p,
.process-card p,
.pricing-card p,
.faq-card p,
.booking-copy p,
.profile-card li,
.plain-list,
.price-list li,
.slot-note,
.booking-note,
.summary-card p,
.hero-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 4px;
}

.hero-pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 168, 182, 0.18);
  color: var(--accent-deep);
  font-size: 0.94rem;
  font-weight: 500;
}

.hero-lower-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px 18px;
  margin-top: 30px;
}

.hero-trust-card,
.hero-card,
.service-card,
.process-card,
.profile-card,
.pricing-card,
.faq-card,
.booking-widget,
.booking-info-card,
.summary-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero-trust-card {
  grid-column: span 4;
  padding: 16px 18px;
}

.hero-card-wide {
  grid-column: span 6;
}

.hero-trust-card strong,
.contact-strip strong,
.price-list strong {
  display: block;
  margin-bottom: 6px;
}

.hero-trust-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
}

.hero-video-shell {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(24, 168, 182, 0.16);
  background:
    linear-gradient(145deg, rgba(24, 168, 182, 0.11), rgba(255, 255, 255, 0.98) 52%);
  box-shadow: 0 26px 60px rgba(16, 84, 95, 0.12);
}

.video-caption {
  margin: 14px 0 0;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #09191d;
  object-fit: cover;
}

.hero-card {
  padding: 24px;
}

.hero-card-actions {
  margin-top: 22px;
  margin-bottom: 28px;
}

.hero-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(232, 249, 251, 0.92) 100%);
  padding-bottom: 34px;
}

.hero-card-accent {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(13, 70, 81, 1), rgba(24, 115, 130, 0.96));
  color: #fff;
}

.hero-card-accent .panel-label,
.hero-card-accent p,
.hero-card-accent span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-accent-note {
  margin: 10px 0 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span,
.focus-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.focus-pill {
  appearance: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.focus-pill:hover,
.focus-pill:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.focus-pill.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.focus-detail {
  margin-top: 18px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.focus-detail h3 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.focus-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.focus-points li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.focus-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.check-list,
.plain-list,
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.plain-list li,
.price-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 12px;
}

.check-list li::before,
.plain-list li::before,
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  transform: translateY(-50%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.booking-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-grid,
.process-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.pricing-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.process-card,
.pricing-card,
.faq-card {
  padding: 24px;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(24, 168, 182, 0.14);
  color: var(--accent-deep);
  font-weight: 800;
}

.section-band .process-card span {
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(8, 39, 49, 0.18);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(13, 70, 81, 0.98), rgba(15, 102, 113, 0.98)),
    rgba(13, 70, 81, 0.98);
  color: #fff;
}

.section-band .eyebrow,
.section-band p,
.section-band h2,
.section-band .process-card h3 {
  color: #fff;
}

.section-band .process-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.about-section {
  align-items: start;
}

.profile-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 249, 251, 0.94));
}

.trust-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.trust-header .section-heading {
  margin-bottom: 0;
}

.trust-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
  gap: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 253, 0.96));
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-weight: 700;
  font-size: 0.97rem;
}

.review-date {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-top: 2px;
}

.review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.review-source {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 253, 0.96));
}

.trust-card h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

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

.trust-card .plain-list {
  margin-top: 18px;
}

.trust-card-accent {
  background: linear-gradient(160deg, rgba(13, 70, 81, 1), rgba(24, 115, 130, 0.96));
  color: #fff;
  box-shadow: 0 18px 38px rgba(15, 78, 90, 0.18);
}

.trust-card-accent .panel-label,
.trust-card-accent h3,
.trust-card-accent p,
.trust-card-accent li {
  color: #fff;
}

.trust-card-accent .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-strip {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.pricing-card-note {
  background: linear-gradient(180deg, rgba(237, 249, 251, 0.94), rgba(255, 255, 255, 0.96));
}

.pricing-grid-launch {
  align-items: stretch;
}

.pricing-card-plan {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 254, 0.94));
}

.pricing-card-emphasis {
  border-color: rgba(24, 168, 182, 0.24);
  background: linear-gradient(180deg, rgba(231, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 34px rgba(24, 168, 182, 0.08);
}

.pricing-items {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.pricing-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.pricing-item div {
  min-width: 0;
}

.pricing-item strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.pricing-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-item b {
  flex-shrink: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
}

.pricing-launch-note {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(242, 251, 252, 1), rgba(255, 255, 255, 1));
}

.pricing-launch-note p:last-child {
  margin: 0;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-left: 18px;
}

.booking-section {
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-info-card {
  margin-top: 24px;
  padding: 24px;
}

.booking-widget {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.selector-group {
  margin-top: 20px;
}

.selector-group:first-child {
  margin-top: 0;
}

legend {
  margin-bottom: 12px;
  font-weight: 700;
}

.pill-grid,
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.slot,
.calendar-day {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
}

.slot,
.calendar-day {
  border-radius: 16px;
  font: inherit;
}

.pill:hover,
.slot:hover,
.calendar-day:hover {
  transform: translateY(-1px);
}

.pill.is-active,
.slot.is-active,
.calendar-day.is-active {
  border-color: rgba(47, 125, 104, 0.42);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.calendar-head,
.calendar-weekdays {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.calendar-head {
  margin-bottom: 12px;
}

.calendar-head p,
.calendar-head span {
  margin: 0;
}

.calendar-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-weekdays {
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 10px 6px;
  text-align: center;
}

.calendar-day strong,
.calendar-day span {
  display: block;
}

.calendar-day span {
  color: var(--muted);
  font-size: 0.82rem;
}

.calendar-day.is-muted {
  color: rgba(19, 37, 33, 0.3);
  pointer-events: none;
}

.calendar-day.is-limited {
  background: rgba(255, 244, 235, 0.9);
  border-style: dashed;
}

.slot {
  min-height: 44px;
  padding: 0 16px;
}

.slot-note,
.form-status {
  margin: 12px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(47, 125, 104, 0.24);
  border-color: var(--accent);
}

.full-width {
  grid-column: 1 / -1;
}

.summary-card {
  margin-top: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(241, 252, 253, 1), rgba(255, 255, 255, 1));
}

.summary-card h3 {
  margin: 0 0 8px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.faq-section {
  margin-bottom: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 6px 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  padding: 24px 0 48px;
}

.legal-shell {
  width: min(calc(100% - 32px), 920px);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.legal-card {
  padding: 36px;
}

.legal-card h1 {
  margin-top: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.legal-card h2 {
  margin-top: 28px;
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.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;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .section-grid,
  .service-grid,
  .pricing-grid,
  .faq-grid,
  .process-grid,
  .trust-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    padding-left: 12px;
  }

  .hero-lower-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust-card,
  .hero-card-wide {
    grid-column: auto;
  }

  .booking-copy {
    position: static;
  }

  .trust-header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 12px), var(--max-width));
    padding-top: 12px;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-kicker {
    font-size: 0.66rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    font: inherit;
    font-weight: 700;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .section,
  .legal-card {
    padding: 24px;
    border-radius: 28px;
  }

  .hero {
    padding: 22px 18px 22px;
  }

  .section-grid,
  .service-grid,
  .pricing-grid,
  .faq-grid,
  .process-grid,
  .trust-grid,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .hero-panel {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    hyphens: manual;
  }

  .hero-pill-row span {
    font-size: 0.82rem;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .hero-break {
    display: none;
  }

  .hero-pill-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .hero-pill-row::-webkit-scrollbar {
    display: none;
  }

  .hero-lower-grid,
  .pricing-items {
    grid-template-columns: 1fr;
  }

  .pricing-item {
    align-items: start;
    flex-direction: column;
  }

  .pricing-launch-note {
    flex-direction: column;
  }

  .calendar-grid {
    gap: 8px;
  }

  .calendar-day {
    min-height: 64px;
  }

  .booking-actions,
  .hero-actions,
  .trust-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .trust-actions .button,
  .trust-header-actions .button {
    width: 100%;
  }

  .trust-header-actions {
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 4px;
  }
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
:root {
  --cb-teal: #18a8b6;
  --cb-teal-dark: #0f7f8b;
  --cb-teal-soft: #edf7f8;
  --cb-text: #14343c;
  --cb-muted: #5f7480;
  --cb-light-muted: #8a9faa;
  --cb-panel: rgba(255, 255, 255, 0.98);
  --cb-border: rgba(24, 168, 182, 0.14);
  --cb-radius: 20px;
}

.cookie-overlay {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(740px, calc(100% - 32px));
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}
.cookie-overlay.is-open { display: block; pointer-events: auto; }
.cookie-overlay.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-overlay.is-closing {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
}

.cookie-banner {
  background: var(--cb-panel);
  border-radius: var(--cb-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px var(--cb-border);
  overflow: hidden;
}

.cookie-content {
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.cookie-badge {
  display: none;
}

.cookie-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cb-text);
  margin: 0;
  white-space: nowrap;
}

.cookie-desc {
  flex: 1 1 280px;
  margin: 0;
  color: var(--cb-muted);
  line-height: 1.5;
  font-size: 0.82rem;
}
.cookie-desc strong { color: var(--cb-text); font-weight: 600; }

.cookie-pun-card {
  background: var(--cb-teal-soft);
  border: 1px solid var(--cb-border);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 16px;
  font-size: 0.83rem;
  color: var(--cb-muted);
  font-style: italic;
  line-height: 1.55;
}
.cookie-pun-card strong {
  color: var(--cb-teal-dark);
  font-style: normal;
  font-weight: 600;
}

/* Settings accordion */
.cookie-settings {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s cubic-bezier(0.4,0,0.2,1);
}
.cookie-settings.is-visible { grid-template-rows: 1fr; }
.cookie-settings-inner { overflow: hidden; }

.cookie-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 13px 0;
}
.cookie-row + .cookie-row { border-top: 1px solid rgba(0,0,0,0.06); }
.cookie-row h4 { margin: 0 0 3px; color: var(--cb-text); font-size: 0.88rem; font-weight: 600; }
.cookie-row p  { margin: 0; color: var(--cb-muted); font-size: 0.81rem; line-height: 1.5; }

/* Toggle */
.cookie-switch { position: relative; width: 46px; height: 26px; flex: 0 0 auto; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  inset: 0;
  background: #c8d8dc;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 4px; top: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
  transition: 0.25s cubic-bezier(0.22,1,0.36,1);
}
.cookie-switch input:checked + .cookie-slider { background: var(--cb-teal); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider { background: #9bbec4; cursor: not-allowed; }

/* Buttons */
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  flex-shrink: 0;
}
.cookie-btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s ease;
}
.cookie-btn:hover  { transform: translateY(-1px); }
.cookie-btn:active { transform: translateY(0) scale(0.98); }

.cookie-btn.primary {
  background: linear-gradient(135deg, var(--cb-teal), var(--cb-teal-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,168,182,0.28);
}
.cookie-btn.primary:hover { box-shadow: 0 6px 24px rgba(24,168,182,0.38); }

.cookie-btn.secondary {
  background: #edf4f5;
  color: var(--cb-muted);
  border: 1.5px solid #c8dde0;
}
.cookie-btn.secondary:hover { background: #daeef0; }

.cookie-btn.ghost {
  background: transparent;
  color: var(--cb-light-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 10px;
}
.cookie-btn.ghost:hover { color: var(--cb-teal); transform: none; }

/* Footer links */
.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.cookie-links a { color: var(--cb-muted); text-decoration: none; }
.cookie-links a:hover { color: var(--cb-teal-dark); text-decoration: underline; }

.cookie-footer-note { display: none; }

/* FAB */
.cookie-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12), 0 0 0 1px var(--cb-border);
  width: 50px; height: 50px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.cookie-fab:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18), 0 0 0 1px var(--cb-border);
}
.cookie-fab.is-visible { display: flex; }

@media (max-width: 640px) {
  .cookie-content { padding: 14px 16px; gap: 10px; }
  .cookie-title { font-size: 0.84rem; white-space: normal; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
