/* ===================================================================
   SALT & SEA DENTISTRY — design system
   =================================================================== */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Mulish', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --navy: #143C54;
  --navy-700: #1C4D6B;
  --navy-900: #0F2E40;
  --sea: #4E8FB5;
  --sea-400: #7FB0CF;
  --sea-200: #BBD8E8;
  --sea-100: #DCEAF3;
  --sand: #B3A07C;
  --sand-300: #CDBE9E;
  --sand-100: #EAE2D2;
  --mist: #EFF6FB;
  --mist-2: #F3F8FB;
  --ink: #15303D;
  --body: #4A6472;
  --mute: #7B93A0;
  --hairline: #DCE6EC;
  --canvas: #ffffff;
  --on-primary: #ffffff;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --shadow-soft: 0 30px 60px -28px rgba(20, 60, 84, .28), 0 12px 24px -16px rgba(20, 60, 84, .14);
  --shadow-card: 0 2px 4px rgba(20, 60, 84, .03), 0 12px 28px -14px rgba(20, 60, 84, .16);
  --shadow-lift: 0 30px 50px -22px rgba(20, 60, 84, .30), 0 10px 20px -12px rgba(20, 60, 84, .16);
}

/* =================================================================
   BASE
   ================================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: .2px;
}

p {
  margin: 0;
  text-wrap: pretty;
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--sea);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--sand);
  display: inline-block;
}

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

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
}

.section {
  padding: 104px 0;
}

i[data-lucide] {
  width: 1em;
  height: 1em;
  display: block;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  border-radius: var(--radius-full);
  padding: 15px 28px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}

.btn i {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(20, 60, 84, .55);
}

.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--sea-200);
}

.btn-ghost:hover {
  border-color: var(--sea);
  background: var(--mist);
}

.btn-sand {
  background: var(--sand);
  color: #fff;
}

.btn-sand:hover {
  background: #a08c63;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--sea);
  font-size: 15px;
  letter-spacing: .2px;
}

.text-link i {
  width: 18px;
  height: 18px;
  transition: transform .16s ease;
}

.text-link:hover {
  color: var(--navy);
}

.text-link:hover i {
  transform: translateX(4px);
}

/* =================================================================
   NAV / TOPBAR
   ================================================================= */
.topbar {
  background: var(--navy-900);
  color: #cfe0ea;
  font-size: 13px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}

.topbar .tb-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cfe0ea;
  letter-spacing: .2px;
}

.topbar i {
  width: 14px;
  height: 14px;
  color: var(--sea-400);
}

.topbar .tb-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar .tb-social a:hover {
  color: #fff;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .2s ease;
}

header.nav.scrolled {
  box-shadow: 0 8px 24px -16px rgba(20, 60, 84, .3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 123px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand img {
  height: 100px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links>li {
  position: relative;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: color .15s ease, background .15s ease;
}

.nav-link i {
  width: 15px;
  height: 15px;
  color: var(--mute);
  transition: transform .2s ease;
}

.nav-link:hover {
  color: var(--sea);
}

.nav-links>li:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-links>li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
}

.dropdown.simple {
  width: 230px;
}

.dropdown.mega {
  width: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.dd-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--sand);
  padding: 6px 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background .14s ease, color .14s ease;
}

.dd-item span.s {
  font-size: 12px;
  font-weight: 500;
  color: var(--mute);
}

.dd-item i {
  width: 16px;
  height: 16px;
  color: var(--sea);
  flex-shrink: 0;
}

.dd-item:hover {
  background: var(--mist);
  color: var(--sea);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone .ico {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--sea-100);
  color: var(--sea);
  display: grid;
  place-items: center;
}

.nav-phone .ico i {
  width: 18px;
  height: 18px;
}

.nav-phone .lab {
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .4px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-phone .num {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 8%, var(--sea-100) 0%, rgba(220, 234, 243, 0) 55%),
    linear-gradient(180deg, var(--mist) 0%, #ffffff 78%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: radial-gradient(120% 100% at 50% 100%, rgba(126, 176, 207, .16), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
  padding: 64px 0 160px;
}

.hero h1 {
  font-size: 78px;
  line-height: .98;
  color: var(--navy);
  letter-spacing: 0;
}

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

.hero .lead {
  max-width: 480px;
  margin-top: 22px;
  font-size: 18.5px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.play-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--sea-200);
  color: var(--navy);
  display: grid;
  place-items: center;
  background: #fff;
  transition: transform .16s ease, box-shadow .16s ease;
}

.play-btn i {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.play-wrap:hover .play-btn {
  transform: scale(1.06);
  box-shadow: var(--shadow-card);
}

.play-lab {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.play-lab span {
  display: block;
  font-weight: 500;
  color: var(--mute);
  font-size: 12.5px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  color: var(--body);
  font-size: 14px;
}

.hero-trust .stars {
  display: flex;
  gap: 2px;
  color: var(--sand);
}

.hero-trust .stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-trust b {
  color: var(--ink);
}

.hero-visual {
  position: relative;
}

.hero-photo {
  position: relative;
  border-radius: 280px 280px 28px 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(160deg, var(--sea-100), #fff);
}

.hero-photo image-slot {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-ring {
  position: absolute;
  inset: -26px -26px auto auto;
  width: 320px;
  height: 320px;
  border: 1.5px solid var(--sea-200);
  border-radius: var(--radius-full);
  z-index: -1;
}

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 3;
}

.float-badge .fb-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}

.float-badge .fb-ico i {
  width: 19px;
  height: 19px;
}

.float-badge .fb-t {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.float-badge .fb-s {
  display: block;
  font-size: 11.5px;
  color: var(--mute);
  line-height: 1.2;
}

.fb-1 {
  top: 42px;
  left: -46px;
  animation: floaty 6s ease-in-out infinite;
}

.fb-2 {
  bottom: 96px;
  right: -40px;
  animation: floaty 6s ease-in-out infinite .8s;
}

.fb-3 {
  bottom: -12px;
  left: 24px;
  animation: floaty 6s ease-in-out infinite 1.6s;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-badge {
    animation: none !important;
  }
}

/* =================================================================
   FEATURE CARDS
   ================================================================= */
.feature-row {
  position: relative;
  z-index: 5;
  margin-top: -114px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fcard {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.fcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
}

.fcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.fcard .fc-ico {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--tint);
  color: var(--accent);
}

.fcard .fc-ico i {
  width: 26px;
  height: 26px;
}

.fcard h3 {
  font-size: 25px;
  margin-bottom: 9px;
}

.fcard p {
  font-size: 14.5px;
  line-height: 1.6;
}

/* =================================================================
   WHY US
   ================================================================= */
.why {
  align-items: center;
}

.why-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 520px;
}

.blob {
  position: absolute;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid #fff;
}

.blob image-slot {
  width: 100%;
  height: 100%;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 0;
  left: 30px;
  z-index: 2;
}

.blob-2 {
  width: 210px;
  height: 210px;
  top: 200px;
  left: -6px;
  z-index: 3;
}

.blob-3 {
  width: 236px;
  height: 236px;
  top: 240px;
  left: 236px;
  z-index: 1;
}

.why-visual .stat-chip {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 16px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.why-visual .stat-chip b {
  font-family: var(--font-serif);
  font-size: 34px;
  display: block;
  line-height: 1;
  color: #fff;
}

.why-visual .stat-chip span {
  font-size: 12px;
  letter-spacing: .6px;
  color: var(--sea-200);
  text-transform: uppercase;
  font-weight: 700;
}

.why h2 {
  font-size: 46px;
  margin: 16px 0 8px;
  color: var(--navy);
}

.reasons {
  margin: 26px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.reason {
  display: flex;
  gap: 18px;
}

.reason .r-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--sea);
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
}

.reason .r-ico i {
  width: 22px;
  height: 22px;
}

.reason h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.reason p {
  font-size: 14.5px;
  line-height: 1.6;
}

/* =================================================================
   SERVICES
   ================================================================= */
.services {
  background: var(--mist-2);
}

.sec-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.sec-head h2 {
  font-size: 48px;
  color: var(--navy);
  margin: 16px 0 14px;
}

.sec-head p {
  font-size: 17px;
}

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

.svc {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}

.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.svc .svc-ico {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--tint);
  color: var(--accent);
  transition: background .18s ease, color .18s ease;
}

.svc:hover .svc-ico {
  background: var(--accent);
  color: #fff;
}

.svc .svc-ico i {
  width: 27px;
  height: 27px;
}

.svc h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.svc p {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.svc .svc-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sea);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.svc .svc-link i {
  width: 16px;
  height: 16px;
  transition: transform .16s ease;
}

.svc:hover .svc-link i {
  transform: translateX(4px);
}

.svc-cta {
  text-align: center;
  margin-top: 48px;
}

/* =================================================================
   DENTIST
   ================================================================= */
.dentist {
  background: linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.dentist-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.dentist h2 {
  font-size: 46px;
  color: var(--navy);
  margin: 16px 0 18px;
}

.dentist .lead {
  margin-bottom: 24px;
}

.cred-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--sand);
  margin: 8px 0 16px;
}

.cred-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 26px;
}

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}

.cred-list li i {
  width: 20px;
  height: 20px;
  color: var(--sea);
  flex-shrink: 0;
  margin-top: 1px;
}

.dentist-photo {
  position: relative;
}

.dentist-photo .dp-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(160deg, var(--sea-100), #fff);
}

.dentist-photo .dp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.dentist-photo image-slot {
  width: 100%;
  height: 100%;
}

.dentist-photo .sig-card {
  position: absolute;
  bottom: -22px;
  left: -28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px 24px;
  border: 1px solid var(--hairline);
}

.dentist-photo .sig-card .nm {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}

.dentist-photo .sig-card .role {
  font-size: 12.5px;
  color: var(--mute);
  letter-spacing: .3px;
  margin-top: 4px;
  font-weight: 600;
}

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testi {
  background: var(--canvas);
}

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

.tcard {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.tcard .quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: .6;
  color: var(--sea-200);
  height: 30px;
}

.tcard p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
  font-style: italic;
  flex: 1;
}

.tcard .stars {
  display: flex;
  gap: 3px;
  color: var(--sand);
}

.tcard .stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.tcard .who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 6px;
  border-top: 1px solid var(--hairline);
}

.tcard .who image-slot {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.tcard .who .nm {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.tcard .who .loc {
  font-size: 12.5px;
  color: var(--mute);
}

.testi-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 42px;
}

.tdot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--sea-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.tdot.active {
  width: 30px;
  background: var(--sea);
}

/* =================================================================
   CTA BAND
   ================================================================= */
.cta-band .container {
  position: relative;
}

.cta-box {
  background: radial-gradient(120% 140% at 88% 0%, var(--navy-700) 0%, var(--navy) 45%, var(--navy-900) 100%);
  border-radius: 28px;
  padding: 74px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(127, 176, 207, .25);
}

.cta-box::before {
  width: 360px;
  height: 360px;
  top: -160px;
  left: -120px;
}

.cta-box::after {
  width: 300px;
  height: 300px;
  bottom: -180px;
  right: -90px;
  background: radial-gradient(circle, rgba(127, 176, 207, .18), transparent 70%);
  border: none;
}

.cta-box .eyebrow {
  color: var(--sea-400);
  position: relative;
}

.cta-box .eyebrow::before {
  background: var(--sand-300);
}

.cta-box h2 {
  font-size: 46px;
  color: #fff;
  max-width: 760px;
  margin: 16px auto 14px;
  position: relative;
}

.cta-box p {
  color: var(--sea-200);
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 17px;
  position: relative;
}

.cta-box .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer.site {
  background: var(--navy-900);
  color: #a9c2d1;
  padding: 80px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(127, 176, 207, .18);
}

.foot-brand .wordmark {
  font-family: var(--font-serif);
  font-size: 34px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.foot-brand .wordmark .amp {
  color: var(--sand-300);
}

.foot-brand .tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sea-400);
  margin-top: 6px;
  font-weight: 700;
}

.foot-brand p {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #9bb7c7;
  max-width: 300px;
}

.foot-contact {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-contact a,
.foot-contact div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: #bcd2de;
}

.foot-contact i {
  width: 17px;
  height: 17px;
  color: var(--sea-400);
  flex-shrink: 0;
  margin-top: 2px;
}

.foot-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-col a {
  font-size: 14.5px;
  color: #a9c2d1;
  transition: color .14s ease, padding .14s ease;
}

.foot-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.news p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #9bb7c7;
}

.news form {
  display: flex;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(127, 176, 207, .25);
  border-radius: var(--radius-full);
  padding: 5px;
}

.news input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 10px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  max-width: 100%;
  width: 100%;
}

.news input::placeholder {
  color: #7e9bab;
}

.news button {
  border: none;
  background: var(--sea);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background .15s ease;
}

.news button:hover {
  background: var(--sea-400);
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  font-size: 13px;
  color: #7e9bab;
  flex-wrap: wrap;
  gap: 14px;
}

.foot-bottom .fb-links {
  display: flex;
  gap: 24px;
}

.foot-bottom a:hover {
  color: #fff;
}

/* =================================================================
   COMPARISON TABLE
   ================================================================= */
.compare {
  background: var(--mist-2);
}

.cmp-table {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.cmp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}

.cmp-row+.cmp-row {
  border-top: 1px solid var(--hairline);
}

.cmp-cell {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
}

.cmp-cell.feat {
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.cmp-feat-t {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.25;
}

.cmp-line {
  font-size: 14px;
  color: var(--body);
  line-height: 1.45;
}

.cmp-head .cmp-cell {
  padding: 30px 28px;
}

.cmp-head .brandcell {
  background: var(--navy);
  color: #fff;
  border-radius: 0;
}

.cmp-head .brandcell .ch-name {
  font-family: var(--font-serif);
  font-size: 27px;
  color: #fff;
  line-height: 1;
  letter-spacing: .4px;
}

.cmp-head .brandcell .ch-name .amp {
  color: var(--sand-300);
}

.cmp-head .brandcell .ch-sub {
  font-size: 12.5px;
  color: var(--sea-200);
  letter-spacing: .4px;
  margin-top: 6px;
}

.cmp-head .othercell {
  background: var(--sand-100);
}

.cmp-head .othercell .ch-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}

.cmp-head .logocell {
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.cmp-head .logocell img {
  height: 100px;
  width: auto;
}

.cmp-body:nth-child(odd) .cmp-cell.feat {
  background: var(--mist);
}

.cmp-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cmp-mark i {
  width: 19px;
  height: 19px;
  color: #fff;
}

.cmp-mark.yes {
  background: var(--sea);
}

.cmp-mark.no {
  background: #C0563F;
}

.cmp-cell.us {
  background: rgba(78, 143, 181, .05);
}

.cmp-foot {
  text-align: center;
  margin-top: 42px;
}

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

  .cmp-row+.cmp-row {
    border-top: none;
  }

  .cmp-cell {
    border-top: 1px solid var(--hairline);
  }

  .cmp-cell.feat {
    background: var(--navy) !important;
    color: #fff;
    align-items: center;
    text-align: center;
  }

  .cmp-cell.feat .cmp-feat-t {
    color: #fff;
    font-size: 18px;
  }

  .cmp-head {
    display: none;
  }

  .cmp-cell.us::before {
    content: "Salt & Sea";
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--sea);
  }

  .cmp-cell.other::before {
    content: "Other providers";
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--mute);
  }
}

/* =================================================================
   LOCATION
   ================================================================= */
.location {
  background: #f3f8fb;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.loc-media {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.loc-photo {
  height: 46%;
  overflow: hidden;
}

.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loc-map {
  flex: 1;
  position: relative;
  border-top: 1px solid var(--hairline);
  background: var(--mist);
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(.18);
}

.loc-info {
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-info h2 {
  font-size: 42px;
  color: var(--navy);
  margin: 16px 0 10px;
}

.loc-info .lead {
  margin-bottom: 30px;
}

.loc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.loc-item .li-ico {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--sea);
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
}

.loc-item .li-ico i {
  width: 23px;
  height: 23px;
}

.loc-item .li-lab {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}

.loc-item .li-val {
  font-size: 16.5px;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
}

.loc-item .li-val a {
  color: var(--ink);
  transition: color .14s ease;
}

.loc-item .li-val a:hover {
  color: var(--sea);
}

.loc-item .li-sub {
  font-size: 13.5px;
  color: var(--mute);
  margin-top: 2px;
}

.loc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

  .loc-media {
    min-height: 0;
  }

  .loc-photo {
    height: 240px;
  }

  .loc-map {
    height: 280px;
  }

  .loc-info {
    padding: 44px 32px;
  }
}

/* =================================================================
   REVEAL ANIMATION
   ================================================================= */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px) {
  .container {
    padding: 0 28px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .why-grid,
  .dentist-grid {
    gap: 48px;
  }
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }

  .nav-links,
  .nav-right .nav-phone {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--hairline);
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle i {
    width: 22px;
    height: 22px;
    color: var(--navy);
  }
}

@media (max-width: 920px) {

  .dentist-photo.reveal.in {
    order: 1;
  }

  .dentist-copy.reveal.in {
    order: 2;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-copy.reveal.in {
    order: 2;
    text-align: center;
    margin: auto;
  }

  .hero-grid,
  .why-grid,
  .dentist-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 72px 0 72px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
    min-height: 340px;
  }

  .hero-photo {
    min-height: 320px;
  }

  .fb-1 {
    left: -16px;
  }

  .fb-2 {
    right: -16px;
  }

  .why-visual {
    height: 440px;
    max-width: 480px;

  }

  .why-visual .stat-chip {

    bottom: -60px;
    left: 100%;
  }

  .blob-2 {
    left: 0;
  }

  .feature-cards,
  .svc-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    margin-top: 72px;
  }

  .dentist-photo {
    max-width: 420px;
    margin: 0 auto;
    padding-bottom: 32px;
  }

  .dentist-photo .sig-card {
    left: 16px;
    bottom: -20px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .section {
    padding: 72px 0;
  }
  .contact-body {
    padding: 72px 0 !important;
  }


  .hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 560px) {

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-grid {
    padding: 56px 0 56px;
  }
  .contact-body {
    padding: 56px 0  !important;
  }


  .sec-head h2,
  .why h2,
  .dentist h2,
  .cta-box h2 {
    font-size: 32px;
  }

  .sec-head {
    margin-bottom: 40px;
  }

  .fb-1,
  .fb-2,
  .fb-3 {
    display: none;
  }

  .cred-list {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    padding: 44px 22px;
  }

  .dentist-photo .sig-card {
    left: 10px;
    bottom: 12px;
    position: absolute;
  }

  .dentist-photo {
    padding-bottom: 0;
  }

  .fcard,
  .svc {
    padding: 26px 22px;
  }

  .tcard {
    padding: 24px 20px;
  }

  .loc-info {
    padding: 36px 24px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .foot-bottom .fb-links {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* =================================================================
   MOBILE MENU
   ================================================================= */
.mm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(15, 46, 64, .48);
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, visibility .26s ease;
}

.mm-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(360px, 90vw);
  z-index: 80;
  background: #fff;
  box-shadow: -8px 0 40px rgba(20, 60, 84, .18);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mm-head img {
  height: 54px;
}

.mm-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mm-link {
  padding: 16px 6px;
  border-bottom: 1px solid var(--hairline);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.mm-sub {
  padding: 10px 18px;
  font-size: 14.5px;
  color: var(--body);
  font-weight: 600;
}

.mm-foot {
  margin-top: 24px;
}

.mm-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mm-contact a,
.mm-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}

.mm-contact i {
  width: 16px;
  height: 16px;
  color: var(--sea);
  flex-shrink: 0;
}

.mm-contact a:hover {
  color: var(--navy);
}

span.cmp-mark.no svg {
  stroke: white;
}

span.cmp-mark.yes svg {
  stroke: #fff;
}


@media only screen and (max-width: 1200px) {
  .nav-right .nav-phone {
    display: none;
  }


}

@media only screen and (max-width: 1440px) {
  .fb-2 {

    right: -20px;

  }
}

@media only screen and (min-width: 921px) and (max-width: 1040px) {

  .blob-3 {
    left: 186px;

  }

}

@media only screen and (min-width: 481px) and (max-width: 600px) {
  .why-visual .stat-chip {
    bottom: -90px;
    left: 80%;
  }

  .blob-3 {
    top: 210px;
    left: 196px;

  }

  .blob-1 {
    width: 270px;
    height: 270px;
  }


}

@media only screen and (max-width: 480px) {
  .dentist-photo .sig-card {
    padding: 8px 14px;

  }

  .nav-right .btn-primary {
    display: none;
  }

  .blob-3 {
    width: 136px;
    height: 136px;
    top: 210px;
    left: 156px;
    z-index: 1;
  }

  .blob-1 {
    width: 230px;
    height: 230px;
    top: 0;
    left: 30px;
    z-index: 2;
  }

  .blob-2 {
    width: 160px;
    height: 160px;
    top: 200px;
    left: -6px;
    z-index: 3;
  }

  .why-visual .stat-chip {
    bottom: -20px;
    max-width: fit-content;
    width: 100%;
    left: 0;
    margin: auto;
    right: 0;
    transform: unset;

  }

  .why-visual .stat-chip b {
    font-size: 30px;

  }

  .btn {
    gap: 4px;
    font-size: 14px;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
}