:root {
  --turquoise: #58c5cb;
  --turquoise-deep: #2aa8b0;
  --turquoise-soft: #e9f8f9;
  --pink: #e76bab;
  --magenta: #d60079;
  --pink-soft: #fbe8f3;
  --ink: #202124;
  --muted: #62676d;
  --line: #dce8ea;
  --white: #ffffff;
  --surface: #fbfdfd;
  --shadow: 0 18px 48px rgba(31, 72, 77, .12);
  --shadow-soft: 0 10px 28px rgba(31, 72, 77, .09);
  --radius: 26px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(88,197,203,.35);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(34, 61, 65, .1); }
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  width: 250px;
  max-width: 42vw;
  flex: 0 1 auto;
}
.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.main-nav a {
  position: relative;
  padding: 11px 13px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 20%; right: 20%; bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--turquoise), var(--pink));
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--turquoise-deep); background: var(--turquoise-soft); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 11px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 88% 8%, rgba(231,107,171,.12), transparent 25%),
    radial-gradient(circle at 6% 88%, rgba(88,197,203,.14), transparent 28%),
    linear-gradient(180deg, #fff, #fbfdfd);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.hero-art { position: absolute; inset: 0; pointer-events: none; }
.arc {
  position: absolute;
  border: 2px solid rgba(88,197,203,.33);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}
.arc-a { width: 760px; height: 760px; right: -220px; top: -360px; }
.arc-b { width: 690px; height: 690px; right: -170px; top: -310px; }
.arc-c { width: 620px; height: 620px; right: -120px; top: -260px; border-color: rgba(231,107,171,.25); border-left-color: transparent; border-bottom-color: transparent; }

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .78rem;
  color: var(--turquoise-deep);
}
.hero h1,
.section-heading h2,
.identity-content h2,
.final-cta h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.02em;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  line-height: .98;
}
.title-rule {
  width: min(520px, 96%);
  height: 5px;
  margin: 26px 0 24px;
  background: var(--pink);
  border-radius: 99px;
  overflow: hidden;
}
.title-rule span {
  display: block;
  width: 44%;
  height: 100%;
  background: var(--turquoise);
  animation: rulePulse 4s ease-in-out infinite alternate;
}
@keyframes rulePulse { from { width: 32%; } to { width: 68%; } }
.hero-services {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--turquoise-deep), var(--turquoise)); box-shadow: 0 10px 22px rgba(42,168,176,.22); }
.btn-primary:hover { box-shadow: 0 14px 28px rgba(42,168,176,.3); }
.btn-secondary { color: var(--ink); background: #fff; border-color: rgba(231,107,171,.6); box-shadow: 0 8px 20px rgba(231,107,171,.10); }
.btn-secondary:hover { background: var(--pink-soft); border-color: var(--pink); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.btn-ghost:hover { background: var(--white); border-color: var(--turquoise); }

.hero-logo-wrap { position: relative; }
.hero-logo-card {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(88,197,203,.55);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-logo-card::before,
.hero-logo-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero-logo-card::before {
  width: 120px; height: 120px;
  right: -52px; top: -52px;
  border-radius: 50%;
  border: 12px solid rgba(231,107,171,.14);
}
.hero-logo-card::after {
  width: 90px; height: 90px;
  left: -42px; bottom: -42px;
  border-radius: 50%;
  border: 10px solid rgba(88,197,203,.17);
}
.hero-logo-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(32,33,36,.14);
}
.image-shine {
  position: absolute;
  inset: -60% auto -60% -32%;
  width: 24%;
  z-index: 2;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0%, 54% { left: -32%; } 72%, 100% { left: 118%; } }

.specialties { background: var(--surface); }
.section-heading { margin-bottom: 38px; }
.section-heading.centered { text-align: center; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.05;
}
.heading-line {
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--turquoise), var(--pink));
}
.centered .heading-line { margin-inline: auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.specialty-card {
  position: relative;
  min-height: 255px;
  padding: 36px 30px;
  border: 1px solid rgba(88,197,203,.5);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.specialty-card::before {
  content: "";
  position: absolute;
  width: 130px; height: 130px;
  right: -55px; top: -60px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(88,197,203,.14), rgba(231,107,171,.1));
}
.specialty-card:hover {
  transform: translateY(-8px);
  border-color: var(--turquoise);
  box-shadow: 0 22px 44px rgba(31,72,77,.14);
}
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--turquoise-soft), var(--pink-soft));
  color: var(--turquoise-deep);
}
.card-icon svg { width: 35px; height: 35px; fill: currentColor; }
.specialty-card h3 {
  margin: 30px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  font-style: italic;
}
.card-accent {
  display: block;
  width: 54px;
  height: 4px;
  border-radius: 99px;
  background: var(--pink);
}

.identity-band {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(100deg, rgba(88,197,203,.15), rgba(255,255,255,.75) 44%, rgba(231,107,171,.12)),
    #fff;
  overflow: hidden;
}
.identity-lines {
  position: absolute;
  inset: 0;
  opacity: .38;
  background: repeating-linear-gradient(165deg, transparent 0 15px, rgba(88,197,203,.35) 16px 17px, transparent 18px 28px);
  clip-path: polygon(0 0, 58% 0, 30% 100%, 0 100%);
}
.identity-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.identity-mark {
  display: inline-block;
  width: 76px; height: 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--turquoise) 0 55%, var(--pink) 55% 100%);
}
.identity-content h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  color: var(--turquoise-deep);
}
.identity-content p {
  margin: 10px 0 0;
  font-weight: 800;
  letter-spacing: .04em;
}

.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 54px;
}
.section-note {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.location-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(88,197,203,.48);
  background: linear-gradient(135deg, var(--turquoise-soft), #fff 58%, var(--pink-soft));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.location-card::after {
  content: "";
  position: absolute;
  right: -70px; bottom: -90px;
  width: 210px; height: 210px;
  border: 20px solid rgba(231,107,171,.09);
  border-radius: 50%;
}
.pin-wrap {
  width: 74px; height: 74px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, var(--turquoise-deep), var(--turquoise));
  box-shadow: 0 16px 26px rgba(42,168,176,.22);
}
.pin-wrap svg { width: 38px; height: 38px; fill: currentColor; }
.location-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.location-card address {
  position: relative;
  z-index: 1;
  margin: 0;
  font-style: normal;
  font-weight: 750;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.contact { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  position: relative;
  min-width: 0;
  padding: 32px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, border-color .24s ease;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(231,107,171,.7); }
.contact-icon {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--turquoise-deep);
  background: var(--turquoise-soft);
}
.contact-icon svg { width: 25px; height: 25px; fill: currentColor; }
.contact-card > p {
  margin: 24px 0 4px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.contact-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.25;
}
.email-text { overflow-wrap: anywhere; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--magenta);
  font-weight: 800;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.final-cta { background: #fff; }
.final-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(125deg, #279ca4, #52c1c8 58%, #d95f9f 150%);
  box-shadow: 0 22px 50px rgba(39,156,164,.23);
}
.final-cta-copy, .final-cta-actions { position: relative; z-index: 2; }
.eyebrow.light { color: rgba(255,255,255,.82); }
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.06;
}
.final-cta-copy > p:not(.eyebrow) { margin: 9px 0 22px; font-weight: 700; }
.cta-contact-list { display: flex; flex-wrap: wrap; gap: 9px 18px; font-size: .96rem; font-weight: 750; }
.final-cta-actions { display: grid; gap: 10px; min-width: 230px; }
.btn-white { background: #fff; color: var(--turquoise-deep); }
.btn-white:hover { box-shadow: 0 10px 26px rgba(0,0,0,.12); }
.btn-outline-white { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.06); }
.btn-outline-white:hover { background: rgba(255,255,255,.16); }
.cta-decoration { position: absolute; border-radius: 50%; border: 18px solid rgba(255,255,255,.08); }
.cta-decoration-one { width: 260px; height: 260px; right: -80px; top: -130px; }
.cta-decoration-two { width: 180px; height: 180px; left: -80px; bottom: -100px; }

.site-footer {
  padding: 40px 0;
  color: #dfeff0;
  background: #1e3033;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr .9fr;
  gap: 32px;
  align-items: start;
}
.site-footer strong { color: #fff; font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.site-footer p { margin: 8px 0 0; color: #c6d9da; }
.footer-contact { display: grid; gap: 7px; }
.footer-contact a { transition: color .2s ease; }
.footer-contact a:hover { color: #fff; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--turquoise-deep), var(--pink));
  box-shadow: 0 12px 24px rgba(42,168,176,.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 24px; height: 24px; fill: currentColor; }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.animate-in {
  animation: revealIn .7s ease both;
  animation-delay: var(--delay, 0ms);
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .section-pad { padding: 76px 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { text-align: center; }
  .title-rule { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap { max-width: 800px; margin-inline: auto; }
  .cards-grid { grid-template-columns: 1fr; }
  .specialty-card { min-height: 210px; }
  .location-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .final-cta-card { grid-template-columns: 1fr; }
  .final-cta-actions { grid-template-columns: repeat(2, minmax(0,1fr)); min-width: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 72px; }
  .brand { width: 205px; max-width: calc(100% - 68px); }
  .brand img { height: 52px; }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .hero { padding-top: 66px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 4.1rem); }
  .hero-logo-card { padding: 10px; border-radius: 20px; }
  .hero-logo-card img { border-radius: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 440px); margin-inline: auto; }
  .btn { width: 100%; }
  .location-card { align-items: flex-start; padding: 28px 22px; }
  .pin-wrap { width: 60px; height: 60px; border-radius: 18px; }
  .final-cta-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-pad { padding: 62px 0; }
  .hero { padding-top: 54px; }
  .eyebrow { letter-spacing: .13em; }
  .hero h1 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .location-card { display: grid; gap: 18px; }
  .contact-card { padding: 28px 22px; }
  .final-cta-card { padding: 30px 22px; border-radius: 26px; }
  .back-to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal.animate-in { opacity: 1; transform: none; animation: none !important; }
}
