:root {
  --ink: #25313b;
  --muted: #5c6f76;
  --paper: #fffdf8;
  --soft: #f4efe6;
  --aqua: #d7eff2;
  --sage: #dcebdc;
  --peach: #ffe0d4;
  --rose: #ffd8e6;
  --blue: #80c6da;
  --green: #8ebf9f;
  --accent: #f5aa42;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(37, 49, 59, .13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(215, 239, 242, .9), transparent 36rem),
    radial-gradient(circle at 92% 18%, rgba(255, 216, 230, .75), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ec 100%);
  line-height: 1.6;
}

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

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(37, 49, 59, .08);
}

.navbar {
  width: min(1180px, calc(100% - 28px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(37, 49, 59, .14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--muted);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(37, 49, 59, .12);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .65;
  pointer-events: none;
}

.hero-bg-one {
  width: 330px;
  height: 330px;
  background: var(--sage);
  right: -90px;
  top: 110px;
}

.hero-bg-two {
  width: 240px;
  height: 240px;
  background: var(--peach);
  left: -70px;
  bottom: 30px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3e7e8c;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 7vw, 6.2rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.hero-text {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: var(--muted);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(37, 49, 59, .08);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 45px rgba(37, 49, 59, .08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(37, 49, 59, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(37, 49, 59, .16);
  outline: none;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(37, 49, 59, .1);
}

.btn.full {
  width: 100%;
  margin-top: 22px;
}

.logo-card {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(37, 49, 59, .1);
  padding: 18px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.logo-card img {
  width: 100%;
  border-radius: 26px;
  object-fit: contain;
}

.intro-strip {
  padding: 0 0 42px;
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

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

.strip-card,
.info-panel,
.contact-card {
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(37, 49, 59, .08);
  box-shadow: var(--shadow);
}

.strip-card {
  min-height: 150px;
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.strip-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--aqua);
  font-size: 1.45rem;
  flex: 0 0 auto;
}

.strip-card:nth-child(2) .strip-icon {
  background: var(--sage);
}

.strip-card:nth-child(3) .strip-icon {
  background: var(--peach);
}

.strip-card h2 {
  font-family: "Nunito", sans-serif;
  letter-spacing: 0;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.strip-card p,
.contact-card p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.section-heading p + h2 {
  margin-top: 0;
}

.centered {
  text-align: center;
  margin: 0 auto 36px;
}

.centered .eyebrow {
  justify-content: center;
}

.info-panel {
  border-radius: var(--radius-xl);
  padding: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  align-items: center;
}

.info-row + .info-row {
  border-top: 1px solid rgba(37, 49, 59, .08);
}

.info-row span {
  color: var(--muted);
  font-weight: 800;
}

.info-row strong {
  font-size: 1.18rem;
}

.specialties-section {
  background:
    linear-gradient(135deg, rgba(215, 239, 242, .58), rgba(255, 216, 230, .45)),
    rgba(255, 255, 255, .38);
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.specialty-card {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(37, 49, 59, .08);
  font-weight: 900;
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(37, 49, 59, .1);
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  right: -12px;
  top: -14px;
  opacity: .9;
}

.specialty-card:nth-child(3n)::before {
  background: var(--aqua);
}

.specialty-card:nth-child(4n)::before {
  background: var(--sage);
}

.schedule-location {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.48));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: clamp(26px, 5vw, 42px);
}

.contact-card.highlight {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 170, 66, .18), transparent 16rem),
    rgba(255,255,255,.86);
}

.big-text {
  margin-top: 20px !important;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--ink) !important;
}

.footer {
  padding: 30px 0;
  background: #25313b;
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  color: rgba(255, 255, 255, .75);
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .97);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    background: rgba(255,255,255,.85);
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .logo-card {
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 620px) {
  .container,
  .navbar {
    width: min(100% - 22px, 1120px);
  }

  .section-pad {
    padding: 58px 0;
  }

  .brand span {
    font-size: .92rem;
    line-height: 1.1;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .hero-text {
    padding: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-radius: 26px;
  }
}
