:root {
  --graphite-950: #101110;
  --graphite-900: #171817;
  --graphite-850: #1d1e1c;
  --graphite-800: #232422;
  --graphite-700: #30312e;
  --gold: #c5b52a;
  --gold-soft: #d7c95a;
  --gold-elegant: #ad9a55;
  --silver: #c8cbc7;
  --paper: #f4f1e9;
  --paper-bright: #fbfaf6;
  --ink: #20211f;
  --muted: #686b66;
  --muted-dark: #b7b9b4;
  --line: rgba(32, 33, 31, 0.14);
  --line-dark: rgba(200, 203, 199, 0.18);
  --shadow: 0 24px 70px rgba(16, 17, 16, 0.14);
  --sans: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 94px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--graphite-950);
  background: var(--gold-soft);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

p {
  line-height: 1.75;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--graphite-950);
  background: var(--gold-soft);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
  padding: 10px clamp(20px, 4.5vw, 72px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(16, 17, 16, 0.96);
  box-shadow: 0 10px 30px rgba(16, 17, 16, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: clamp(156px, 15vw, 206px);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--muted-dark);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 720;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper-bright);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.site-nav .nav-action {
  min-height: 46px;
  margin-left: 10px;
  padding: 0 18px;
  color: var(--graphite-950);
  border: 1px solid var(--gold);
  background: var(--gold);
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  color: var(--graphite-950);
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--silver);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--graphite-950);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 44%;
  content: "";
  background:
    linear-gradient(90deg, var(--graphite-950) 0%, rgba(16, 17, 16, 0.88) 16%, rgba(16, 17, 16, 0.28) 58%, rgba(16, 17, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(16, 17, 16, 0.55), rgba(16, 17, 16, 0.08)),
    url("assets/dental-clinic-hero.png") 62% center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -420px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(197, 181, 42, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(197, 181, 42, 0.025),
    0 0 0 160px rgba(197, 181, 42, 0.018);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.58fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(82px, 10vw, 136px) 0 clamp(70px, 8vw, 106px);
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  color: var(--gold-elegant);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--paper-bright);
  font-size: clamp(3.5rem, 6.25vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.048em;
}

.hero h1 em {
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(244, 241, 233, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-gold {
  color: var(--graphite-950);
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 16px 38px rgba(197, 181, 42, 0.15);
}

.button-gold:hover,
.button-gold:focus-visible {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

.button-outline {
  color: var(--paper-bright);
  border-color: rgba(200, 203, 199, 0.32);
  background: rgba(16, 17, 16, 0.25);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--silver);
  background: rgba(255, 255, 255, 0.07);
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-bottom: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--line-dark);
}

.credential-list div {
  min-width: 0;
  padding: 16px 18px;
  background: rgba(16, 17, 16, 0.72);
}

.credential-list dt {
  margin-bottom: 5px;
  color: var(--gold-elegant);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.credential-list dd {
  margin-bottom: 0;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 740;
  line-height: 1.35;
}

.hero-card {
  max-width: 360px;
  padding: 24px;
  border: 1px solid rgba(200, 203, 199, 0.2);
  border-radius: 14px;
  background: rgba(16, 17, 16, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.profile-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.profile-row img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(197, 181, 42, 0.45);
  border-radius: 50%;
  object-fit: cover;
}

.profile-row div {
  display: grid;
  gap: 4px;
}

.profile-row span {
  color: var(--gold-elegant);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-row strong {
  color: var(--paper-bright);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-card p {
  margin-bottom: 16px;
  color: rgba(244, 241, 233, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-card > a {
  color: var(--silver);
  font-size: 0.85rem;
  font-weight: 760;
  text-decoration-color: var(--gold-elegant);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.assurance {
  color: var(--graphite-950);
  border-bottom: 1px solid rgba(32, 33, 31, 0.12);
  background: var(--gold);
}

.assurance-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 52px);
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
}

.assurance p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
}

.assurance span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(16, 17, 16, 0.42);
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section > * {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.implant-section {
  background: var(--paper);
}

.implant-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
  margin-bottom: 58px;
}

.implant-heading h2,
.section-heading h2,
.local-copy h2,
.faq-heading h2,
.professional-copy h2,
.contact-copy h2,
.process-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 4.65vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.042em;
}

.implant-heading h2 {
  max-width: 740px;
}

.section-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.implant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.implant-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 250px;
  padding: 34px 30px;
}

.implant-feature + .implant-feature {
  border-left: 1px solid var(--line);
}

.feature-number {
  color: var(--gold-elegant);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
}

.implant-feature h3 {
  margin-bottom: 13px;
  font-size: 1.75rem;
  line-height: 1.05;
}

.implant-feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.implant-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 30px;
  color: var(--paper);
  background: var(--graphite-800);
}

.implant-cta p {
  margin-bottom: 0;
  color: var(--silver);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.3;
}

.implant-cta a,
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.implant-cta a:hover,
.implant-cta a:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--paper-bright);
  outline: none;
}

.specialties-section {
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .section-kicker {
  align-self: start;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 16px;
}

.service-card {
  min-height: 370px;
  padding: 34px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(32, 33, 31, 0.05);
}

.service-card-primary {
  color: var(--paper-bright);
  border-color: var(--graphite-700);
  background: var(--graphite-800);
  box-shadow: 0 24px 58px rgba(16, 17, 16, 0.15);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 58px;
  color: var(--gold-elegant);
  border: 1px solid rgba(173, 154, 85, 0.36);
  border-radius: 10px;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.card-label {
  margin-bottom: 10px;
  color: var(--gold-elegant);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
}

.service-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card-primary p:last-child {
  color: var(--muted-dark);
}

.process-section {
  color: var(--paper-bright);
  background: var(--graphite-900);
}

.section-kicker-light {
  color: var(--gold-soft);
}

.process-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: end;
  margin-bottom: 58px;
}

.process-header h2 {
  max-width: 800px;
  color: var(--paper-bright);
}

.process-header > p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--line-dark);
  list-style: none;
}

.process-list li {
  min-height: 300px;
  padding: 30px;
  background: var(--graphite-850);
}

.process-list span {
  display: block;
  margin-bottom: 72px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-list h3 {
  margin-bottom: 14px;
  color: var(--paper-bright);
  font-size: 1.65rem;
  line-height: 1.05;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.professional-section {
  background: var(--paper);
}

.professional-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(36px, 8vw, 112px);
  align-items: center;
}

.professional-photo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 40%, rgba(197, 181, 42, 0.2), transparent 45%),
    var(--graphite-800);
}

.professional-photo::before,
.professional-photo::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(197, 181, 42, 0.16);
  border-radius: 50%;
}

.professional-photo::before {
  width: 270px;
  height: 270px;
}

.professional-photo::after {
  width: 350px;
  height: 350px;
}

.professional-photo img {
  position: relative;
  z-index: 1;
  width: 112px;
  height: 112px;
  border: 2px solid var(--gold-elegant);
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  image-rendering: auto;
  object-fit: cover;
}

.professional-copy h2 {
  margin-bottom: 18px;
}

.professional-lead {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
}

.professional-copy > p:not(.section-kicker):not(.professional-lead) {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.professional-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.professional-credentials span {
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
}

.local-section {
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.local-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.local-inner > * {
  min-width: 0;
}

.local-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
}

.local-copy p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.local-map-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration-color: var(--gold-elegant);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.local-map-link:hover,
.local-map-link:focus-visible {
  color: var(--gold-elegant);
  outline: none;
}

.local-service-list {
  display: grid;
  gap: 1px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.local-service-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px;
  background: var(--paper);
}

.local-service-list article > div {
  min-width: 0;
}

.local-service-list span {
  color: var(--gold-elegant);
  font-family: var(--serif);
  font-size: 1rem;
}

.local-service-list h3 {
  margin-bottom: 10px;
  max-width: 100%;
  overflow-wrap: normal;
  font-size: 1.55rem;
  line-height: 1.05;
}

.local-service-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading h2 {
  max-width: 620px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-bright);
  box-shadow: 0 14px 34px rgba(32, 33, 31, 0.04);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.35;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--graphite-950);
  border-radius: 50%;
  background: var(--gold);
  content: "+";
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

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

.faq-list details p {
  margin: -4px 22px 22px;
  color: var(--muted);
  font-size: 0.96rem;
}

.privacy-page {
  background: var(--paper);
}

.privacy-hero {
  padding: clamp(82px, 9vw, 124px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 86px);
  color: var(--paper-bright);
  background:
    linear-gradient(120deg, rgba(197, 181, 42, 0.08), transparent 42%),
    var(--graphite-950);
}

.privacy-hero > div,
.privacy-content {
  width: min(920px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.privacy-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--paper-bright);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.92;
}

.privacy-hero p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 1.1rem;
}

.privacy-hero span {
  color: var(--gold-elegant);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-content {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.privacy-content article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-content article:first-child {
  padding-top: 0;
}

.privacy-content h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 840;
  line-height: 1.35;
}

.privacy-content p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.privacy-content a:not(.button) {
  color: var(--ink);
  font-weight: 780;
  text-decoration-color: var(--gold-elegant);
  text-underline-offset: 4px;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 34px;
}

.privacy-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-bright);
}

.privacy-outline:hover,
.privacy-outline:focus-visible {
  border-color: var(--gold-elegant);
  background: var(--paper-bright);
}

.contact-section {
  padding-top: 0;
  color: var(--paper-bright);
  background: var(--paper);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px);
  border-radius: 14px;
  background:
    linear-gradient(120deg, rgba(197, 181, 42, 0.06), transparent 46%),
    var(--graphite-900);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-bottom: 22px;
  color: var(--paper-bright);
}

.contact-copy > p:last-child {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.03rem;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.button-large {
  min-height: 62px;
  font-size: 1rem;
}

.contact-link {
  justify-content: center;
  min-height: 50px;
  border-bottom: 1px solid var(--line-dark);
}

.contact-address {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper-bright);
  text-align: center;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.contact-address:hover {
  border-color: rgba(190, 154, 90, 0.72);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.contact-address span {
  color: var(--gold-elegant);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-address strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-address small {
  color: var(--muted-dark);
  font-size: 0.82rem;
  font-weight: 680;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  min-height: 88px;
  padding: 14px 15px;
  color: var(--paper-bright);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  text-decoration: none;
}

.contact-card:last-child {
  grid-column: 1 / -1;
  min-height: auto;
}

.contact-card span {
  color: var(--gold-elegant);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.35;
}

.contact-card small {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 680;
}

a.contact-card {
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

a.contact-card:hover,
a.contact-card:focus-visible {
  border-color: rgba(190, 154, 90, 0.72);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  transform: translateY(-2px);
}

.contact-number {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  font-weight: 720;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: var(--muted-dark);
  border-top: 1px solid var(--line-dark);
  background: var(--graphite-950);
}

.footer-brand img {
  width: 168px;
  margin-bottom: 12px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.5;
}

.footer-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  color: var(--gold-elegant);
  font-size: 0.78rem;
  font-weight: 760;
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    min-height: 74px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: rgba(16, 17, 16, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
  }

  .site-nav .nav-action {
    margin-top: 4px;
    margin-left: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.4fr);
  }

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

  .service-card-primary {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .service-icon {
    margin-bottom: 36px;
  }

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

  .process-list li {
    min-height: 250px;
  }

  .process-list span {
    margin-bottom: 46px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(16, 17, 16, 0.82) 0%, rgba(16, 17, 16, 0.94) 70%, var(--graphite-950) 100%),
      url("assets/dental-clinic-hero.png") 68% top / auto 62% no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 58px;
  }

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

  .implant-heading,
  .section-heading,
  .process-header,
  .professional-card,
  .local-inner,
  .faq-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

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

  .implant-feature {
    min-height: auto;
  }

  .implant-feature + .implant-feature {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .professional-photo {
    min-height: 300px;
  }

  .contact-inner {
    padding: 46px 32px;
  }

  .privacy-hero {
    padding-top: 68px;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 68px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand-logo {
    width: 146px;
    max-height: 54px;
  }

  .site-nav {
    top: 72px;
  }

  .hero-inner,
  .assurance-inner,
  .section > * {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    padding-top: 60px;
    padding-bottom: 46px;
  }

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

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 30px;
  }

  .button {
    width: 100%;
  }

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

  .credential-list div + div {
    border-top: 1px solid var(--line-dark);
  }

  .assurance-inner {
    display: grid;
    gap: 0;
    padding: 13px 0;
  }

  .assurance-inner p {
    padding: 6px 0;
  }

  .assurance span {
    display: none;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .implant-heading,
  .section-heading,
  .process-header {
    margin-bottom: 36px;
  }

  .implant-heading h2,
  .section-heading h2,
  .local-copy h2,
  .faq-heading h2,
  .professional-copy h2,
  .contact-copy h2,
  .process-header h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .implant-feature,
  .service-card,
  .local-service-list article,
  .process-list li {
    padding: 26px 22px;
  }

  .implant-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }

  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .service-card-primary {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .process-list li {
    min-height: auto;
  }

  .process-list span {
    margin-bottom: 34px;
  }

  .professional-photo {
    min-height: 250px;
  }

  .professional-photo::before {
    width: 210px;
    height: 210px;
  }

  .professional-photo::after {
    width: 270px;
    height: 270px;
  }

  .professional-photo img {
    width: 104px;
    height: 104px;
  }

  .contact-section {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-inner {
    width: 100%;
    padding: 42px 24px;
    border-radius: 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-card:last-child {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

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

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