:root {
  --color-ink: #15383e;
  --color-ink-soft: #36555a;
  --color-muted: #64777b;
  --color-teal: #0f6f72;
  --color-teal-dark: #0a5659;
  --color-mint: #dff5ef;
  --color-mint-strong: #90d8ce;
  --color-ivory: #fffaf1;
  --color-cream: #f8f0df;
  --color-rose: #f6dfe4;
  --color-gold: #f4c76d;
  --color-white: #ffffff;
  --color-line: #dce9e5;
  --shadow-soft: 0 18px 48px rgba(15, 70, 72, 0.12);
  --shadow-card: 0 12px 28px rgba(21, 56, 62, 0.08);
  --radius-card: 8px;
  --header-height: 66px;
  --container: 1120px;
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.88) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(246, 253, 250, 0.98) 100%),
    var(--color-white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-shell {
  padding: 3.35rem 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  width: 100%;
  max-width: 100vw;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 233, 229, 0.64);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(21, 56, 62, 0.08);
  border-color: rgba(220, 233, 229, 0.96);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

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

.brand-logo {
  width: auto;
  height: 42px;
  max-width: 148px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 0 0 auto;
}

.primary-nav {
  position: fixed;
  top: var(--header-height);
  left: 14px;
  right: 14px;
  width: auto;
  max-width: calc(100vw - 28px);
  min-width: 0;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.primary-nav a:not(.button) {
  border-radius: var(--radius-card);
  padding: 0.74rem 0.82rem;
  color: var(--color-ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 0;
  transition: background 160ms ease, color 160ms ease;
}

.primary-nav a:not(.button):hover,
.primary-nav a:not(.button):focus-visible {
  background: var(--color-mint);
  color: var(--color-teal-dark);
}

.nav-mobile-cta {
  margin-top: 0.45rem;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-ink);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--color-mint-strong);
  background: var(--color-mint);
}

.nav-toggle span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.08rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  cursor: pointer;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease, color 170ms ease;
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(15, 111, 114, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-teal-dark);
  box-shadow: 0 16px 34px rgba(15, 111, 114, 0.26);
}

.button-secondary {
  background: var(--color-white);
  color: var(--color-teal-dark);
  border-color: var(--color-line);
  box-shadow: 0 10px 24px rgba(21, 56, 62, 0.07);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-mint-strong);
  background: #f7fffc;
}

.button-light {
  background: var(--color-white);
  color: var(--color-teal-dark);
  box-shadow: 0 14px 34px rgba(4, 45, 47, 0.16);
}

.button-large {
  min-height: 48px;
  padding: 0.88rem 1.08rem;
}

.header-cta {
  display: none;
  min-height: 42px;
  padding: 0.74rem 0.96rem;
  font-size: 0.88rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(144, 216, 206, 0.7);
  border-radius: 999px;
  background: rgba(223, 245, 239, 0.78);
  color: var(--color-teal-dark);
  padding: 0.38rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(244, 199, 109, 0.22);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--color-ink);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 0.82rem;
  font-size: clamp(2.05rem, 10.5vw, 4.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.72rem, 7.3vw, 3.35rem);
  font-weight: 800;
}

h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.22;
}

p {
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 1.35rem);
  padding-bottom: 2.2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(223, 245, 239, 0.68) 0%, rgba(255, 250, 241, 0.2) 42%, rgba(246, 223, 228, 0.5) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.hero-grid {
  display: grid;
  gap: 1.45rem;
  align-items: center;
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.hero-lead {
  max-width: 650px;
  margin-top: 0.85rem;
  color: var(--color-ink-soft);
  font-size: clamp(0.98rem, 3.8vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.15rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(220, 233, 229, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.42rem 0.58rem;
  color: var(--color-ink-soft);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.1;
}

.trust-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 5px rgba(15, 111, 114, 0.12);
  flex: 0 0 auto;
}

.trust-dot-rose {
  background: #db8796;
  box-shadow: 0 0 0 5px rgba(246, 223, 228, 0.78);
}

.trust-dot-gold {
  background: #d99d25;
  box-shadow: 0 0 0 5px rgba(244, 199, 109, 0.26);
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.visual-frame {
  width: 100%;
  max-width: 100%;
  position: relative;
  min-height: 250px;
  max-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(220, 233, 229, 0.94);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.86)),
    repeating-linear-gradient(90deg, rgba(15, 111, 114, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(15, 111, 114, 0.05) 0 1px, transparent 1px 34px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(-10deg);
  border-radius: 28px;
}

.visual-frame::before {
  width: 62%;
  height: 42%;
  right: -12%;
  top: 22%;
  background: linear-gradient(135deg, rgba(144, 216, 206, 0.64), rgba(223, 245, 239, 0.38));
}

.visual-frame::after {
  width: 58%;
  height: 36%;
  left: -18%;
  bottom: -6%;
  background: linear-gradient(135deg, rgba(246, 223, 228, 0.68), rgba(255, 250, 241, 0.2));
}

.visual-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.visual-header strong {
  color: var(--color-teal-dark);
}

.tooth-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(118px, 38vw, 190px);
  aspect-ratio: 1;
  transform: translate(-50%, -48%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-white), #eefbf7);
  box-shadow: 0 24px 60px rgba(15, 111, 114, 0.16);
}

.tooth-emblem svg {
  width: 64%;
  height: 64%;
  fill: rgba(255, 255, 255, 0.98);
  stroke: var(--color-teal);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 12px 18px rgba(15, 111, 114, 0.14));
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(220, 233, 229, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.schedule-card {
  left: 0.78rem;
  top: 3.35rem;
  width: min(150px, 45%);
  padding: 0.72rem;
}

.schedule-card .mini-label {
  display: inline-flex;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: var(--color-rose);
  color: #864653;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.schedule-card strong {
  display: block;
  color: var(--color-teal-dark);
  font-size: 1.02rem;
  line-height: 1.1;
}

.schedule-card p {
  margin-top: 0.22rem;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.whatsapp-card {
  right: 0.78rem;
  bottom: 0.78rem;
  width: min(224px, calc(100% - 1.56rem));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.whatsapp-card strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.whatsapp-card p {
  margin-top: 0.18rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pulse-dot {
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.13);
  flex: 0 0 auto;
}

.family-card {
  left: 0.78rem;
  right: auto;
  bottom: 4.85rem;
  max-width: 58%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.5rem;
}

.family-card span {
  border-radius: 999px;
  background: #f8fffc;
  color: var(--color-ink-soft);
  padding: 0.28rem 0.43rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 0.82rem;
}

.section-heading p {
  margin: 1rem auto 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.pain-section {
  background: var(--color-white);
}

.pain-grid {
  display: grid;
  gap: 1.3rem;
}

.section-kicker {
  max-width: 620px;
}

.section-kicker h2 {
  margin-top: 0.82rem;
  font-size: clamp(1.7rem, 7.3vw, 3rem);
}

.pain-list {
  display: grid;
  gap: 0.75rem;
}

.pain-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #fffefd;
  padding: 0.95rem;
  box-shadow: 0 10px 24px rgba(21, 56, 62, 0.05);
}

.pain-list span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-teal-dark);
  font-weight: 900;
  font-size: 0.8rem;
}

.pain-list p {
  color: var(--color-ink-soft);
  font-weight: 800;
}

.solution-panel {
  border-left: 4px solid var(--color-teal);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, var(--color-mint), rgba(255, 250, 241, 0.84));
  padding: 1.15rem;
  box-shadow: var(--shadow-card);
}

.solution-panel p {
  color: var(--color-ink);
  font-size: 1.06rem;
  font-weight: 800;
}

.text-link,
.micro-cta {
  display: inline-flex;
  width: fit-content;
  color: var(--color-teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(15, 111, 114, 0.28);
  text-underline-offset: 0.25em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.text-link {
  margin-top: 0.85rem;
}

.text-link:hover,
.text-link:focus-visible,
.micro-cta:hover,
.micro-cta:focus-visible {
  color: var(--color-ink);
  text-decoration-color: currentColor;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 240, 223, 0.38));
}

.services-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.service-card {
  display: grid;
  gap: 0.74rem;
  min-height: 100%;
  border: 1px solid rgba(220, 233, 229, 0.9);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(144, 216, 206, 0.92);
  box-shadow: 0 20px 38px rgba(21, 56, 62, 0.1);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--color-mint);
  color: var(--color-teal-dark);
}

.service-icon svg {
  width: 1.34rem;
  height: 1.34rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.micro-cta {
  align-self: end;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.why {
  background: var(--color-white);
}

.why-grid {
  display: grid;
  gap: 2rem;
}

.why-list {
  display: grid;
  gap: 0.85rem;
}

.why-list article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #fffefd;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(21, 56, 62, 0.05);
}

.why-list span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.72rem;
  border-radius: 999px;
  background: var(--color-cream);
  color: var(--color-teal-dark);
  padding: 0.28rem 0.58rem;
  font-size: 0.73rem;
  font-weight: 900;
}

.why-list p {
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.sunday-band {
  padding: 3rem 0;
  background:
    linear-gradient(135deg, var(--color-teal-dark), var(--color-teal) 54%, #1d8580);
  color: var(--color-white);
  overflow: hidden;
}

.sunday-content {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.sunday-content .eyebrow {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.sunday-content h2 {
  max-width: 820px;
  margin-top: 0.86rem;
  color: var(--color-white);
}

.sunday-content p {
  max-width: 650px;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
}

.hours {
  background:
    linear-gradient(180deg, rgba(248, 240, 223, 0.46), rgba(255, 255, 255, 0.96));
}

.hours-table-wrap {
  max-width: 760px;
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-line);
}

.hours-table tr:last-child {
  border-bottom: 0;
}

.hours-table th,
.hours-table td {
  padding: 0.96rem;
  text-align: left;
}

.hours-table th {
  color: var(--color-ink);
  font-size: 0.96rem;
}

.hours-table td {
  color: var(--color-ink-soft);
  font-weight: 800;
}

.featured-row {
  background: #f9fffc;
}

.featured-row.friday {
  box-shadow: inset 4px 0 0 var(--color-gold);
}

.featured-row.sunday {
  background: linear-gradient(90deg, rgba(223, 245, 239, 0.8), rgba(255, 255, 255, 0.95));
  box-shadow: inset 4px 0 0 var(--color-teal);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
  min-width: 0;
}

.location {
  background: var(--color-white);
}

.location-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.location-copy h2 {
  margin-top: 0.86rem;
}

.location-copy p {
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 1.02rem;
}

address {
  margin: 1.1rem 0 1.35rem;
  color: var(--color-ink);
  font-style: normal;
  font-weight: 800;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-mint);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  min-height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.steps {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(223, 245, 239, 0.38));
}

.steps-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.steps-grid article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 900;
}

.steps-grid p {
  margin-top: 0.48rem;
  color: var(--color-muted);
}

.contact {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  gap: 1.3rem;
  align-items: center;
}

.contact-copy h2 {
  margin-top: 0.86rem;
}

.contact-copy p {
  max-width: 610px;
  margin-top: 1rem;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
  width: 100%;
  min-width: 0;
}

.contact-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(223, 245, 239, 0.86), rgba(255, 250, 241, 0.86));
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.contact-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-panel div {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(21, 56, 62, 0.12);
}

.contact-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-panel dt {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0.25rem 0 0;
  color: var(--color-ink);
  font-weight: 800;
}

.contact-panel a {
  color: var(--color-teal-dark);
  text-decoration: underline;
  text-decoration-color: rgba(15, 111, 114, 0.28);
  text-underline-offset: 0.25em;
}

.floating-whatsapp {
  position: fixed;
  right: 0.82rem;
  bottom: 0.82rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 46px;
  border-radius: 999px;
  background: #25d366;
  color: #09391d;
  padding: 0.68rem 0.82rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 2.4rem 0 6rem;
  background: #102f34;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo {
  width: auto;
  height: 42px;
  max-width: 150px;
  margin-bottom: 0.85rem;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand strong {
  display: block;
  color: var(--color-white);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 1.16rem;
}

.footer-brand p,
.footer-info p,
.footer-bottom p {
  margin-top: 0.38rem;
}

.footer-info {
  display: grid;
  gap: 0.45rem;
}

.footer-info a {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 0.25em;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms ease, transform 640ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.hero-title {
  overflow: hidden;
}

.hero-title .title-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.72em) rotate(3deg);
  transform-origin: 50% 100%;
}

.hero-title.is-ready .title-char {
  animation: titleCharIn 620ms cubic-bezier(0.2, 0.74, 0.2, 1) forwards;
  animation-delay: calc(var(--char-index) * 28ms + 120ms);
}

@keyframes titleCharIn {
  0% {
    opacity: 0;
    transform: translateY(0.72em) rotate(3deg);
    filter: blur(4px);
  }

  62% {
    opacity: 1;
    transform: translateY(-0.05em) rotate(0deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

@media (min-width: 460px) {
  .hero-actions,
  .contact-actions {
    grid-template-columns: max-content max-content;
  }

  .trust-list {
    gap: 0.85rem 1rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 699px) {
  main,
  section,
  footer,
  .container,
  .hero-grid,
  .hero-copy,
  .hero-visual,
  .section-heading,
  .section-kicker,
  .pain-grid,
  .services-grid,
  .why-grid,
  .why-list,
  .steps-grid,
  .location-grid,
  .contact-grid {
    max-width: 100%;
    min-width: 0;
  }

  .primary-nav {
    left: 12px;
    right: 12px;
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .primary-nav a,
  .hero-actions .button,
  .contact-actions .button,
  .center-cta .button,
  .sunday-content .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .contact-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .eyebrow {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  address,
  dd {
    overflow-wrap: break-word;
  }

  .hero-title {
    max-width: 100%;
  }

  .trust-list {
    max-width: 100%;
  }

  .trust-list li {
    max-width: 100%;
  }
}

@media (min-width: 700px) {
  .section-shell {
    padding: 5.2rem 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .visual-frame {
    min-height: 390px;
    max-height: none;
  }

  .trust-list li {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1rem;
  }

  .trust-dot {
    width: 0.68rem;
    height: 0.68rem;
  }

  .family-card {
    left: 1rem;
    right: 1rem;
    bottom: 5.65rem;
    max-width: none;
  }

  .family-card span {
    padding: 0.36rem 0.55rem;
    font-size: 0.75rem;
  }

  .services-grid,
  .why-list,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .pain-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .solution-panel {
    grid-column: 2;
  }

  .hours-table th,
  .hours-table td {
    padding: 1.05rem 1.25rem;
  }

  .contact-panel {
    padding: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: start;
  }
}

@media (min-width: 940px) {
  :root {
    --header-height: 82px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-toggle,
  .nav-mobile-cta {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav a:not(.button) {
    padding: 0.68rem 0.62rem;
    font-size: 0.88rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100svh - 28px);
    display: flex;
    align-items: center;
    padding-bottom: 3.4rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 3rem;
  }

  .hero-copy {
    max-width: none;
  }

  .visual-frame {
    min-height: 520px;
  }

  .schedule-card {
    left: 1.25rem;
    top: 5.35rem;
  }

  .whatsapp-card {
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .family-card {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 6rem;
  }

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

  .service-card-wide {
    grid-column: span 3;
  }

  .why-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

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

  .sunday-content {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .location-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
    gap: 3rem;
  }

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

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 1120px) {
  .primary-nav a:not(.button) {
    padding-inline: 0.78rem;
  }
}

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

  .brand-logo {
    height: 38px;
    max-width: 132px;
  }

  .header-cta {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(1.86rem, 10vw, 2.18rem);
  }

  .hero-lead {
    font-size: 0.94rem;
  }

  .visual-frame {
    min-height: 230px;
  }

  .family-card {
    display: none;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-title .title-char {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}
