/* JoySmileDent — Adriatic dental tourism */

:root {
  --sea-ink: #0a2e3a;
  --sea: #125a6b;
  --sea-mid: #1f7a8c;
  --foam: #e7f2f1;
  --sand: #f3efe6;
  --paper: #faf8f4;
  --ink: #14212b;
  --muted: #5a6b73;
  --line: rgba(20, 33, 43, 0.12);
  --gold: #b0893d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(10, 46, 58, 0.18);
  --radius: 2px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31, 122, 140, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(176, 137, 61, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--foam) 48%, var(--sand) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sea);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sea-ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(250, 248, 244, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 248, 244, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50% 50% 45% 55%;
  background:
    radial-gradient(circle at 35% 30%, #dff4f2 0 18%, transparent 19%),
    linear-gradient(145deg, var(--sea-mid), var(--sea-ink));
  box-shadow: inset 0 -8px 16px rgba(0, 0, 0, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-text small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.nav-primary {
  margin-left: auto;
}

.nav-primary ul {
  display: flex;
  gap: 1.35rem;
}

.nav-primary a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-cta {
  display: none;
}

.lang-switch {
  position: relative;
}

.lang-switch__btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 2.4rem;
}

.lang-switch__list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 11rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.35rem;
  z-index: 20;
}

.lang-switch__list a {
  display: flex;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.lang-switch__list a span {
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sea);
  min-width: 1.6rem;
}

.lang-switch__list a:hover {
  background: var(--foam);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 0.85rem; }
.nav-toggle span:nth-child(2) { top: 1.22rem; }
.nav-toggle span:nth-child(3) { top: 1.6rem; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 1.22rem;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 1.22rem;
  transform: rotate(-45deg);
}

/* Mobile drawer — slides in from the right */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 46, 58, 0.42);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  width: min(22rem, 88vw);
  height: 100%;
  height: 100dvh;
  background:
    linear-gradient(180deg, #faf8f4 0%, #eef5f4 100%);
  box-shadow: -18px 0 50px rgba(10, 46, 58, 0.18);
  padding: 1.15rem 1.35rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.drawer-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  cursor: pointer;
}

.drawer-close span {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  top: 50%;
  height: 1.5px;
  background: var(--ink);
}

.drawer-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.35rem 0;
}

.mobile-drawer__nav ul {
  display: grid;
  gap: 0.15rem;
}

.mobile-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.55rem 0.15rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: color 0.25s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mobile-drawer.is-open .mobile-drawer__nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.08s + var(--i, 0) * 0.05s);
}

.mobile-drawer__nav a[aria-current="page"],
.mobile-drawer__nav a:hover {
  color: var(--sea);
}

.mobile-drawer__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lang-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.2rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.lang-chip.is-active,
.lang-chip:hover {
  background: var(--sea-ink);
  border-color: var(--sea-ink);
  color: var(--white);
}

.mobile-drawer__cta .btn {
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.35s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn--solid {
  background: var(--sea-ink);
  color: var(--white);
}

.btn--solid:hover {
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(10, 46, 58, 0.28);
}

.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn--shine:hover::after {
  transform: translateX(120%);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.section .btn--ghost,
.page-hero .btn--ghost,
.contact-side .btn--ghost {
  border-color: var(--sea-ink);
  color: var(--sea-ink);
}

.section .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.contact-side .btn--ghost:hover {
  background: var(--sea-ink);
  color: var(--white);
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--sea);
}

.treat-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.treat-card-link .text-link {
  display: inline-block;
  margin-top: 0.75rem;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.crumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.crumb a:hover {
  color: #fff;
}

.treatment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.treatment-body .treat-block {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.treatment-body .treat-block h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.treatment-body .treat-block p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 68ch;
}

.treat-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.treat-steps li {
  padding-left: 0.25rem;
}

.treat-faq details {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0;
}

.treat-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.treat-faq details p {
  margin: 0.65rem 0 0;
}

.treatment-side__card {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.treatment-side__card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.treatment-side__list {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
  max-height: 55vh;
  overflow: auto;
}

.treatment-side__list a {
  display: block;
  padding: 0.45rem 0;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.treatment-side__list a:hover,
.treatment-side__list a[aria-current="page"] {
  color: var(--sea);
}

.treatment-side__card .btn {
  width: 100%;
}

@media (max-width: 960px) {
  .treatment-layout {
    grid-template-columns: 1fr;
  }

  .treatment-side__card {
    position: static;
  }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--sea-mid));
  transition: width 0.08s linear;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: clamp(28rem, 62vh, 36rem);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease);
  animation: none;
}

.hero__img.is-active {
  opacity: 1;
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 46, 58, 0.32) 0%, rgba(10, 46, 58, 0.22) 35%, rgba(10, 46, 58, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 46, 58, 0.5), transparent 58%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.25rem;
  max-width: 40rem;
  width: var(--shell);
  margin-inline: auto;
}

.hero__content > * {
  max-width: 38rem;
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.35rem;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.hero__lead {
  font-size: 1.05rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero__meta {
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
}

.hero [data-hero-line] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.hero.is-ready [data-hero-line] {
  opacity: 1;
  transform: none;
}

.hero.is-ready [data-hero-line]:nth-child(1) { transition-delay: 0.05s; }
.hero.is-ready [data-hero-line]:nth-child(2) { transition-delay: 0.14s; }
.hero.is-ready [data-hero-line]:nth-child(3) { transition-delay: 0.22s; }
.hero.is-ready [data-hero-line]:nth-child(4) { transition-delay: 0.3s; }
.hero.is-ready [data-hero-line]:nth-child(5) { transition-delay: 0.38s; }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 3.2rem;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero__scroll span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--gold);
  animation: scroll-pulse 1.8s var(--ease) infinite;
}

@keyframes hero-drift {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1.2%, 0); }
}

@keyframes scroll-pulse {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}

.section-head--left {
  text-align: left;
  margin-left: 0;
}

.section-head h2,
.page-hero h1,
.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
}

.section-head p,
.page-hero__lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}

/* Treatments */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.treat-item {
  padding: 0 0 1rem;
  border-top: 1px solid transparent;
  transition: transform 0.45s var(--ease);
}

.treat-item:hover {
  transform: translateY(-4px);
}

.treat-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1rem;
  position: relative;
  background: #d9e6e5;
}

.treat-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 46, 58, 0.28));
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.treat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.96) contrast(1.03);
}

.treat-item:hover .treat-media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.treat-item h3,
.treat-item h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.treat-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

.treat-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0.15rem 0 0.75rem;
  border: 1.5px solid var(--sea-mid);
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.treat-item:hover .treat-icon {
  transform: rotate(12deg) scale(1.06);
  border-color: var(--gold);
}

.treat-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  background: linear-gradient(145deg, var(--gold), transparent 70%);
  opacity: 0.85;
}

/* Why */
.why-layout,
.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.why-visual,
.about-visual,
.media-frame {
  margin: 0;
  overflow: hidden;
  min-height: 28rem;
  position: relative;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.why-visual img,
.about-visual img,
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.08);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: transform;
}

.media-frame:hover img {
  filter: saturate(1.05) contrast(1.04);
}

.why-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-list h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.why-list p {
  color: var(--muted);
  margin: 0;
}

/* Journey */
.journey-section {
  background: linear-gradient(180deg, transparent, rgba(231, 242, 241, 0.7));
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: none;
}

.journey-steps li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.journey-steps h3 {
  font-size: 1.15rem;
}

.journey-steps p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(18, 90, 107, 0.96), rgba(10, 46, 58, 0.96)),
    var(--sea-ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band__copy {
  position: relative;
  z-index: 1;
}

.cta-band__actions {
  position: relative;
  z-index: 1;
}

.cta-band__inner::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 180%;
  top: -40%;
  left: -20%;
  background: radial-gradient(circle, rgba(176, 137, 61, 0.28), transparent 65%);
  animation: cta-glow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cta-glow {
  from { transform: translateX(0); opacity: 0.55; }
  to { transform: translateX(120%); opacity: 0.9; }
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 42ch;
}

.cta-band .btn--solid {
  background: var(--white);
  color: var(--sea-ink);
  flex-shrink: 0;
}

.cta-band .btn--solid:hover {
  background: var(--foam);
  color: var(--sea-ink);
}

/* Page hero */
.page-hero {
  padding: clamp(4.5rem, 10vw, 7rem) 0 2rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero__lead {
  max-width: 42ch;
}

.page-hero--visual {
  position: relative;
  min-height: clamp(18rem, 42vw, 26rem);
  display: grid;
  align-items: end;
  padding: 0;
  color: var(--white);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 20s var(--ease) infinite alternate;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 46, 58, 0.25), rgba(10, 46, 58, 0.78)),
    linear-gradient(90deg, rgba(10, 46, 58, 0.45), transparent 70%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 8rem) 0 2.5rem;
}

.page-hero--visual .page-hero__lead {
  color: rgba(255, 255, 255, 0.84);
}

/* Atmosphere strip */
.atmosphere {
  padding: 0 0 clamp(2rem, 5vw, 3.5rem);
}

.atmosphere__track {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.65rem;
  width: min(1280px, calc(100% - 1.5rem));
  margin-inline: auto;
}

.atmosphere__shot {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--foam);
}

.atmosphere__shot:first-child {
  aspect-ratio: 5 / 4;
}

.atmosphere__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 1s var(--ease);
  filter: saturate(0.94);
}

.atmosphere__shot:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

/* About stats — not card clutter; editorial row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--sea);
  margin-bottom: 0.35rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.prose p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

/* Prices */
.price-table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.price-table td:nth-child(2) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--sea);
}

.prices-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 122, 140, 0.35);
  border-color: var(--sea-mid);
}

.contact-side {
  padding-top: 0.5rem;
}

.contact-side h2 {
  font-size: 1.5rem;
}

.contact-side p {
  color: var(--muted);
}

.contact-side .btn {
  margin-top: 1rem;
}

.form-notice {
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.form-notice--ok {
  background: rgba(31, 122, 140, 0.12);
  color: var(--sea-ink);
}

.form-notice--err {
  background: rgba(160, 50, 40, 0.1);
  color: #7a241c;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(10, 46, 58, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr;
  gap: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-brand p,
.footer-blurb,
.footer-contact > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-blurb {
  margin: 0.85rem 0 0;
  max-width: 36ch;
  line-height: 1.65;
}

.footer-nav ul,
.footer-legal ul {
  display: grid;
  gap: 0.15rem;
}

.footer-nav a,
.footer-legal a {
  text-decoration: none;
  display: inline-block;
  padding: 0.3rem 0;
  font-weight: 500;
}

.footer-bar {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bar p {
  margin: 0;
}

/* Reveal motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.price-table tbody tr {
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.price-table tbody tr:hover {
  background: rgba(31, 122, 140, 0.06);
}

.journey-steps li {
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.journey-steps li:hover {
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.stats-row strong {
  transition: transform 0.35s var(--ease);
}

.stats-section.is-visible .stats-row strong {
  animation: rise 0.7s var(--ease) both;
}

/* Responsive */
@media (max-width: 960px) {
  .nav-primary {
    display: none;
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-inner {
    min-height: 3.85rem;
    gap: 0.75rem;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .treat-grid,
  .journey-steps,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .why-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .why-visual,
  .about-visual,
  .why-visual img,
  .about-visual img {
    min-height: 18rem;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .atmosphere__track {
    grid-template-columns: 1fr;
  }

  .atmosphere__shot,
  .atmosphere__shot:first-child {
    aspect-ratio: 16 / 10;
  }
}

@media (min-width: 961px) {
  .header-cta {
    display: inline-flex;
  }

  .nav-toggle,
  .nav-backdrop,
  .mobile-drawer {
    display: none !important;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .brand-text small {
    display: none;
  }

  .lang-switch--header .lang-switch__btn {
    padding-inline: 0.55rem;
  }

  .treat-grid,
  .journey-steps,
  .stats-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
  }

  .footer-brand {
    grid-column: auto;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .footer-blurb {
    max-width: none;
  }

  .brand--footer .brand-text small {
    display: block;
  }

  .footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
    color: var(--sea-ink);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .footer-social a:hover {
    border-color: var(--sea-mid);
    background: var(--foam);
    color: var(--sea);
  }

  .footer-nav,
  .footer-contact {
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--line);
  }

  .footer-contact {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-nav ul,
  .footer-legal ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem 1rem;
  }

  .footer-legal {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
  }

  .footer-heading--spaced,
  .footer-legal .footer-heading {
    margin-top: 0;
  }

  .footer-bar {
    text-align: center;
    padding-top: 1.1rem;
  }

  .footer-bar p {
    text-wrap: balance;
    line-height: 1.5;
  }

  .site-footer {
    padding: 2.5rem 0 1.35rem;
  }

  .hero__content {
    padding: 4.5rem 0 2.5rem;
  }

  .hero {
    min-height: clamp(24rem, 58vh, 32rem);
  }

  .section-head {
    margin-bottom: 2rem;
  }
}

/* Homepage conversion — aligned with design system */
.section--band {
  background: linear-gradient(180deg, rgba(231, 242, 241, 0.55), rgba(243, 239, 230, 0.35));
  border-block: 1px solid var(--line);
}

.shell--narrow {
  max-width: 44rem;
  margin-inline: auto;
}

.shell--readable {
  max-width: 52rem;
  margin-inline: auto;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding: 0 0 0.25rem;
}

.trust-strip__grid {
  list-style: none;
  margin: 0;
  padding: 1rem 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(10, 46, 58, 0.1);
}

.trust-pill {
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 1rem;
  border-right: 1px solid var(--line);
  align-content: start;
}

.trust-pill:last-child {
  border-right: 0;
}

.trust-pill strong {
  font-family: var(--font-display);
  color: var(--sea-ink);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.trust-pill span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.brand-logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.brand-logos li {
  display: grid;
  place-items: center;
  min-height: 4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  letter-spacing: 0.01em;
  color: var(--sea-ink);
  text-align: center;
  padding: 0.75rem 0.5rem;
  font-size: 0.92rem;
}

.cert-row {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.cert-row li {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.check-grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding: 0.9rem 0 0;
  font-weight: 600;
  color: var(--sea-ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.check-grid li span {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  align-items: start;
}

.ba-card {
  display: grid;
  gap: 0.9rem;
}

.ba-card h3 {
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 600;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.ba-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d9e6e5;
}

.ba-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.ba-pair figcaption {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  background: rgba(10, 46, 58, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.review-card p {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
  flex: 1;
}

.review-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: auto;
}

.how-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
}

.how-flow li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.65rem;
  align-content: start;
  position: relative;
}

.how-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.45rem;
  right: -0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
  opacity: 0.7;
}

.how-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.how-flow strong {
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink);
}

.why-list--compact {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.why-list--compact li {
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.why-list--compact h3 {
  font-size: 1.08rem;
  margin-bottom: 0.2rem;
}

.compare-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: rgba(10, 46, 58, 0.04);
  font-weight: 700;
}

.compare-table td:nth-child(2) {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(90, 107, 115, 0.45);
}

.compare-table td:nth-child(3) strong {
  color: var(--sea-ink);
  font-size: 1.05rem;
}

.compare-table .save {
  color: var(--sea);
  font-weight: 750;
}

.compare-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.compare-section .section-cta {
  margin-top: 1.75rem;
}

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.5rem;
  align-items: start;
}

.clinic-card {
  display: grid;
  gap: 0;
  background: transparent;
}

.clinic-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9e6e5;
  margin-bottom: 1rem;
}

.clinic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.clinic-card:hover .clinic-media img {
  transform: scale(1.07);
}

.clinic-body {
  display: grid;
  gap: 0.3rem;
}

.clinic-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.clinic-meta {
  color: var(--sea);
  font-weight: 650;
  font-size: 0.9rem;
  margin: 0;
}

.clinic-body p:last-child {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 1.1rem 1.75rem 1.1rem 0;
  list-style: none;
  position: relative;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.65;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cta-band__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 650;
  margin: 0 0 0.65rem;
  color: var(--sea-ink);
  font-size: 1.05rem;
}

.footer-heading--spaced {
  margin-top: 1.35rem;
}

.footer-legal {
  margin-top: 1.35rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.15rem;
}

.footer-social a,
.footer-contact a,
.footer-legal a {
  color: var(--sea);
  font-weight: 600;
  text-decoration: none;
}

.footer-social a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--sea-ink);
}

.legal-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.page-hero--compact {
  padding: 4.5rem 0 2rem;
}

@media (max-width: 980px) {
  .trust-strip {
    margin-top: 1.25rem;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0.35rem;
  }

  .trust-pill {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0.9rem;
  }

  .trust-pill:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-pill:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .brand-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cert-row,
  .check-grid,
  .ba-grid,
  .reviews-grid,
  .clinics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .how-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .how-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-logos,
  .cert-row,
  .check-grid,
  .ba-grid,
  .reviews-grid,
  .how-flow,
  .clinics-grid,
  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-pill,
  .trust-pill:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-pill:last-child {
    border-bottom: 0;
  }

  .how-flow {
    grid-template-columns: 1fr 1fr;
  }

  .ba-card h3 {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .footer-social,
  .footer-nav ul,
  .footer-legal ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__img,
  .page-hero__bg img {
    animation: none !important;
    transform: none !important;
  }

  [data-reveal] {
    filter: none;
  }

  .mobile-drawer,
  .mobile-drawer__nav a,
  .nav-backdrop {
    transition: none !important;
  }
}
