:root {
  --navy: #232c3b;
  --navy-deep: #1b2331;
  --sage: #6f926d;
  --sage-deep: #264a40;
  --sage-contrast: #55755f;
  --sage-soft: #e3ebe1;
  --ivory: #f7f3e9;
  --paper: #fffdf8;
  --gold: #c9953d;
  --gold-light: #dfbd78;
  --gold-text: #8a6126;
  --body: #354050;
  --muted: #68717d;
  --border: rgba(23, 36, 58, 0.16);
  --display: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(16, 26, 42, 0.16);
}

/* Griffin Dental 2.7.0 — motion and footer contrast parity with the hosted design. */
@keyframes griffin-orbit-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(-14px, -10px, 0) rotate(1.25deg);
  }
}

@keyframes griffin-orbit-drift-reverse {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(12px, 9px, 0) rotate(-1deg);
  }
}

@keyframes griffin-swoop-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  to {
    transform: translate3d(-18px, -8px, 0) rotate(-3.6deg);
  }
}

.hero-orbit,
.doctor-orbit,
.final-cta-orbit,
.premium-hero-orbit,
.site-footer::before,
.premium-care-note::before {
  transform-origin: center;
  animation: griffin-orbit-drift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.premium-care-note::after {
  transform-origin: center;
  animation: griffin-orbit-drift-reverse 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-wave {
  animation: griffin-swoop-drift 14s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}

.hero-wave-sage {
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.doctor-orbit,
.site-footer::before {
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

.site-footer {
  color: rgba(255, 253, 248, 0.84);
}

.footer-grid h2 {
  color: #f3dda8;
  font-size: 0.72rem;
}

.site-footer a:hover,
.site-footer a:active {
  color: var(--paper);
  text-decoration-color: #f3dda8;
}

.site-footer ::selection {
  background: #f3dda8;
  color: var(--navy);
}

/* Scroll-led homepage choreography. */
.home-motion-item {
  --home-motion-x: 0px;
  --home-motion-y: 0px;
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(var(--home-motion-x), var(--home-motion-y), 0) scale(0.985);
  transition:
    opacity 720ms ease,
    filter 720ms ease,
    transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--home-motion-delay, 0ms);
  will-change: opacity, transform;
}

.home-motion-item[data-motion-direction="left"] {
  --home-motion-x: -46px;
}

.home-motion-item[data-motion-direction="right"] {
  --home-motion-x: 46px;
}

.home-motion-item[data-motion-direction="up"] {
  --home-motion-y: 42px;
}

.home-motion-item.is-motion-visible {
  --home-motion-x: 0px;
  --home-motion-y: 0px;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 640px) {
  .home-motion-item[data-motion-direction="left"],
  .home-motion-item[data-motion-direction="right"] {
    --home-motion-x: 0px;
    --home-motion-y: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-motion-item,
  .home-motion-item.is-motion-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit,
  .hero-wave,
  .doctor-orbit,
  .final-cta-orbit,
  .premium-hero-orbit,
  .site-footer::before,
  .premium-care-note::before,
  .premium-care-note::after {
    animation: none !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 11000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--navy);
  transform: translateY(-180%);
}

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

.shell {
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10000;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
  backdrop-filter: none;
}

.utility-bar {
  background: var(--sage);
  color: var(--navy-deep);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.utility-inner p {
  margin: 0;
}

.utility-inner > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-inner a {
  transition: color 180ms ease;
}

.utility-inner a:hover {
  color: var(--navy-deep);
  text-decoration: underline;
}

.utility-divider {
  width: 24px;
  height: 1px;
  background: rgba(27, 35, 49, 0.42);
}

.nav-row {
  display: grid;
  min-height: 88px;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: block;
  width: 180px;
}

.brand img,
.footer-brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.25vw, 2rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--navy-deep);
}

.button-primary:hover,
.button-primary:active {
  border-color: var(--sage-deep);
  background: var(--sage-deep);
  color: var(--paper);
}

.button-dark {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.button-dark:hover,
.button-dark:active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.button-outline {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.button-outline:hover,
.button-outline:active {
  background: var(--navy);
  color: var(--paper);
}

.button-dark-outline {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--paper);
}

.button-dark-outline:hover,
.button-dark-outline:active {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.button-light:hover,
.button-light:active {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
}

.mobile-menu {
  display: none;
}

.desktop-nav {
  position: static;
  gap: clamp(1.25rem, 2.1vw, 2rem);
}

.desktop-nav-item {
  position: relative;
}

.desktop-nav-trigger,
.desktop-nav-link {
  position: relative;
  display: inline-flex;
  height: 88px;
  padding: 0;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.desktop-nav .desktop-nav-link {
  color: var(--paper);
}

.desktop-nav-trigger::after,
.desktop-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav-item.is-open .desktop-nav-trigger::after,
.desktop-nav-item:hover .desktop-nav-trigger::after,
.desktop-nav-trigger:hover::after,
.desktop-nav-link:hover::after {
  transform: scaleX(1);
}

.desktop-nav a::after {
  display: none;
}

.nav-chevron {
  display: block;
  width: 10px;
  height: 7px;
  flex: 0 0 auto;
  overflow: visible;
  color: var(--gold-light);
  transform: translateY(1px);
  transition: transform 180ms ease;
}

.nav-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.nav-chevron.is-open {
  transform: translateY(1px) rotate(180deg);
}

.desktop-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  width: min(760px, 82vw);
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.desktop-nav-item.is-open .desktop-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.desktop-nav-item:hover .desktop-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.desktop-nav-item:hover .nav-chevron {
  transform: translateY(1px) rotate(180deg);
}

.desktop-dropdown-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border: 1px solid rgba(35, 44, 59, 0.12);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(16, 26, 42, 0.22);
}

.dropdown-overview {
  display: flex;
  min-height: 100%;
  padding: 2.75rem 2.25rem;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  border-right: 1px solid rgba(16, 43, 69, 0.08);
  background: var(--sage-soft);
  color: var(--navy);
  text-align: center;
  transition: background 180ms ease;
}

.dropdown-overview:hover {
  background: #d8e4d6;
}

.dropdown-overview span {
  max-width: 12ch;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.05;
}

.dropdown-overview small {
  display: inline-flex;
  min-height: 30px;
  padding: 0.4rem 0.7rem;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  border: 1px solid rgba(38, 74, 64, 0.2);
  color: var(--sage-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dropdown-links {
  display: grid;
  padding: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-links a {
  display: flex;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    padding 160ms ease,
    color 160ms ease;
}

.dropdown-links a:hover {
  padding-left: 1.1rem;
  color: var(--sage-deep);
}

.dropdown-links i {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
}

.header-actions {
  gap: 0.55rem;
}

.button-header-call {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.button-header-call:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.button-header-request {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--navy-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.button-header-request:hover,
.button-header-request:active,
.button-header-call:active {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

.mobile-navigation {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.mobile-menu-toggle > i {
  display: grid;
  width: 24px;
  gap: 5px;
}

.mobile-menu-toggle b {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold-light);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu-toggle[aria-expanded="true"] b:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] b:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] b:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu-backdrop {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(16, 26, 42, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-panel {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(430px, 92vw);
  padding: 1.6rem;
  flex-direction: column;
  overflow-y: auto;
  background: var(--navy);
  box-shadow: -18px 0 60px rgba(16, 26, 42, 0.25);
  color: var(--paper);
  transform: translateX(105%);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 280ms ease;
  visibility: hidden;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-heading {
  display: flex;
  padding-bottom: 1.4rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-heading > div {
  display: flex;
  flex-direction: column;
}

.mobile-menu-heading span {
  font-family: var(--display);
  font-size: 1.35rem;
}

.mobile-menu-heading small {
  color: var(--gold-light);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-menu-heading button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.mobile-menu-heading button i::before,
.mobile-menu-heading button i::after {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.mobile-menu-heading button i::before {
  transform: rotate(45deg);
}

.mobile-menu-heading button i::after {
  transform: rotate(-45deg);
}

.mobile-menu-panel > nav {
  display: flex;
  padding-block: 1rem 1.6rem;
  flex-direction: column;
}

.mobile-nav-link,
.mobile-nav-group > button {
  display: flex;
  width: 100%;
  min-height: 58px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  text-align: left;
}

.mobile-nav-group .nav-chevron {
  width: 12px;
  height: 8px;
}

.mobile-submenu {
  display: grid;
  max-height: 0;
  padding-left: 1rem;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    max-height 280ms ease,
    opacity 220ms ease,
    padding 220ms ease,
    visibility 220ms ease;
  visibility: hidden;
}

.mobile-nav-group.is-open .mobile-submenu {
  max-height: 640px;
  padding-block: 0.55rem 0.8rem;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-submenu a {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.mobile-submenu a:first-child {
  color: var(--gold-light);
}

.mobile-menu-contact {
  display: grid;
  margin-top: auto;
  gap: 0.65rem;
}

.mobile-menu-contact .button {
  width: 100%;
}

.mobile-menu-contact p {
  margin: 0.5rem 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

body.mobile-navigation-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 4.1vw, 4.35rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage-deep);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.gold-rule {
  display: flex;
  max-width: 480px;
  margin: 1.6rem 0 2rem;
  align-items: center;
  color: var(--gold);
}

.gold-rule::after {
  height: 1px;
  flex: 1;
  background: var(--gold);
  content: "";
}

.gold-rule span {
  margin-right: -2px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  padding: 58px 0 118px;
  background: var(--ivory);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(3.25rem, 5vw, 5.05rem);
}

.hero-lede {
  max-width: 560px;
  margin: 0 0 2rem;
  color: #4a5260;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-address {
  display: grid;
  width: fit-content;
  margin-top: 2.5rem;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  color: var(--sage-deep);
}

.hero-address > span {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 0.78rem;
}

.hero-address strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
}

.hero-address small {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: calc(100% + max(32px, (100vw - 1200px) / 2));
}

.hero-image-frame {
  position: relative;
  height: 540px;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 52% 0 0 48%;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 36, 58, 0.08), transparent 30%);
  content: "";
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-note {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: -28px;
  display: flex;
  min-width: 245px;
  padding: 1.1rem 1.3rem;
  flex-direction: column;
  border-left: 2px solid var(--gold);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.hero-note span {
  color: var(--gold-light);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 400;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: -360px;
  right: -270px;
  width: 980px;
  height: 980px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.hero-wave {
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: -420px;
  width: 85%;
  height: 530px;
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
}

.hero-wave-sage {
  right: 24%;
  bottom: -445px;
  width: 70%;
  background: var(--sage);
}

.hero-wave-navy {
  background: var(--navy);
}

.welcome-band {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--sage-soft);
  color: var(--body);
}

.welcome-grid {
  display: grid;
  min-height: 210px;
  grid-template-columns: 0.6fr 1.4fr auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.welcome-grid .eyebrow {
  color: var(--sage-deep);
}

.welcome-grid > p {
  margin: 0;
}

.welcome-grid > p:nth-child(2) {
  max-width: 710px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.welcome-grid strong {
  color: var(--navy);
  font-weight: 400;
}

.round-link {
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.38);
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.round-link i {
  display: none;
}

.round-link:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.section {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.section-heading {
  margin-bottom: 4rem;
}

.editorial-heading,
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.editorial-heading h2,
.split-heading h2 {
  max-width: 800px;
}

.editorial-heading > p,
.split-heading > p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.featured-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(3rem, 5vw, 5rem) clamp(1.2rem, 2.4vw, 2rem);
}

.featured-service {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.featured-service-image {
  position: relative;
  margin-bottom: 1.6rem;
  overflow: hidden;
  background: var(--sage-soft);
}

.featured-service-image img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-service:hover .featured-service-image img {
  transform: scale(1.035);
}

.featured-service-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--display);
}

.featured-service > p {
  margin: 0 0 0.45rem;
  color: var(--sage);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.featured-service h3 {
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.featured-service-copy {
  flex: 1;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-link {
  display: flex;
  margin-top: 1.35rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-footer {
  display: flex;
  margin-top: 4.5rem;
  padding-top: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--border);
}

.services-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.2rem;
}

.card-link i {
  color: var(--gold);
  font-size: 1rem;
  font-style: normal;
}

.service-ribbon {
  display: grid;
  margin-top: 5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-ribbon a {
  display: flex;
  min-height: 100px;
  padding: 1.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.service-ribbon a:hover {
  background: var(--navy);
  color: var(--paper);
}

.service-ribbon span {
  color: var(--gold);
  font-family: var(--sans);
}

.doctor-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-contrast);
  color: rgba(255, 253, 248, 0.94);
}

.doctor-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.doctor-image-stack {
  position: relative;
}

.doctor-main {
  width: 100%;
  height: 660px;
  border: 1px solid var(--gold-light);
  border-radius: 50% 50% 4px 4px;
  object-fit: cover;
  object-position: center 22%;
}

.doctor-monogram {
  position: absolute;
  right: -38px;
  bottom: 45px;
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 3.7rem;
}

.doctor-copy h2 {
  max-width: 740px;
  color: var(--paper);
}

.doctor-copy .large-copy {
  max-width: 700px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.doctor-copy > p:not(.eyebrow, .large-copy) {
  max-width: 650px;
}

.signature-line {
  display: flex;
  margin-top: 2.3rem;
  padding-top: 1.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255, 253, 248, 0.32);
}

.signature-line > div {
  display: flex;
  flex-direction: column;
}

.signature-line strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
}

.signature-line span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-orbit {
  position: absolute;
  right: -340px;
  bottom: -560px;
  width: 1000px;
  height: 1000px;
  border: 1px solid rgba(223, 189, 120, 0.45);
  border-radius: 50%;
}

.implant-feature {
  overflow: hidden;
  background: var(--ivory);
}

.implant-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.implant-grid > div:first-child p:not(.eyebrow) {
  max-width: 550px;
}

.implant-feature .button-row {
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}

.implant-visual {
  position: relative;
}

.implant-visual::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -24px;
  width: 68%;
  height: 75%;
  border: 1px solid var(--gold);
  content: "";
}

.implant-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.implant-visual > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 88%;
  margin: -48px 0 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.7rem;
  padding: 1.25rem 1.4rem;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--paper);
}

.implant-visual strong {
  padding-inline: 0.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.membership-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-contrast);
  color: rgba(255, 253, 248, 0.94);
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.membership-copy h2 {
  max-width: 720px;
  color: var(--paper);
}

.membership-copy .eyebrow {
  color: var(--gold-light);
}

.membership-copy p {
  max-width: 620px;
}

.membership-copy .button {
  margin-top: 1rem;
}

.membership-price {
  display: flex;
  padding: 2rem clamp(2rem, 4vw, 4rem);
  flex-direction: column;
  border-right: 1px solid rgba(255, 253, 248, 0.24);
  border-left: 1px solid rgba(255, 253, 248, 0.24);
  text-align: center;
}

.membership-price > span {
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-price strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(8rem, 13vw, 12rem);
  font-weight: 400;
  line-height: 1;
}

.membership-price small {
  max-width: 190px;
  margin: 1.2rem auto 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.67rem;
}

.membership-mark {
  color: var(--gold-light);
  font-size: clamp(3rem, 6vw, 6rem);
}

.office-section {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 9rem);
}

.office-section h2 {
  max-width: 560px;
  font-size: clamp(2.45rem, 3.7vw, 3.85rem);
}

.office-photo {
  position: relative;
}

.office-photo::before {
  position: absolute;
  z-index: -1;
  bottom: -24px;
  left: -24px;
  width: 70%;
  height: 72%;
  background: var(--sage);
  content: "";
}

.office-photo img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.contact-list {
  display: flex;
  margin-top: 2rem;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.contact-list a {
  display: flex;
  padding: 1rem 0;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  transition: padding 180ms ease;
}

.contact-list a:hover {
  padding-left: 0.5rem;
}

.contact-list span {
  color: var(--sage);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--navy);
  text-align: right;
}

.journal-section {
  background: var(--ivory);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.journal-card {
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 14px 50px rgba(16, 26, 42, 0.08);
}

.journal-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 400ms ease;
}

.journal-card:hover img {
  transform: scale(1.03);
}

.journal-card div {
  padding: 1.8rem;
}

.journal-card p,
.article-index-card p {
  margin: 0 0 0.8rem;
  color: var(--sage);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card h3 {
  font-size: 1.75rem;
}

.journal-card span,
.article-index-card span {
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(4rem, 9vw, 9rem);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.4rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1.35rem;
  right: 0;
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 2rem 1.5rem 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 9vw, 9rem);
  background: var(--navy);
  color: rgba(255, 253, 248, 0.76);
}

.final-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.55fr auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.final-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--paper);
}

.final-cta-grid > p {
  margin: 0 0 0.6rem;
}

.final-cta .button-outline {
  border-color: var(--paper);
  color: var(--paper);
}

.final-cta .button-outline:hover,
.final-cta .button-outline:active {
  background: var(--paper);
  color: var(--navy);
}

.final-cta-orbit {
  position: absolute;
  right: -240px;
  bottom: -580px;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(223, 189, 120, 0.5);
  border-radius: 50%;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--ivory);
}

.inner-hero::after {
  position: absolute;
  z-index: 0;
  right: -280px;
  bottom: -520px;
  width: 900px;
  height: 900px;
  border: 80px solid var(--sage);
  border-radius: 50%;
  content: "";
  opacity: 0.16;
}

.inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 390px;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.inner-hero h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}

.inner-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #4b5561;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.55;
}

.inner-hero img {
  width: 100%;
  max-height: 540px;
  aspect-ratio: 1 / 1.04;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 4px 4px;
  object-fit: cover;
}

.griffin-watermark {
  display: grid;
  width: min(32vw, 390px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--display);
  font-size: clamp(9rem, 20vw, 18rem);
  opacity: 0.42;
}

.longform {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.article-body {
  min-width: 0;
}

.article-body section + section {
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  margin-top: 3.5rem;
}

.article-body h2 {
  font-size: clamp(2.3rem, 3.4vw, 3.5rem);
}

.article-body p {
  color: #46505d;
  font-size: 1.02rem;
  line-height: 1.85;
}

.article-body figure {
  margin: 2.8rem 0 0;
}

.article-body figure img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.check-list,
.content-list {
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.check-list li,
.content-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}

.check-list li::before,
.content-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✦";
  font-size: 0.65rem;
}

.article-aside {
  position: sticky;
  top: 145px;
  display: grid;
  gap: 1.3rem;
}

.aside-card,
.related-card {
  padding: 2rem;
  border: 1px solid var(--border);
}

.aside-card {
  border-top: 3px solid var(--gold);
  background: var(--navy);
  color: rgba(255, 253, 248, 0.75);
}

.aside-card h2 {
  color: var(--paper);
}

.aside-card h2,
.related-card h2 {
  font-size: 2rem;
}

.aside-card .button {
  width: 100%;
  margin-bottom: 1rem;
}

.aside-card .text-link {
  display: block;
  color: var(--paper);
  text-align: center;
}

.related-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
}

.related-card a {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-article .article-body > section:first-child > p:first-of-type {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.6;
}

.emergency-banner {
  background: #eadbbf;
}

.emergency-banner .shell {
  display: grid;
  min-height: 90px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.emergency-banner strong,
.emergency-banner a {
  color: var(--navy);
  font-weight: 800;
}

.emergency-banner a {
  text-decoration: underline;
}

.article-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.article-index-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--paper);
}

.article-index-card img,
.article-placeholder {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  background: var(--sage-soft);
  transition: transform 400ms ease;
}

.article-index-card:hover img {
  transform: scale(1.03);
}

.article-index-card > div:last-child {
  display: flex;
  min-height: 255px;
  padding: 1.6rem;
  flex-direction: column;
}

.article-index-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}

.article-index-card span {
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.contact-embed-card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--border);
  background: var(--paper);
  scroll-margin-top: 150px;
}

.contact-embed-card > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 1.6rem;
}

.leadconnector-form {
  display: block;
  width: 100%;
  min-height: 1040px;
  border: 0;
  background: var(--paper);
}

.contact-layout address {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: normal;
}

.emergency-note {
  margin-top: 2rem;
  padding: 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--ivory);
  font-size: 0.82rem;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: flex;
  color: var(--navy);
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #9ca39e;
  border-radius: 0;
  background: var(--paper);
  color: var(--navy);
  font-weight: 400;
}

.contact-form textarea {
  min-height: 155px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.not-found {
  display: flex;
  min-height: 70vh;
  padding-block: 7rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  background: var(--navy);
  color: rgba(255, 253, 248, 0.68);
}

.site-footer::before {
  position: absolute;
  right: -320px;
  bottom: -550px;
  width: 850px;
  height: 850px;
  border: 1px solid rgba(223, 189, 120, 0.25);
  border-radius: 50%;
  content: "";
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-bottom: 5rem;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  gap: 3.5rem;
}

.footer-brand img {
  max-width: 210px;
  margin-bottom: 1.6rem;
}

.footer-statement {
  max-width: 390px;
  margin-bottom: 0.5rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1.25;
}

.footer-brand > p:not(.footer-statement) {
  max-width: 360px;
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin-bottom: 1.3rem;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.footer-grid address {
  font-style: normal;
}

.footer-actions {
  display: flex;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.light-link {
  color: var(--paper);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1.3rem;
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1120px) {
  .shell {
    width: min(100% - 48px, 1200px);
  }

  .nav-row {
    grid-template-columns: 165px 1fr auto;
    gap: 1.25rem;
  }

  .brand {
    width: 165px;
  }

  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: 0.7rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 3rem;
  }

  .hero-visual {
    width: calc(100% + 24px);
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 64px;
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .nav-row {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary i {
    position: relative;
    display: block;
    width: 24px;
    height: 1px;
    background: var(--navy);
  }

  .mobile-menu summary i::after {
    position: absolute;
    top: 7px;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--navy);
    content: "";
  }

  .mobile-menu nav {
    position: absolute;
    top: 108px;
    right: 0;
    left: 0;
    display: grid;
    padding: 1.4rem 24px 1.8rem;
    border-top: 1px solid var(--border);
    background: var(--ivory);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--navy);
    font-family: var(--display);
    font-size: 1.2rem;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 110px;
  }

  .hero-grid,
  .doctor-grid,
  .implant-grid,
  .office-section,
  .inner-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .leadconnector-form {
    min-height: 1120px;
  }

  .hero-grid {
    gap: 3.5rem;
  }

  .hero-copy h1 {
    max-width: 720px;
  }

  .hero-visual {
    width: calc(100% + 24px);
    margin-right: -24px;
    justify-self: end;
  }

  .hero-image-frame {
    height: 500px;
  }

  .welcome-grid {
    min-height: auto;
    padding-block: 3.5rem;
    grid-template-columns: 1fr 2fr;
  }

  .welcome-grid .round-link {
    display: none;
  }

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

  .featured-service:nth-child(2) {
    padding-top: 3rem;
  }

  .featured-service:nth-child(3) {
    grid-column: 1 / -1;
    width: 55%;
    margin-inline: auto;
  }

  .doctor-grid {
    gap: 4rem;
  }

  .doctor-image-stack {
    width: min(520px, 84%);
  }

  .doctor-main {
    height: 620px;
  }

  .implant-grid {
    gap: 4rem;
  }

  .membership-grid {
    grid-template-columns: 1fr 0.65fr;
  }

  .membership-mark {
    display: none;
  }

  .office-section {
    gap: 4rem;
  }

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

  .faq-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .final-cta-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .final-cta-grid .button-row {
    grid-column: 1 / -1;
  }

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

  .article-aside {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-grid > div:last-child {
    display: flex;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    grid-template-columns: repeat(3, 1fr);
    background: var(--paper);
    box-shadow: 0 -5px 24px rgba(16, 26, 42, 0.15);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--border);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--navy);
    color: var(--paper);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .utility-inner > div {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .utility-inner a {
    font-size: 0.58rem;
  }

  .utility-divider {
    display: none;
  }

  .nav-row {
    min-height: 72px;
  }

  .brand {
    width: 146px;
  }

  .mobile-menu nav {
    top: 104px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero {
    padding-top: 48px;
  }

  .gold-rule {
    margin: 1.25rem 0 1.7rem;
  }

  .hero-lede {
    font-size: 1.15rem;
  }

  .hero .button-row,
  .final-cta .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-address {
    margin-top: 2rem;
  }

  .hero-visual {
    width: calc(100% + 16px);
    margin-right: -16px;
  }

  .hero-image-frame {
    height: 360px;
    border-radius: 48% 0 0 48%;
  }

  .hero-note {
    bottom: 18px;
    left: -4px;
    min-width: 215px;
  }

  .hero-orbit {
    display: none;
  }

  .hero-wave {
    bottom: -465px;
    width: 130%;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .welcome-grid > p:nth-child(2) {
    font-size: 1.35rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .editorial-heading,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section-heading {
    margin-bottom: 2.8rem;
  }

  .featured-service-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .featured-service:nth-child(2) {
    padding-top: 0;
  }

  .featured-service:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  .featured-service-image img {
    aspect-ratio: 1.15 / 1;
  }

  .service-ribbon {
    margin-top: 4rem;
    grid-template-columns: 1fr;
  }

  .service-ribbon a {
    min-height: 76px;
  }

  .doctor-image-stack {
    width: calc(100% - 28px);
  }

  .doctor-main {
    height: 520px;
  }

  .doctor-monogram {
    right: -28px;
    width: 86px;
    font-size: 3rem;
  }

  .signature-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .implant-visual img {
    min-height: 340px;
  }

  .implant-visual > div {
    width: calc(100% - 20px);
    grid-template-columns: auto 1fr;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .membership-price {
    padding: 2.3rem 0;
    border-top: 1px solid rgba(255, 253, 248, 0.24);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 248, 0.24);
    border-left: 0;
  }

  .office-photo::before {
    bottom: -16px;
    left: -16px;
  }

  .journal-grid,
  .article-index {
    grid-template-columns: 1fr;
  }

  .final-cta-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta-grid .button-row {
    grid-column: auto;
  }

  .inner-hero-grid {
    min-height: auto;
    gap: 3rem;
  }

  .inner-hero img {
    max-height: 440px;
  }

  .griffin-watermark {
    width: 250px;
    justify-self: center;
  }

  .emergency-banner .shell {
    padding-block: 1.2rem;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid > div:last-child {
    display: none;
  }

  .footer-bottom {
    padding-block: 1.5rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .nav-row {
    grid-template-columns: 1fr auto;
  }

  .mobile-navigation {
    display: block;
  }
}

@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .welcome-grid .button {
    grid-column: 2;
    justify-self: start;
  }

  .featured-service:nth-child(2) {
    padding-top: 0;
  }

  .featured-service:nth-child(3) {
    grid-column: auto;
    width: auto;
    margin-inline: 0;
  }

  .membership-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(2.9rem, 13.2vw, 4.15rem);
  }

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

  .welcome-grid .button {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }

  .featured-service-grid {
    gap: 3.7rem;
  }

  .featured-service:nth-child(2),
  .featured-service:nth-child(3) {
    padding-top: 0;
  }

  .featured-service-image img {
    aspect-ratio: 1.28 / 1;
  }

  .services-footer {
    margin-top: 3.5rem;
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .services-footer .button {
    width: 100%;
  }

  .implant-visual > div {
    grid-template-columns: 1fr;
  }

  .implant-visual strong {
    padding: 0.45rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

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

  .membership-price strong {
    font-size: clamp(7rem, 34vw, 10rem);
  }

  .office-section h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }
}

/* Premium internal-page system */
.premium-inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(168, 187, 163, 0.14), transparent 28%),
    var(--navy);
  color: rgba(255, 253, 248, 0.78);
}

.premium-hero-orbit {
  position: absolute;
  right: -350px;
  bottom: -560px;
  width: 980px;
  height: 980px;
  border: 1px solid rgba(223, 189, 120, 0.34);
  border-radius: 50%;
}

.premium-hero-orbit::before,
.premium-hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(223, 189, 120, 0.19);
  border-radius: inherit;
  content: "";
  inset: 95px;
}

.premium-hero-orbit::after {
  inset: 205px;
}

.premium-inner-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8.5rem);
}

.premium-inner-hero-copy {
  max-width: 720px;
}

.premium-breadcrumbs {
  display: flex;
  margin-bottom: clamp(2.2rem, 4vw, 4rem);
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-breadcrumbs a {
  color: var(--paper);
}

.premium-inner-hero h1,
.premium-hub-hero h1,
.legal-hero h1 {
  max-width: 800px;
  margin-bottom: 1.4rem;
  color: var(--paper);
  font-size: clamp(3.25rem, 5.8vw, 6.2rem);
  line-height: 0.98;
}

.premium-hero-lede,
.premium-hub-hero p:not(.eyebrow),
.legal-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.76);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  line-height: 1.62;
}

.premium-inner-hero .button-outline,
.premium-hub-hero .button-outline {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--paper);
}

.premium-inner-hero .button-outline:hover,
.premium-inner-hero .button-outline:active,
.premium-hub-hero .button-outline:hover,
.premium-hub-hero .button-outline:active {
  background: var(--paper);
  color: var(--navy);
}

.premium-hero-details {
  display: flex;
  margin-top: 2.4rem;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-hero-details span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.premium-hero-details span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.premium-hero-media {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  justify-self: end;
}

.premium-hero-media::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 66%;
  height: 72%;
  border: 1px solid rgba(223, 189, 120, 0.54);
  content: "";
}

.premium-hero-media img {
  width: 100%;
  height: clamp(470px, 52vw, 660px);
  border-radius: 220px 220px 8px 8px;
  object-fit: cover;
}

.premium-hero-media figcaption {
  position: absolute;
  right: -28px;
  bottom: 36px;
  display: flex;
  min-width: 250px;
  padding: 1.25rem 1.45rem;
  flex-direction: column;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(3, 14, 26, 0.18);
  color: var(--navy);
}

.premium-hero-media figcaption strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.premium-hero-media figcaption span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.premium-proof-strip {
  border-bottom: 1px solid var(--border);
  background: var(--paper);
}

.premium-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.premium-proof-grid > div {
  display: flex;
  min-height: 118px;
  padding: 1.5rem clamp(1.2rem, 3vw, 3rem);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.premium-proof-grid > div:first-child {
  padding-left: 0;
}

.premium-proof-grid > div:last-child {
  border-right: 0;
}

.premium-proof-grid strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.24rem;
}

.premium-proof-grid span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.premium-page {
  overflow: hidden;
}

.premium-story {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.premium-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 9rem);
}

.premium-story-section + .premium-story-section {
  padding-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--border);
  margin-top: clamp(5rem, 9vw, 9rem);
}

.premium-story-section:nth-child(even) .premium-story-copy {
  order: 2;
}

.premium-story-section:nth-child(even) .premium-story-media,
.premium-story-section:nth-child(even) .premium-story-accent {
  order: 1;
}

.premium-story-copy {
  max-width: 630px;
}

.premium-story-copy h2,
.premium-section-heading h2,
.membership-intro h2,
.finance-intro h2,
.cherry-intro-grid h2,
.premium-care-note h2 {
  font-size: clamp(2.55rem, 4.4vw, 4.5rem);
}

.premium-story-copy > p:not(.eyebrow),
.membership-intro p,
.finance-intro p,
.cherry-intro-grid p {
  color: #46515d;
  font-size: 1.03rem;
  line-height: 1.85;
}

.premium-story-copy > p:not(.eyebrow):first-of-type {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.65;
}

.premium-story-media {
  position: relative;
  margin: 0;
}

.premium-story-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 48%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
}

.premium-story-media img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.premium-story-section:nth-child(3n + 2) .premium-story-media img {
  border-radius: 180px 0 0;
}

.premium-story-section:nth-child(3n + 3) .premium-story-media img {
  border-radius: 0 180px 0 0;
}

.premium-story-section.text-only {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
}

.premium-story-accent {
  display: grid;
  min-height: 360px;
  place-content: center;
  border: 1px solid var(--border);
  background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    url("/media/bg-ac84829a.jpg") center / cover;
  color: var(--navy);
  text-align: center;
}

.premium-story-accent span {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-story-accent strong {
  font-family: var(--display);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
}

.premium-topics,
.premium-gallery-section,
.financing-options-section,
.membership-plans-section,
.cherry-widget-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--ivory);
}

.premium-section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.premium-section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.premium-section-heading.centered > p:not(.eyebrow) {
  color: var(--muted);
}

.premium-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.premium-topic-grid article {
  min-height: 230px;
  padding: clamp(1.8rem, 3vw, 3rem);
  background: var(--paper);
}

.premium-topic-grid span {
  color: var(--gold);
}

.premium-topic-grid h3 {
  max-width: 330px;
  margin-top: 2.5rem;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.premium-checklist-section {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--navy);
  color: rgba(255, 253, 248, 0.75);
}

.premium-checklist-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.premium-checklist-grid h2 {
  color: var(--paper);
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.premium-checklist-grid ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.premium-checklist-grid li {
  position: relative;
  padding: 1.35rem 0 1.35rem 2rem;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  color: var(--paper);
  line-height: 1.6;
}

.premium-checklist-grid li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✦";
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.premium-gallery figure {
  margin: 0;
}

.premium-gallery figure:first-child:nth-last-child(3) {
  grid-row: span 2;
}

.premium-gallery img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  max-height: 620px;
  object-fit: cover;
}

.premium-care-note {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  border-top: 1px solid var(--border);
  background: var(--paper);
}

.premium-care-note-grid {
  display: grid;
  grid-template-columns: 1fr 0.65fr auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.premium-care-note h2 {
  margin: 0;
}

.premium-care-note-grid > p {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.premium-emergency-banner {
  border-bottom: 1px solid rgba(16, 43, 69, 0.1);
}

/* Membership */
.membership-intro,
.finance-intro,
.cherry-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.membership-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}

.membership-plan-card {
  display: flex;
  padding: clamp(1.7rem, 3vw, 2.7rem);
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--paper);
}

.membership-plan-card > p:first-child {
  min-height: 2.8rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.45rem;
}

.membership-plan-price {
  display: flex;
  padding-bottom: 1.6rem;
  align-items: flex-end;
  gap: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.membership-plan-price strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(4.7rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.82;
}

.membership-plan-price span {
  padding-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
}

.membership-plan-card ul {
  padding: 1.35rem 0 0;
  margin: 0 0 1rem;
  list-style: none;
}

.membership-plan-card li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.4rem;
  border-bottom: 1px solid var(--border);
  color: #45515e;
  font-size: 0.87rem;
}

.membership-plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✦";
}

.membership-additional {
  color: var(--navy);
  font-weight: 800;
}

.membership-plan-note {
  min-height: 2.6rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.membership-plan-card .button {
  width: 100%;
  margin-top: auto;
}

.membership-photo-band {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--navy);
  color: rgba(255, 253, 248, 0.74);
}

.membership-photo-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.membership-photo-grid figure {
  margin: 0;
}

.membership-photo-grid img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.membership-photo-grid h2 {
  color: var(--paper);
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

/* Financing and Cherry */
.finance-intro .button {
  margin-top: 1rem;
}

.financing-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.financing-card-grid article {
  display: flex;
  min-height: 390px;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: var(--paper);
}

.financing-card-grid img {
  width: auto;
  max-width: 190px;
  height: 72px;
  margin-bottom: 2.5rem;
  object-fit: contain;
}

.financing-card-grid .wings-qr {
  width: 120px;
  height: 120px;
  margin-bottom: 1.2rem;
}

.financing-card-grid h3 {
  font-size: 2rem;
}

.financing-card-grid p {
  color: var(--muted);
}

.financing-card-grid .button {
  width: 100%;
  margin-top: auto;
}

.finance-membership-band {
  padding-block: clamp(5rem, 8vw, 8rem);
  background: var(--navy);
}

.finance-membership-grid {
  display: grid;
  grid-template-columns: 1fr 0.45fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  color: rgba(255, 253, 248, 0.74);
}

.finance-membership-grid h2 {
  color: var(--paper);
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

.finance-membership-grid > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.finance-membership-grid > div:nth-child(2) strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.8;
}

.finance-membership-grid > div:nth-child(2) span {
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cherry-widget-shell {
  min-height: 520px;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--border);
  background: var(--paper);
}

.cherry-widget-shell > p {
  color: var(--muted);
  text-align: center;
}

/* Internal hubs */
.premium-hub-hero {
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--navy);
}

.premium-hub-hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.premium-hub-hero img {
  width: 100%;
  max-height: 590px;
  aspect-ratio: 1.28 / 1;
  border-radius: 220px 0 0;
  object-fit: cover;
}

.resource-hub-hero img {
  border-radius: 0 220px 0 0;
}

.premium-hub-section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.premium-service-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.premium-service-hub-grid > a {
  display: grid;
  min-height: 365px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--paper);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.premium-service-hub-grid > a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(16, 43, 69, 0.1);
}

.premium-service-hub-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-service-hub-grid a > div {
  display: flex;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex-direction: column;
}

.premium-service-hub-grid p {
  color: var(--sage);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-service-hub-grid h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.premium-service-hub-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.premium-service-hub-grid strong {
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--navy);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.premium-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.premium-resource-grid > a {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--paper);
}

.premium-resource-grid img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
  transition: transform 350ms ease;
}

.premium-resource-grid > a:hover img {
  transform: scale(1.025);
}

.premium-resource-grid a > div {
  padding: clamp(1.6rem, 3vw, 2.7rem);
}

.premium-resource-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.premium-resource-grid p {
  color: var(--muted);
}

.premium-resource-grid strong {
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Legal pages */
.legal-hero {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--navy);
}

.legal-hero-inner {
  max-width: 900px;
}

.legal-page {
  max-width: 940px;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.legal-page > section + section {
  padding-top: 2.8rem;
  border-top: 1px solid var(--border);
  margin-top: 2.8rem;
}

.legal-page h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.legal-page p {
  color: #46515d;
  font-size: 1rem;
  line-height: 1.85;
}

@media (max-width: 1000px) {
  .premium-inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 3.5rem;
  }

  .premium-hero-media figcaption {
    right: -10px;
  }

  .premium-story-section,
  .premium-story-section.text-only {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 3.5rem;
  }

  .premium-care-note-grid,
  .finance-membership-grid {
    grid-template-columns: 1fr 0.62fr;
  }

  .premium-care-note-grid .button,
  .finance-membership-grid .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .membership-plan-grid,
  .financing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-plan-card:last-child,
  .financing-card-grid article:last-child {
    grid-column: 1 / -1;
  }

  .premium-service-hub-grid > a {
    grid-template-columns: 1fr;
  }

  .premium-service-hub-grid img {
    aspect-ratio: 1.65 / 1;
  }
}

@media (max-width: 760px) {
  .premium-inner-hero-grid,
  .premium-hub-hero-grid,
  .membership-photo-grid,
  .membership-intro,
  .finance-intro,
  .cherry-intro-grid,
  .premium-checklist-grid {
    grid-template-columns: 1fr;
  }

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

  .premium-hero-media {
    width: 100%;
    justify-self: stretch;
  }

  .premium-hero-media img {
    height: min(112vw, 570px);
  }

  .premium-hero-media figcaption {
    right: 12px;
    bottom: 18px;
  }

  .premium-proof-grid {
    grid-template-columns: 1fr;
  }

  .premium-proof-grid > div,
  .premium-proof-grid > div:first-child {
    min-height: 92px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .premium-proof-grid > div:last-child {
    border-bottom: 0;
  }

  .premium-story-section,
  .premium-story-section.text-only {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .premium-story-section:nth-child(even) .premium-story-copy,
  .premium-story-section:nth-child(even) .premium-story-media,
  .premium-story-section:nth-child(even) .premium-story-accent {
    order: initial;
  }

  .premium-story-accent {
    min-height: 250px;
  }

  .premium-topic-grid {
    grid-template-columns: 1fr;
  }

  .premium-topic-grid article {
    min-height: 170px;
  }

  .premium-gallery,
  .membership-plan-grid,
  .financing-card-grid,
  .premium-service-hub-grid,
  .premium-resource-grid {
    grid-template-columns: 1fr;
  }

  .premium-care-note-grid,
  .finance-membership-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .premium-care-note-grid .button,
  .finance-membership-grid .button,
  .membership-plan-card:last-child,
  .financing-card-grid article:last-child {
    grid-column: auto;
  }

  .premium-hub-hero img {
    border-radius: 150px 0 0;
  }
}

@media (max-width: 640px) {
  .premium-inner-hero,
  .premium-hub-hero,
  .legal-hero {
    padding-block: 3.8rem;
  }

  .premium-inner-hero h1,
  .premium-hub-hero h1,
  .legal-hero h1 {
    font-size: clamp(2.75rem, 12.4vw, 4.25rem);
    line-height: 1.01;
  }

  .premium-breadcrumbs {
    margin-bottom: 2.2rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .premium-breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .premium-inner-hero .button-row,
  .premium-hub-hero .button-row {
    width: 100%;
  }

  .premium-inner-hero .button,
  .premium-hub-hero .button {
    width: 100%;
  }

  .premium-hero-details {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-hero-media::before {
    top: -12px;
    right: -8px;
  }

  .premium-hero-media img {
    height: min(118vw, 490px);
    border-radius: 150px 150px 5px 5px;
  }

  .premium-hero-media figcaption {
    right: 10px;
    bottom: 12px;
    min-width: 220px;
    padding: 1rem 1.15rem;
  }

  .premium-story {
    padding-block: 4.5rem;
  }

  .premium-story-section + .premium-story-section {
    padding-top: 4.5rem;
    margin-top: 4.5rem;
  }

  .premium-story-copy h2,
  .premium-section-heading h2,
  .membership-intro h2,
  .finance-intro h2,
  .cherry-intro-grid h2,
  .premium-care-note h2 {
    font-size: clamp(2.25rem, 10.2vw, 3.35rem);
  }

  .premium-story-media img {
    max-height: 450px;
    aspect-ratio: 1.05 / 1;
  }

  .premium-story-section:nth-child(3n + 2) .premium-story-media img,
  .premium-story-section:nth-child(3n + 3) .premium-story-media img {
    border-radius: 110px 0 0;
  }

  .premium-topics,
  .premium-gallery-section,
  .financing-options-section,
  .membership-plans-section,
  .cherry-widget-section,
  .premium-checklist-section,
  .membership-photo-band,
  .finance-membership-band {
    padding-block: 4.5rem;
  }

  .premium-gallery img {
    min-height: 260px;
  }

  .membership-plan-price strong {
    font-size: 5.5rem;
  }

  .membership-photo-grid img {
    min-height: 320px;
  }

  .finance-membership-grid > div:nth-child(2) strong {
    font-size: 6.4rem;
  }

  .premium-service-hub-grid > a {
    min-height: 0;
  }

  .premium-service-hub-grid img,
  .premium-resource-grid img {
    aspect-ratio: 1.3 / 1;
  }

  .legal-page {
    padding-block: 4.5rem;
  }
}

/* Light, image-backed CTA used only on premium internal pages. */
.final-cta-internal {
  padding-block: clamp(5.25rem, 8vw, 8rem);
  border-top: 1px solid var(--border);
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 233, 0.99) 0%,
      rgba(247, 243, 233, 0.97) 48%,
      rgba(247, 243, 233, 0.88) 72%,
      rgba(247, 243, 233, 0.78) 100%
    ),
    url("/media/the-front-of-a-dental-office-with-a-sign-in-front-of-it-ede8b0ff.jpg")
      center 54% / cover no-repeat;
  color: var(--body);
}

.final-cta-internal .final-cta-orbit {
  top: -510px;
  right: -300px;
  bottom: auto;
  border-color: rgba(201, 149, 61, 0.32);
}

.final-cta-internal .final-cta-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr) minmax(220px, 0.32fr);
  align-items: center;
}

.final-cta-internal .eyebrow.light {
  color: var(--sage);
}

.final-cta-internal h2 {
  color: var(--navy);
}

.final-cta-internal .final-cta-grid > p {
  margin: 0;
  color: #4d5865;
}

.final-cta-internal .button-row {
  width: 100%;
  min-width: 220px;
  margin: 0;
  align-self: center;
  align-items: stretch;
  flex-direction: column;
  justify-self: center;
}

.final-cta-internal .button {
  width: 100%;
}

.final-cta-internal .button-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--paper);
}

.final-cta-internal .button-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.final-cta-internal .button-outline:hover,
.final-cta-internal .button-outline:active {
  background: var(--navy);
  color: var(--paper);
}

@media (max-width: 1000px) {
  .final-cta-internal .final-cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.68fr);
  }

  .final-cta-internal .button-row {
    grid-column: 1 / -1;
    width: min(100%, 320px);
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .final-cta-internal {
    background:
      linear-gradient(rgba(247, 243, 233, 0.94), rgba(247, 243, 233, 0.94)),
      url("/media/the-front-of-a-dental-office-with-a-sign-in-front-of-it-ede8b0ff.jpg")
        68% center / cover no-repeat;
  }

  .final-cta-internal .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-internal .button-row {
    grid-column: auto;
    width: 100%;
  }
}

/* Blog, article, and contact heroes share the premium internal-page system. */
.shared-inner-hero .premium-inner-hero-copy {
  padding-block: 1rem;
}

.shared-inner-hero.compact-title h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.85rem);
  line-height: 1.02;
}

.shared-inner-hero .premium-hero-media img {
  object-position: center;
}

/* WordPress adds paragraph margins after the Sites reset. Restore the exact
   approved homepage cascade while leaving the shared final CTA untouched. */
.griffin-dental-site .gd-home-parity > :not(.gd-premium-final) p {
  margin: 0;
}

.griffin-dental-site .gd-home-parity p.eyebrow {
  margin: 0 0 1rem;
}

.griffin-dental-site .gd-home-parity p.hero-lede {
  margin: 0 0 2rem;
}

.griffin-dental-site .gd-home-parity .featured-service > p {
  margin: 0 0 0.45rem;
}

.griffin-dental-site .gd-home-parity .editorial-heading > p {
  margin: 0 0 0.7rem;
}

.griffin-dental-site .gd-home-parity .journal-card p {
  margin: 0 0 0.8rem;
}

.griffin-dental-site .gd-home-parity .doctor-main {
  height: 660px;
}

.griffin-dental-site .gd-home-parity .welcome-grid > p.eyebrow {
  margin: 0;
}

@media (max-width: 640px) {
  body.griffin-dental-site.home {
    padding-bottom: 64px;
  }

  .griffin-dental-site .gd-home-parity h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .griffin-dental-site .gd-home-parity .office-section h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  .griffin-dental-site .gd-home-parity .doctor-main {
    height: 520px;
  }
}

@media (max-width: 640px) {
  .shared-inner-hero.compact-title h1 {
    font-size: clamp(2.4rem, 10.8vw, 3.55rem);
  }
}

/* Centered consultation CTA used on About Us and service detail pages. */
.premium-care-note {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 8rem);
  border-block: 1px solid var(--border);
  background: linear-gradient(135deg, #edf3ec 0%, #f7f3e9 58%, #fffdf8 100%);
}

.premium-care-note::before,
.premium-care-note::after {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(111, 143, 112, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.premium-care-note::before {
  top: -285px;
  left: -190px;
}

.premium-care-note::after {
  right: -210px;
  bottom: -315px;
  border-color: rgba(201, 149, 61, 0.25);
}

.premium-care-note-grid {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(calc(100% - 48px), 980px);
  padding: clamp(3.5rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  border: 1px solid rgba(16, 43, 69, 0.12);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 28px 80px rgba(16, 43, 69, 0.08);
  text-align: center;
}

.premium-care-note-grid > div {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.premium-care-note .eyebrow,
.premium-care-note h2,
.premium-care-note-grid > p {
  margin: 0;
}

.premium-care-note h2 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: 1.02;
}

.premium-care-note-grid > p {
  max-width: 690px;
  color: #4d5865;
  font-size: 1.05rem;
  line-height: 1.8;
}

.premium-care-note-grid .button {
  min-width: 205px;
  margin-top: 0.7rem;
  justify-self: center;
}

@media (max-width: 640px) {
  .premium-care-note {
    padding-block: 4.5rem;
  }

  .premium-care-note-grid {
    width: min(calc(100% - 36px), 980px);
    padding: 3.25rem 1.4rem;
    align-items: center;
    gap: 1.15rem;
  }

  .premium-care-note h2 {
    font-size: clamp(2.35rem, 10.6vw, 3.35rem);
  }

  .premium-care-note-grid > p {
    font-size: 1rem;
  }

  .premium-care-note-grid .button {
    width: 100%;
    margin-top: 0.55rem;
  }
}

/* Keep the live footer highlight at the final cascade position. */
.site-footer {
  color: rgba(255, 253, 248, 0.84);
}

.footer-grid h2 {
  color: #f3dda8;
  font-size: 0.72rem;
}

.site-footer a:hover,
.site-footer a:active {
  color: var(--paper);
  text-decoration-color: #f3dda8;
}

.site-footer ::selection {
  background: #f3dda8;
  color: var(--navy);
}
