:root {
  --brand: #2d919c;
  --brand-dark: #176b74;
  --brand-ink: #0d4b52;
  --brand-soft: #e6f3f4;
  --ink: #18272a;
  --muted: #617275;
  --paper: #fbfaf6;
  --white: #fff;
  --line: #d9e5e5;
  --sand: #f1eee6;
  --shadow: 0 22px 65px rgba(13,75,82,.12);
  --radius: 28px;
  --serif: Georgia,"Times New Roman",serif;
  --sans: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  z-index: 999;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

.topline {
  background: var(--brand-ink);
  color: #e8fbfd;
  font-size: .82rem;
}

.topline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 9px 0;
}

.topline a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,246,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,145,156,.14);
}

.nav-row {
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.brand-wordmark {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .94rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: .25s;
}

.main-nav a:hover:after, .main-nav a[aria-current="page"]:after {
  width: 100%;
}

.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform .2s,box-shadow .2s,background .2s;
}

.header-cta, .btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 10px 30px rgba(45,145,156,.24);
}

.header-cta:hover, .btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brand-dark);
}

.btn-secondary {
  border-color: rgba(24,39,42,.25);
  background: rgba(255,255,255,.7);
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.35rem;
  color: var(--ink);
}

.hero {
  overflow: hidden;
  padding: 70px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-dark);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(3.1rem,6vw,6.4rem);
  max-width: 760px;
  margin: 20px 0 25px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 35px;
  color: var(--muted);
  font-size: .88rem;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-notes span:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 50%;
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.art-orbit {
  position: absolute;
  inset: 5% 2% 5% 8%;
  border: 1px solid rgba(45,145,156,.27);
  border-radius: 50% 47% 53% 45% / 48% 56% 44% 52%;
  animation: float 8s ease-in-out infinite;
}

.art-panel {
  position: absolute;
  inset: 36px 30px 52px 45px;
  border-radius: 48% 52% 46% 54% / 43% 46% 54% 57%;
  background: linear-gradient(145deg,var(--brand),#6bb7be);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.art-panel:before, .art-panel:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}

.art-panel:before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -90px;
}

.art-panel:after {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -90px;
}

.art-panel img {
  width: 62%;
  filter: brightness(0) invert(1);
  opacity: .96;
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: white;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 18px 50px rgba(13,75,82,.18);
  max-width: 245px;
}

.floating-card.top {
  right: -10px;
  top: 54px;
}

.floating-card.bottom {
  left: 2px;
  bottom: 18px;
}

.floating-card small {
  display: block;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .67rem;
  margin-bottom: 5px;
}

.floating-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.2;
}

.floating-card p {
  font-size: .82rem;
  color: var(--muted);
  margin: 6px 0 0;
}

@keyframes float {
  50% {
    transform: rotate(4deg) scale(1.02);
  }
}

.band {
  border-block: 1px solid var(--line);
  background: white;
}

.band-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
}

.band-item {
  padding: 21px 18px;
  border-right: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 760;
}

.band-item:last-child {
  border-right: 0;
}

.band-item span {
  color: var(--brand);
  margin-right: 7px;
}

.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--brand-soft);
}

.section-dark {
  background: var(--brand-ink);
  color: white;
}

.section-sand {
  background: var(--sand);
}

.section-head {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.45rem,4.5vw,4.8rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 620px;
  margin: 0;
}

.section-dark .section-head p {
  color: #b9d1d3;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.treatment-card {
  position: relative;
  background: white;
  border: 1px solid rgba(45,145,156,.12);
  border-radius: 24px;
  padding: 30px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: .28s;
}

.treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(45,145,156,.4);
}

.service-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.9rem;
  color: rgba(45,145,156,.27);
  line-height: 1;
}

.treatment-card h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
  margin: 37px 0 14px;
}

.treatment-card p {
  color: var(--muted);
  font-size: .92rem;
}

.card-link {
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: .87rem;
}

.card-link:after {
  content: " →";
}

.treatment-card.featured {
  background: var(--brand-ink);
  color: white;
}

.treatment-card.featured p {
  color: #b9d1d3;
}

.treatment-card.featured .card-link {
  color: #8ed7de;
}

.treatment-card.featured .service-no {
  color: rgba(255,255,255,.22);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.quote-panel {
  min-height: 530px;
  border-radius: var(--radius);
  background: linear-gradient(145deg,#1b737c,var(--brand));
  position: relative;
  display: grid;
  place-items: center;
  padding: 56px;
  overflow: hidden;
  color: white;
}

.quote-panel:before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  right: -140px;
  bottom: -180px;
}

.quote-panel img {
  width: min(310px,80%);
  filter: brightness(0) invert(1);
  opacity: .95;
}

.quote-panel blockquote {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 30px;
  background: rgba(13,75,82,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 22px;
  border-radius: 17px;
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.35;
}

.copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem,4.3vw,4.6rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
  margin: 14px 0 24px;
}

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

.feature-list {
  display: grid;
  gap: 15px;
  margin: 30px 0;
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  align-items: start;
}

.feature b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.feature strong {
  display: block;
  margin-bottom: 3px;
}

.feature span {
  font-size: .9rem;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  overflow: hidden;
}

.step {
  background: var(--brand-ink);
  padding: 34px 28px;
  min-height: 270px;
}

.step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.1rem;
  color: #8ed7de;
}

.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin: 44px 0 10px;
}

.step p {
  color: #b9d1d3;
  font-size: .9rem;
}

.steps-note {
  text-align: center;
  color: #b9d1d3;
  margin: 34px 0 0;
}

.location-card {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-visual {
  min-height: 430px;
  background: var(--brand);
  position: relative;
  padding: 48px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-visual:before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50% 42% 52% 45%;
}

.location-visual > * {
  position: relative;
}

.location-visual img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.location-visual .big-address {
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1.12;
  max-width: 470px;
}

.location-copy {
  padding: 56px;
}

.contact-stack {
  display: grid;
  gap: 18px;
  margin: 30px 0;
}

.contact-row {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.contact-row small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .65rem;
}

.contact-row a, .contact-row span {
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-row a:hover {
  color: var(--brand-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.article-card {
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.article-card .tag {
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.18;
  margin: 28px 0 14px;
}

.article-card p {
  color: var(--muted);
  font-size: .9rem;
}

.article-card .card-link {
  margin-top: auto;
}

.cta {
  padding: 70px 0;
}

.cta-box {
  background: var(--brand);
  color: white;
  border-radius: var(--radius);
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box:after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  right: -150px;
  top: -150px;
}

.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem,4vw,4rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 760px;
  margin: 0;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  background: white;
  color: var(--brand-ink);
}

.page-hero {
  padding: 80px 0 60px;
}

.page-hero .crumb {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(3.2rem,6vw,6rem);
  max-width: 970px;
  margin: 0 0 24px;
}

.page-hero p {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 740px;
}

.page-hero .kicker {
  color: var(--brand-dark);
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 70px;
  align-items: start;
}

.prose {
  font-size: 1.02rem;
}

.prose h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin: 55px 0 18px;
}

.prose h3 {
  font-size: 1.22rem;
  margin: 32px 0 10px;
}

.prose p, .prose li {
  color: #465b5f;
}

.prose ul {
  padding-left: 20px;
}

.info-aside {
  position: sticky;
  top: 115px;
  background: var(--brand-soft);
  border-radius: 22px;
  padding: 28px;
}

.info-aside h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
}

.info-aside p {
  color: var(--muted);
  font-size: .9rem;
}

.info-aside .btn {
  width: 100%;
  margin-top: 10px;
}

.notice {
  border-left: 3px solid var(--brand);
  padding: 17px 20px;
  background: var(--brand-soft);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
  font-size: .91rem;
}

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

.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 20px;
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

footer {
  background: #102f33;
  color: #d9e8e9;
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 60px;
}

.footer-logo {
  width: 290px;
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}

.footer-grid h3 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8ed7de;
}

.footer-grid p, .footer-grid a {
  font-size: .9rem;
  color: #c0d2d4;
}

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

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
  padding-top: 24px;
  margin-top: 52px;
  font-size: .78rem;
  color: #91aaad;
}

.cookie-note {
  font-size: .82rem;
  color: var(--muted);
}

.legal-placeholder {
  background: #fff7df;
  border: 1px dashed #d7b95d;
  padding: 15px;
  border-radius: 10px;
}

@media (max-width:980px) {
  .main-nav, .header-cta {
    display: none;
  }
}

@media (max-width:980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }
}

@media (max-width:980px) {
  .main-nav.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 96px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 18px;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:980px) {
  .hero-grid, .split, .location-card, .section-head, .detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width:980px) {
  .hero-art {
    min-height: 480px;
    max-width: 620px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width:980px) {
  .treatment-grid, .blog-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:980px) {
  .steps {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:980px) {
  .info-aside {
    position: static;
  }
}

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

@media (max-width:980px) {
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}

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

@media (max-width:980px) {
  .section-head {
    gap: 18px;
  }
}

@media (max-width:980px) {
  .location-copy {
    padding: 42px;
  }
}

@media (max-width:980px) {
  .topline .container {
    justify-content: center;
  }
}

@media (max-width:980px) {
  .topline span:first-child {
    display: none;
  }
}

@media (max-width:650px) {
  .container {
    width: min(100% - 28px,1180px);
  }
}

@media (max-width:650px) {
  .topline {
    font-size: .75rem;
  }
}

@media (max-width:650px) {
  .nav-row {
    height: 70px;
  }
}

@media (max-width:650px) {
  .brand-wordmark {
    width: 154px;
  }
}

@media (max-width:650px) {
  .brand-icon {
    width: 38px;
  }
}

@media (max-width:650px) {
  .hero {
    padding: 45px 0 70px;
  }
}

@media (max-width:650px) {
  .hero h1 {
    font-size: 3.3rem;
  }
}

@media (max-width:650px) {
  .hero-art {
    min-height: 410px;
  }
}

@media (max-width:650px) {
  .art-panel {
    inset: 30px 10px 40px 20px;
  }
}

@media (max-width:650px) {
  .floating-card.top {
    right: 0;
    top: 20px;
  }
}

@media (max-width:650px) {
  .floating-card.bottom {
    left: 0;
    bottom: 0;
  }
}

@media (max-width:650px) {
  .section {
    padding: 76px 0;
  }
}

@media (max-width:650px) {
  .treatment-grid, .blog-grid, .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width:650px) {
  .band-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width:650px) {
  .band-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width:650px) {
  .band-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width:650px) {
  .quote-panel {
    min-height: 430px;
    padding: 40px;
  }
}

@media (max-width:650px) {
  .section-head h2 {
    font-size: 2.65rem;
  }
}

@media (max-width:650px) {
  .location-visual {
    min-height: 360px;
    padding: 34px;
  }
}

@media (max-width:650px) {
  .location-copy {
    padding: 34px 26px;
  }
}

@media (max-width:650px) {
  .cta-box {
    padding: 38px 28px;
  }
}

@media (max-width:650px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width:650px) {
  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (max-width:650px) {
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width:650px) {
  .page-hero h1 {
    font-size: 3.25rem;
  }
}

@media (max-width:650px) {
  .detail-layout {
    gap: 40px;
  }
}

.btn-secondary {
  color: black !important;
}

