:root {
  --rose: #c77b93;
  --rose-deep: #9f5169;
  --ink: #1f1c1d;
  --muted: #6f6466;
  --paper: #fffaf6;
  --porcelain: #f5eee9;
  --teal: #166678;
  --teal-soft: #dbeef0;
  --mint: #c9e6df;
  --gold: #d8b46a;
  --line: rgba(31, 28, 29, 0.13);
  --shadow: 0 24px 70px rgba(62, 38, 46, 0.16);
  --shadow-strong: 0 34px 90px rgba(31, 28, 29, 0.2);
  --radius: 8px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 246, 0.94) 42%, rgba(219, 238, 240, 0.42)), var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at top left, rgba(199, 123, 147, 0.12), transparent 26%),
    radial-gradient(circle at 85% 14%, rgba(22, 102, 120, 0.09), transparent 24%);
  z-index: -1;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem clamp(1rem, 3vw, 3.25rem);
  background: rgba(255, 250, 246, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 246, 0.93);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(31, 28, 29, 0.07);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
  max-width: 350px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
}

.brand strong,
.brand small {
  display: block;
  white-space: normal;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.15;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.45rem);
  font-size: 0.86rem;
  color: var(--muted);
}

.nav a,
.text-link {
  text-decoration: none;
  background-image: linear-gradient(var(--rose), var(--rose));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: color 180ms ease, background-size 180ms ease;
}

.nav a:hover,
.text-link:hover {
  color: var(--ink);
  background-size: 100% 2px;
}

.header-cta,
.button,
.floating-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0.62rem 0.95rem;
  background: var(--ink);
  color: white;
}

.button {
  padding: 0.82rem 1.05rem;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--rose-deep), #7f334d);
  border-color: rgba(159, 81, 105, 0.5);
  color: white;
  box-shadow: 0 14px 28px rgba(159, 81, 105, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.header-cta:hover,
.button:hover,
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 28, 29, 0.14);
}

.hero {
  position: relative;
  min-height: min(78svh, 700px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(1.8rem, 3vw, 3rem) clamp(1rem, 4vw, 3.25rem) clamp(1.6rem, 3vw, 2.4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto;
  border: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 4vw, 3.25rem);
  right: clamp(1rem, 4vw, 3.25rem);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 10, 0.82) 0%, rgba(12, 10, 10, 0.64) 34%, rgba(12, 10, 10, 0.36) 58%, rgba(12, 10, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  align-self: start;
  padding-top: clamp(1.55rem, 3.5vw, 2.9rem);
}

.hero-panel {
  align-self: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 670px;
  margin-bottom: 0.8rem;
  font-size: 4.6rem;
}

h2 {
  max-width: 620px;
  font-size: 2.95rem;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-content .eyebrow,
.hero-content h1 {
  color: white;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.35rem;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(17, 15, 16, 0.68);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: clamp(0.9rem, 1.8vw, 1.1rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-portrait-wrap {
  position: relative;
  margin-bottom: 0.8rem;
}

.hero-portrait {
  width: 100%;
  aspect-ratio: 0.74 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.25);
}

.panel-grid {
  display: grid;
  gap: 0.75rem;
}

.panel-grid div {
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.06);
}

.panel-grid strong,
.panel-grid span {
  display: block;
}

.panel-grid span {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.trust-strip,
.section,
.showcase-section,
.problems-section,
.about-band,
.contact-section {
  padding-left: clamp(1rem, 4vw, 3.25rem);
  padding-right: clamp(1rem, 4vw, 3.25rem);
}

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

.strip-item {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 250, 246, 0.9);
}

.strip-item span,
.card-number,
.timeline-step span {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.strip-item strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 0.94rem;
}

.strip-item p,
.service-card p,
.timeline-step p,
.problem-list p,
.about-copy p,
.contact-main p,
.schedule-card p,
.intro-copy p {
  color: var(--muted);
}

.section {
  padding-top: clamp(3.2rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.2rem, 5vw, 4.8rem);
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.gallery-copy p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 0.96rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 42px rgba(31, 28, 29, 0.06);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  display: block;
}

.intro-section,
.about-band,
.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.2rem, 3vw, 2.75rem);
}

.intro-copy {
  align-self: end;
  max-width: 600px;
  font-size: 0.96rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.service-card,
.timeline-step,
.credential-card,
.schedule-card,
.case-card,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(31, 28, 29, 0.06);
}

.service-card {
  min-height: 190px;
  padding: 0.92rem;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-top: auto;
}

.service-card.featured {
  grid-column: span 2;
  background: var(--ink);
  color: white;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: center;
  padding-top: clamp(3.4rem, 5vw, 5rem);
  padding-bottom: clamp(3.4rem, 5vw, 5rem);
  overflow: hidden;
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(199, 123, 147, 0.16) 58% 59%, transparent 59%),
    linear-gradient(90deg, rgba(31, 28, 29, 0.04), transparent 34%, rgba(22, 102, 120, 0.05));
}

.implant-showcase {
  background: #f8fbfa;
}

.smile-showcase {
  grid-template-columns: minmax(360px, 1.18fr) minmax(0, 0.82fr);
  background: #fff5f1;
}

.showcase-copy,
.case-card {
  position: relative;
}

.showcase-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.feature-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(31, 28, 29, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 28, 29, 0.05);
}

.case-card {
  padding: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-strong);
}

.case-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.15rem 0.15rem 0.75rem;
}

.case-header span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-header strong {
  text-align: right;
  font-size: 0.92rem;
}

.compare-slider {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(31, 28, 29, 0.08);
  background: white;
  aspect-ratio: 16 / 9;
  user-select: none;
  isolation: isolate;
}

.compare-base,
.compare-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-base {
  position: absolute;
  inset: 0;
  object-position: center center;
}

.compare-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.compare-overlay img {
  object-position: center center;
}

.compare-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(31, 28, 29, 0.14));
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  pointer-events: none;
  z-index: 3;
}

.compare-divider::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 1px rgba(31, 28, 29, 0.08);
}

.compare-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(31, 28, 29, 0.78);
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(31, 28, 29, 0.22);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.compare-divider span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-divider span::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-label {
  position: absolute;
  bottom: 0.75rem;
  z-index: 4;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 28, 29, 0.78);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.compare-label-before {
  left: 0.75rem;
}

.compare-label-after {
  right: 0.75rem;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.case-single {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(31, 28, 29, 0.08);
}

.case-single img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  display: block;
}

.case-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.carousel-shell {
  min-width: 0;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 30%);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 0.35rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  scroll-snap-align: start;
}

.update-track {
  grid-auto-columns: minmax(230px, 38%);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.carousel-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.carousel-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 28, 29, 0.12);
}

.results-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(245, 238, 233, 0.72));
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(31, 28, 29, 0.06);
}

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

.result-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  display: block;
}

.result-card-wide img {
  aspect-ratio: 1.82 / 1;
}

.result-copy {
  padding: 0.95rem 1rem 1rem;
}

.result-copy strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
}

.result-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.update-section {
  background: linear-gradient(180deg, rgba(219, 238, 240, 0.3), rgba(255, 250, 246, 0.72));
}

.update-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1.5rem;
}

.update-copy {
  padding-right: 0.5rem;
}

.update-copy p {
  color: var(--muted);
  font-size: 0.96rem;
}

.update-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 42px rgba(31, 28, 29, 0.06);
}

.update-card img {
  width: 100%;
  display: block;
  aspect-ratio: 0.82 / 1;
  object-fit: cover;
}

.problems-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: start;
  padding-top: clamp(3.2rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.2rem, 5vw, 4.8rem);
  background: var(--porcelain);
}

.problems-visual {
  position: sticky;
  top: 6rem;
}

.problems-visual img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.problem-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.problem-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.problem-list strong {
  font-size: 1.02rem;
}

.problem-list p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.timeline-step {
  min-height: 190px;
  padding: 1rem;
}

.timeline-step h3 {
  margin-top: 2rem;
}

.about-band {
  padding-top: clamp(3.4rem, 5vw, 5rem);
  padding-bottom: clamp(3.4rem, 5vw, 5rem);
  background: var(--ink);
  color: white;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.credential-card {
  align-self: end;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  background: var(--rose);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.credential-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.08;
}

.credential-card span {
  display: block;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  padding-top: clamp(3.4rem, 5vw, 5rem);
  padding-bottom: clamp(3.4rem, 5vw, 5rem);
}

.contact-main h2 {
  margin-bottom: 1rem;
}

.schedule-card {
  padding: clamp(1rem, 2vw, 1.3rem);
}

.schedule-card h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 500;
}

.schedule-card dl {
  margin: 1.25rem 0;
}

.schedule-card div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.schedule-card dt {
  font-weight: 800;
}

.schedule-card dd {
  margin: 0;
  color: var(--muted);
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(380px, 1.12fr);
  gap: 1rem;
  padding: 0.85rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 102, 120, 0.1), rgba(199, 123, 147, 0.1)),
    rgba(255, 255, 255, 0.72);
}

.map-panel iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  filter: saturate(0.85) contrast(1.05);
}

.widget-panel {
  min-height: 520px;
  padding: 1rem 1rem 1.2rem;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 28, 29, 0.08);
  box-shadow: 0 12px 28px rgba(31, 28, 29, 0.06);
}

#cd-widget {
  min-height: 460px;
}

.site-footer {
  padding: clamp(2.4rem, 4vw, 3.6rem) clamp(1rem, 4vw, 3.25rem) calc(1.4rem + env(safe-area-inset-bottom));
  background:
    linear-gradient(135deg, rgba(31, 28, 29, 0.98), rgba(60, 32, 43, 0.96) 52%, rgba(22, 102, 120, 0.88)),
    var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.6fr));
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand h2 {
  margin-bottom: 0.7rem;
  max-width: 440px;
  color: white;
  font-size: 2.25rem;
}

.footer-brand p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
}

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

.footer-column strong {
  color: white;
  font-size: 0.92rem;
}

.footer-column span,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  padding: 0.85rem 1rem;
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 32px rgba(22, 102, 120, 0.27);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal .eyebrow,
.reveal h1,
.reveal h2,
.reveal h3,
.reveal strong,
.reveal p,
.reveal a,
.reveal img,
.reveal iframe,
.reveal .carousel-shell,
.reveal .panel-grid div,
.reveal .feature-list span,
.reveal .problem-list article,
.reveal .intro-points article,
.reveal .widget-panel {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal img,
.reveal iframe,
.reveal .widget-panel {
  transform: translateY(18px) scale(0.97);
}

.reveal.is-visible .eyebrow,
.reveal.is-visible h1,
.reveal.is-visible h2,
.reveal.is-visible h3,
.reveal.is-visible strong,
.reveal.is-visible p,
.reveal.is-visible a,
.reveal.is-visible img,
.reveal.is-visible iframe,
.reveal.is-visible .carousel-shell,
.reveal.is-visible .panel-grid div,
.reveal.is-visible .feature-list span,
.reveal.is-visible .problem-list article,
.reveal.is-visible .intro-points article,
.reveal.is-visible .widget-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.is-visible .eyebrow { transition-delay: 60ms; }
.reveal.is-visible h1,
.reveal.is-visible h2 { transition-delay: 120ms; }
.reveal.is-visible .hero-copy,
.reveal.is-visible .showcase-copy p,
.reveal.is-visible .intro-copy p:first-of-type,
.reveal.is-visible .contact-main p { transition-delay: 180ms; }
.reveal.is-visible .hero-actions,
.reveal.is-visible .contact-actions,
.reveal.is-visible .feature-list,
.reveal.is-visible .intro-points { transition-delay: 240ms; }
.reveal.is-visible img,
.reveal.is-visible iframe,
.reveal.is-visible .widget-panel { transition-delay: 160ms; }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro-section,
  .gallery-section,
  .showcase-section,
  .problems-section,
  .about-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-content,
  .hero-panel {
    align-self: auto;
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-panel {
    max-width: 440px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card-wide {
    grid-column: auto;
  }

  .update-layout {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: minmax(230px, 62%);
  }

  .smile-showcase {
    grid-template-columns: 1fr;
  }

  .smile-showcase .case-card {
    order: 2;
  }

  .map-panel {
    grid-template-columns: 1fr;
  }

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

  .problems-visual {
    position: relative;
    top: auto;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.62rem 0.72rem;
  }

  .brand {
    align-items: center;
    gap: 0.5rem;
    max-width: none;
    width: 100%;
  }

  .brand img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .brand span {
    display: block;
    min-width: 0;
  }

  .brand strong {
    font-size: 0.8rem;
    line-height: 1.04;
  }

  .brand small {
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 0.85rem;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .credential-card strong {
    font-size: 1.42rem;
  }

  .hero {
    padding-top: 2rem;
    padding-bottom: 1.35rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 10, 10, 0.72), rgba(12, 10, 10, 0.76)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38));
  }

  .section,
  .showcase-section,
  .problems-section,
  .about-band,
  .contact-section {
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-portrait {
    aspect-ratio: 0.92 / 1;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .problem-list article,
  .schedule-card div,
  .before-after,
  .case-header {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .case-header {
    display: grid;
  }

  .case-header strong {
    text-align: left;
  }

  .map-panel iframe {
    min-height: 320px;
  }

  .widget-panel {
    min-height: auto;
  }

  #cd-widget {
    min-height: 380px;
  }

  .carousel-track {
    grid-auto-columns: 86%;
  }

  .gallery-card img,
  .update-card img,
  .result-card img,
  .result-card-wide img,
  .case-single img {
    aspect-ratio: 1.05 / 1;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    gap: 0.45rem;
  }

  .footer-brand h2 {
    font-size: 1.72rem;
  }

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

@media (max-width: 380px) {
  .site-header {
    padding-inline: 0.58rem;
  }

  .brand {
    gap: 0.42rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand strong {
    font-size: 0.72rem;
  }

  .brand small {
    font-size: 0.56rem;
  }

  .header-cta {
    min-height: 36px;
    padding-inline: 0.62rem;
    font-size: 0.78rem;
  }
}
