:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-alt: #eef4f8;
  --surface-soft: #f9fbfd;
  --ink: #123047;
  --ink-muted: #587286;
  --ink-soft: #7f95a5;
  --line: rgba(18, 48, 71, 0.1);
  --primary: #0f4c6b;
  --primary-deep: #0a354c;
  --primary-soft: #d9edf6;
  --accent: #c9a96a;
  --accent-soft: rgba(201, 169, 106, 0.14);
  --shadow: 0 24px 60px rgba(9, 42, 63, 0.12);
  --shadow-soft: 0 14px 36px rgba(9, 42, 63, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 76, 107, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(201, 169, 106, 0.08), transparent 26%),
    linear-gradient(180deg, #fcfeff 0%, var(--bg) 65%, #edf4f8 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 48, 71, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f0d6a5);
  box-shadow: 0 0 0 4px rgba(201, 169, 106, 0.16);
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}

.section-heading h1 {
  font-size: clamp(2.9rem, 7vw, 5.7rem);
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.section-heading p {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--ink-muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
  font-weight: 700;
}

.btn:hover,
.btn-link:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #15648c);
  color: #fff;
  box-shadow: 0 18px 30px rgba(15, 76, 107, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-color: rgba(18, 48, 71, 0.1);
  backdrop-filter: blur(12px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(15, 76, 107, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
}

.site-header.scrolled .header-panel {
  box-shadow: 0 14px 40px rgba(14, 45, 67, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.header-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0 18px 0 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(201, 169, 106, 0.95), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, var(--primary-deep), var(--primary));
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px 15px;
  border-radius: 12px 12px 18px 18px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-top-width: 3px;
}

.brand-mark::after {
  inset: 18px 17px 11px;
  border-radius: 10px 10px 14px 14px;
  border-top: 0;
  opacity: 0.55;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  background: rgba(15, 76, 107, 0.08);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(18, 48, 71, 0.08);
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-toggle span::before {
  top: -6px;
}

.mobile-toggle span::after {
  top: 6px;
}

.mobile-toggle[aria-expanded="true"] span {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.page-hero {
  padding: 34px 0 88px;
}

.hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-media,
.page-hero-card,
.page-hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-copy,
.page-hero-card {
  padding: clamp(34px, 5vw, 56px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 241, 247, 0.84)),
    linear-gradient(145deg, rgba(15, 76, 107, 0.12), transparent 70%);
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -90px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 106, 0.18), transparent 70%);
}

.hero-kpis,
.trust-grid,
.grid-3,
.grid-4,
.review-grid,
.team-grid,
.detail-grid,
.faq-grid,
.form-grid {
  display: grid;
  gap: 20px;
}

.hero-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hero-kpis article,
.trust-card,
.feature-card,
.treatment-card,
.team-card,
.review-card,
.detail-card,
.info-card,
.expect-card,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 48, 71, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.hero-kpis article {
  padding: 18px 20px;
  min-height: 0;
  border-radius: 22px;
  display: block;
}

.hero-kpis strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-kpis span {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-kpis-copy {
  display: block;
}

.hero-media,
.page-hero-media {
  min-height: 670px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.hero-float {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 48, 71, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.section,
.site-footer {
  padding: 88px 0;
}

.section.compact {
  padding: 72px 0;
}

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

.grid-3,
.review-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.split-layout,
.two-column,
.footer-grid {
  display: grid;
  gap: 28px;
}

.split-layout,
.two-column {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
}

.trust-card,
.feature-card,
.treatment-card,
.review-card,
.detail-card,
.expect-card,
.info-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-card strong,
.feature-card h3,
.treatment-card h3,
.team-card h3,
.review-card h3,
.detail-card h3,
.info-card h3,
.expect-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  line-height: 1.2;
  font-size: 1.35rem;
  max-width: 16ch;
}

.trust-card p,
.feature-card p,
.treatment-card p,
.team-card p,
.review-card p,
.detail-card p,
.info-card p,
.expect-card p,
.faq-item p,
.content-panel p {
  margin: 0;
  color: var(--ink-muted);
}

.feature-card:hover,
.treatment-card:hover,
.review-card:hover,
.team-card:hover,
.detail-card:hover,
.expect-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(9, 42, 63, 0.14);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(160deg, rgba(15, 76, 107, 0.12), rgba(201, 169, 106, 0.18));
  color: var(--primary);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.image-panel {
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.image-panel.tall {
  min-height: 620px;
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 150px;
  height: 150px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(201, 169, 106, 0.25));
  backdrop-filter: blur(10px);
}

.content-panel,
.form-card,
.footer-shell {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.content-panel,
.form-card {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 48, 71, 0.08);
}

.meta-list,
.stats-row,
.contact-list,
.hours-list,
.treatment-tags,
.footer-links,
.social-row,
.bullet-list,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-pill,
.treatment-tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.stat-chip {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 76, 107, 0.08), rgba(255, 255, 255, 0.88));
  min-width: 160px;
}

.stat-chip strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.team-photo {
  aspect-ratio: 0.96;
  background-size: cover;
  background-position: center;
}

.team-content {
  padding: 24px;
}

.role {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 700;
}

.stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--accent);
}

.review-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 48, 71, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-copy .section-heading,
.page-hero-card .section-heading {
  max-width: 640px;
}

.content-panel .section-heading {
  max-width: 580px;
}

.review-card h3,
.detail-card h3,
.feature-card h3,
.info-card h3,
.expect-card h3 {
  max-width: 18ch;
}

.team-card h3 {
  max-width: none;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--primary-deep), #15648c);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-band::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -60px;
}

.cta-band::after {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -30px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 62ch;
}

.page-hero-media {
  min-height: 520px;
}

.stack {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
}

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

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 48, 71, 0.12);
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(15, 76, 107, 0.44);
  box-shadow: 0 0 0 4px rgba(15, 76, 107, 0.08);
}

.form-note {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.map-frame {
  min-height: 100%;
  border: 0;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-list,
.hours-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list li,
.hours-list li,
.bullet-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-muted);
}

.bullet-list li {
  justify-content: flex-start;
  position: relative;
  padding-left: 20px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e5c587);
}

.testimonial-masonry {
  columns: 3;
  column-gap: 20px;
}

.testimonial-masonry .review-card {
  break-inside: avoid;
  margin-bottom: 20px;
}

.faq-item {
  padding: 28px;
}

.footer-shell {
  padding: 34px;
  background: #0d2740;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Fraunces", serif;
  line-height: 1.2;
}

.footer-grid p,
.footer-grid a,
.footer-grid span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.94rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1120px) {
  .hero-shell,
  .page-hero-shell,
  .split-layout,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .review-grid,
  .team-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media,
  .page-hero-media {
    min-height: 560px;
  }
}

@media (max-width: 1160px) {
  .site-header {
    padding-top: 14px;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 20px);
    left: 20px;
    right: 20px;
    z-index: 49;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 48, 71, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    gap: 0;
  }

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

  .header-panel {
    min-height: 78px;
    padding-inline: 18px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .nav-wrap .btn {
    display: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-kpis,
  .grid-3,
  .review-grid,
  .team-grid,
  .grid-4,
  .detail-grid,
  .trust-grid,
  .faq-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .page-hero-media,
  .image-panel {
    min-height: 420px;
  }

  .hero-copy,
  .page-hero-card,
  .content-panel,
  .form-card,
  .cta-band,
  .footer-shell {
    padding: 24px;
  }

  .section,
  .site-footer {
    padding: 72px 0;
  }

  .section.compact,
  .hero,
  .page-hero {
    padding: 28px 0 64px;
  }

  .hero-float {
    left: 18px;
    right: 18px;
    max-width: none;
  }

  .testimonial-masonry {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .section-heading h1 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
    line-height: 1.02;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .btn,
  .btn-link {
    width: 100%;
  }

  .btn-row {
    width: 100%;
  }

  .hero-kpis article,
  .trust-card,
  .feature-card,
  .treatment-card,
  .review-card,
  .detail-card,
  .expect-card,
  .info-card,
  .faq-item {
    padding: 22px;
  }

  .brand-copy span {
    letter-spacing: 0.08em;
  }

  .hero-media,
  .page-hero-media,
  .image-panel {
    min-height: 360px;
  }
}
