@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --primary: #78B4B7;
  --primary-deep: #4a9397;
  --dark: #0c2224;
  --dark-soft: #153a3d;
  --light: #f3fafb;
  --light-warm: #eef6f4;
  --text: #0f1f21;
  --muted: #3d5c5e;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 50px rgba(12, 34, 36, 0.12);
  --radius: 18px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.68s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

html.scroll-reveal .section.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
}

html.scroll-reveal .section.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(120, 180, 183, 0.35), transparent 55%),
    radial-gradient(900px 500px at 95% 20%, rgba(17, 51, 54, 0.08), transparent 50%),
    var(--light);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.22;
  margin-top: 0;
  letter-spacing: -0.02em;
}

a {
  color: var(--dark-soft);
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--primary-deep);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container-narrow {
  width: min(760px, 92%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 180, 183, 0.35);
  box-shadow: 0 8px 30px rgba(12, 34, 36, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 12px;
}

.logo {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(12, 34, 36, 0.15));
}

.logo-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(120, 180, 183, 0.22);
  border-color: rgba(120, 180, 183, 0.45);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(120, 180, 183, 0.55);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--dark);
  border-radius: 2px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(88vh, 720px);
  position: relative;
}

.hero-image {
  position: relative;
  min-height: 0;
  background:
    linear-gradient(145deg, rgba(12, 34, 36, 0.55), rgba(120, 180, 183, 0.28)),
    url("../image/hero-home.jpg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  background: linear-gradient(160deg, var(--primary) 0%, #5ea3a6 55%, #4a8f93 100%);
  color: #071214;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 18, 20, 0.12);
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
}

.hero-tag i {
  color: var(--dark);
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 36ch;
  margin: 0 0 1.5rem;
  color: #0a1a1c;
}

.hero-lead a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-lead a:hover,
.hero-lead a:focus-visible {
  color: #051012;
}

.hero-content .list-pills {
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.hero-content .mosaic-tiles {
  margin-top: 0.5rem;
}

.inline-form,
.contact-form {
  display: grid;
  gap: 12px;
  max-width: 400px;
}

.inline-form {
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

input,
textarea,
button {
  font: inherit;
  border-radius: 12px;
  border: 1px solid rgba(7, 18, 20, 0.15);
  padding: 12px 14px;
}

input,
textarea {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

button,
.btn-link,
.step-btn {
  background: var(--dark);
  color: var(--white);
  border: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 28px rgba(12, 34, 36, 0.18);
}

.btn-link-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
}

.btn-link-outline:hover,
.btn-link-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.btn-link:hover,
.step-btn:hover,
button:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.split-fifty {
  padding: 0;
  overflow: hidden;
}

.split-fifty__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  align-items: center;
}

.split-fifty__media {
  position: relative;
  width: 100%;
  align-self: center;
}

.split-fifty__media img {
  width: 100%;
  height: 375px;
  object-fit: cover;
  display: block;
}

.split-fifty__text {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-fifty__text .prose-intro {
  margin-bottom: 1rem;
}

.split-fifty__text .split-fifty__more {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.split-fifty--tint .split-fifty__text {
  background: linear-gradient(180deg, rgba(243, 250, 251, 0.98), var(--white));
}

.split-fifty--reverse .split-fifty__media {
  order: 2;
}

.split-fifty--reverse .split-fifty__text {
  order: 1;
}

.section-heading-bilingual {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.benefits-heading-note {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
}

.section-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.4);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.benefit-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.section-interactive {
  background: linear-gradient(165deg, rgba(120, 180, 183, 0.2), rgba(255, 255, 255, 0.96));
}

.interactive-widget {
  margin-top: 1.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.45);
  box-shadow: var(--shadow);
}

.interactive-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.interactive-tab {
  font: inherit;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(120, 180, 183, 0.55);
  background: rgba(243, 250, 251, 0.8);
  color: var(--dark-soft);
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.interactive-tab:hover,
.interactive-tab:focus-visible {
  border-color: var(--primary-deep);
  outline: none;
}

.interactive-tab[aria-selected="true"] {
  background: var(--dark);
  color: #e8f7f7;
  border-color: var(--dark);
  box-shadow: 0 8px 22px rgba(12, 34, 36, 0.18);
}

.interactive-panel {
  padding: 1rem 1.1rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(217, 239, 240, 0.45), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(120, 180, 183, 0.35);
  margin-bottom: 1.5rem;
}

.interactive-panel p {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
}

.interactive-panel p:last-child {
  margin-bottom: 0;
}

.interactive-panel__foot {
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
}

.interactive-panel__foot a {
  font-weight: 600;
}

.interactive-tempo {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(120, 180, 183, 0.3);
}

.interactive-tempo__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--dark);
}

.interactive-tempo__row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
}

.interactive-tempo__hint {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  flex-shrink: 0;
}

.interactive-slider {
  flex: 1;
  min-width: 0;
  height: 8px;
  border-radius: 999px;
  accent-color: var(--primary-deep);
  cursor: pointer;
}

.interactive-tempo__readout {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.5;
  min-height: 3em;
}

.contrast {
  background: linear-gradient(180deg, rgba(217, 239, 240, 0.95), rgba(243, 250, 251, 0.92));
}

.section-wave {
  background: var(--white);
}

.section-wave::before {
  content: "";
  display: block;
  height: 6px;
  width: min(120px, 40%);
  margin-bottom: 1.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--dark));
}

.section-accent-slab {
  background: linear-gradient(110deg, rgba(120, 180, 183, 0.28), rgba(255, 255, 255, 0.95) 45%, var(--white));
  box-shadow: var(--shadow);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.section-label i {
  color: var(--primary-deep);
}

.section-label-light {
  color: rgba(232, 247, 247, 0.92);
}

.section-label-light i {
  color: #b8e6e8;
}

.prose p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose ul,
.prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
  font-size: 1.05rem;
  color: var(--text);
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose li:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  color: var(--dark-soft);
}

.prose code {
  font-size: 0.9em;
  background: rgba(120, 180, 183, 0.18);
  padding: 0.12em 0.4em;
  border-radius: 6px;
}

.prose-intro {
  margin: 0;
  font-size: 1.05rem;
  max-width: 65ch;
  color: var(--text);
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.45);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card i {
  color: var(--dark-soft);
  font-size: 1.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.5);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  box-shadow: 0 6px 20px rgba(12, 34, 36, 0.06);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
}

.section-scheduler {
  background: linear-gradient(165deg, var(--dark) 0%, #143a3d 40%, #0f2c2f 100%);
  color: #dff4f4;
}

.section-scheduler h2 {
  color: #f4fdfd;
}

.scheduler-intro {
  max-width: 640px;
  margin-bottom: 2rem;
}

.scheduler-lede {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(223, 244, 244, 0.88);
}

.week-scheduler-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.5rem;
  align-items: start;
}

.week-scheduler {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 180, 183, 0.35);
  border-radius: var(--radius);
  padding: 12px;
  overflow: auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.scheduler-grid {
  display: grid;
  grid-template-columns: 88px repeat(7, minmax(72px, 1fr));
  gap: 8px;
  min-width: 560px;
}

.scheduler-cell {
  border-radius: 12px;
  min-height: 44px;
}

.scheduler-cell.head {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(120, 180, 183, 0.22);
  color: #f0fbfb;
  border: 1px solid rgba(120, 180, 183, 0.25);
}

.scheduler-cell.corner {
  background: rgba(255, 255, 255, 0.08);
}

.scheduler-icon {
  font-size: 1rem;
  color: var(--primary);
}

.scheduler-cell.row-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(223, 244, 244, 0.75);
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(120, 180, 183, 0.2);
}

.scheduler-cell.slot textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  font-size: 0.82rem;
  border-radius: 10px;
  border: 1px solid rgba(120, 180, 183, 0.35);
  background: rgba(7, 20, 22, 0.55);
  color: #f4fcfc;
  padding: 8px;
}

.scheduler-cell.slot textarea::placeholder {
  color: rgba(223, 244, 244, 0.35);
}

.scheduler-cell.slot textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  color: var(--text);
  box-shadow: var(--shadow);
}

.scheduler-side h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.scheduler-tips {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.scheduler-tips li {
  margin-bottom: 0.45rem;
}

.scheduler-tips.list-check {
  padding-left: 0;
  list-style: none;
}

.hub-heading {
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hub-card {
  display: block;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.45);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    border-color 0.22s ease;
}

.hub-card:hover,
.hub-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(12, 34, 36, 0.14);
  outline: none;
}

.hub-grid .hub-card:nth-child(1) {
  transition-delay: 0.02s;
}

.hub-grid .hub-card:nth-child(2) {
  transition-delay: 0.05s;
}

.hub-grid .hub-card:nth-child(3) {
  transition-delay: 0.08s;
}

.hub-grid .hub-card:nth-child(4) {
  transition-delay: 0.11s;
}

.hub-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.hub-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hub-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(120, 180, 183, 0.25);
  color: var(--dark-soft);
  margin-bottom: 0.85rem;
}

.hub-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-final {
  text-align: center;
}

.cta-final .btn-link {
  margin-top: 0.5rem;
}

.contact-strip {
  background: var(--white);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius);
  border: 1px solid rgba(120, 180, 183, 0.4);
  box-shadow: var(--shadow);
}

.contact-strip__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-details-list__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(120, 180, 183, 0.22);
  color: var(--dark-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}

.site-footer {
  background: #071316;
  color: #c8e8ea;
  padding: 32px 0 40px;
}

.site-footer a {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}

.footer-cookie-pref {
  margin: 0 0 14px;
  font-size: 0.9rem;
}

.footer-cookie-btn {
  appearance: none;
  font: inherit;
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(200, 232, 234, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: #ecf8f8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-cookie-btn:hover,
.footer-cookie-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.disclaimer {
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 85ch;
}

.disclaimer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer a:hover,
.disclaimer a:focus-visible {
  opacity: 0.92;
}

.trust-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 180, 183, 0.45);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.98rem;
  color: var(--text);
}

.trust-panel h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

.trust-panel p {
  margin: 0 0 0.75rem;
  line-height: 1.55;
}

.trust-panel p:last-child {
  margin-bottom: 0;
}

.trust-panel ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.trust-panel li {
  margin-bottom: 0.35rem;
}

.trust-panel__note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.75rem !important;
}

.interactive-legal-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-preface {
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #061214;
  color: #ecf8f8;
  border: 1px solid rgba(120, 180, 183, 0.45);
  border-radius: var(--radius);
  padding: 16px 18px;
  z-index: 1200;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-btn.ghost {
  background: transparent;
  border: 1px solid rgba(140, 192, 194, 0.9);
}

.cookie-settings {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.success-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.success-wrap .success-followup {
  flex: 1;
  display: flex;
  align-items: center;
}

.success-wrap .hero-content > .btn-link {
  margin-top: 0.75rem;
  max-width: 400px;
}

.success-wat-nu-title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.success-tip-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.layout-split--reverse {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
}

.layout-split--reverse .layout-split__rail {
  order: -1;
}

.layout-split__main {
  min-width: 0;
}

.layout-split__rail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 251, 0.92));
  border: 1px solid rgba(120, 180, 183, 0.45);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 14px 36px rgba(12, 34, 36, 0.08);
  position: relative;
  overflow: hidden;
}

.aside-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--dark-soft));
  border-radius: 0 4px 4px 0;
}

.aside-panel__title {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  padding-left: 0.5rem;
}

.pull-quote {
  margin: 0;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  border-radius: 14px;
  background: rgba(120, 180, 183, 0.14);
  border-left: 4px solid var(--primary-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-soft);
  line-height: 1.45;
}

.pull-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-style: normal;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--muted);
}

.mosaic-tiles {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.mosaic-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.4);
  box-shadow: 0 8px 22px rgba(12, 34, 36, 0.06);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.mosaic-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(12, 34, 36, 0.1);
}

.mosaic-tile__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(120, 180, 183, 0.22);
  color: var(--dark-soft);
  flex-shrink: 0;
}

.list-elegant {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.list-elegant li {
  position: relative;
  padding: 0.55rem 0.65rem 0.55rem 2.35rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(120, 180, 183, 0.28);
  font-size: 0.96rem;
  line-height: 1.45;
}

.list-elegant li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 0 0 3px rgba(120, 180, 183, 0.2);
}

.list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.list-check li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 1.02rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  background: rgba(120, 180, 183, 0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.list-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.list-steps li {
  counter-increment: step;
  position: relative;
  padding: 0.75rem 1rem 0.75rem 3.25rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(120, 180, 183, 0.38);
  box-shadow: 0 6px 18px rgba(12, 34, 36, 0.05);
}

.list-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 10px;
  background: var(--dark);
  color: #e8f7f7;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", system-ui, sans-serif;
}

.list-pills {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.list-pills li {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(120, 180, 183, 0.2);
  border: 1px solid rgba(120, 180, 183, 0.35);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-soft);
}

.list-pills a {
  color: inherit;
  text-decoration: none;
}

.list-pills a:hover,
.list-pills a:focus-visible {
  color: var(--primary-deep);
  text-decoration: underline;
}

.list-ribbon {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(120, 180, 183, 0.35);
}

.list-ribbon li {
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid rgba(120, 180, 183, 0.2);
  font-size: 0.98rem;
  position: relative;
  padding-left: 2.5rem;
}

.list-ribbon li:last-child {
  border-bottom: 0;
}

.list-ribbon li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--primary-deep);
  rotate: 45deg;
}

.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px);
  gap: 2rem;
  align-items: start;
}

.faq-aside {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(120, 180, 183, 0.18), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(120, 180, 183, 0.35);
  font-size: 0.95rem;
  color: var(--muted);
  position: sticky;
  top: 96px;
}

.faq-aside h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: var(--dark);
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(120, 180, 183, 0.45);
  box-shadow: 0 16px 40px rgba(12, 34, 36, 0.1);
  line-height: 0;
}

.hub-heading::after {
  content: "";
  display: block;
  width: min(160px, 50%);
  height: 4px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--dark-soft), transparent);
  animation: line-grow 1.2s var(--ease-out) forwards;
  transform: scaleX(0);
}

.section-wave h2,
.section-accent-slab h2,
.contrast h2:not(.hub-heading) {
  position: relative;
  padding-bottom: 0.5rem;
}

.section-wave h2::after,
.section-accent-slab h2::after,
.contrast h2:not(.hub-heading)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--dark-soft));
}

.faq-list details {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: var(--primary-deep);
  box-shadow: 0 10px 28px rgba(12, 34, 36, 0.1);
}

.section-scheduler .glass-panel .list-check li::before {
  background: rgba(120, 180, 183, 0.35);
  color: #0c2224;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.scroll-reveal .section.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html.scroll-reveal .section.scroll-reveal.is-revealed {
    opacity: 1;
    transform: none;
  }

  .hub-heading::after {
    animation: none;
    transform: scaleX(1);
  }

  .hub-card,
  .mosaic-tile {
    transition: none;
  }

  .interactive-tab {
    transition: none;
  }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-image {
    min-height: 220px;
  }

  .split-fifty__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-fifty--reverse .split-fifty__media,
  .split-fifty--reverse .split-fifty__text {
    order: unset;
  }

  .split-fifty__media img {
    height: clamp(140px, 28vh, 200px);
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .two-col,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .week-scheduler-wrap {
    grid-template-columns: 1fr;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .layout-split,
  .layout-split--reverse {
    grid-template-columns: 1fr;
  }

  .layout-split--reverse .layout-split__rail {
    order: 0;
  }

  .faq-split {
    grid-template-columns: 1fr;
  }

  .faq-aside {
    position: static;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 4%;
    left: 4%;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(120, 180, 183, 0.45);
    border-radius: var(--radius);
    padding: 12px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 320px) {
  .container {
    width: 94%;
  }

  .scheduler-grid {
    min-width: 100%;
    grid-template-columns: 72px repeat(7, minmax(64px, 1fr));
    gap: 6px;
  }

  .section {
    padding: 2.5rem 0;
  }

  button,
  .btn-link,
  .step-btn,
  input,
  textarea {
    width: 100%;
  }

  .inline-form button {
    width: 100%;
  }
}
