:root {
  --black: #070707;
  --black-2: #111111;
  --ink: #15120b;
  --white: #ffffff;
  --paper: #fbfaf6;
  --soft: #f4efe3;
  --muted: #6f675b;
  --line: rgba(183, 139, 54, 0.26);
  --gold: #c89b3c;
  --gold-2: #f1d58b;
  --gold-3: #8b6219;
  --rose: #a64253;
  --shadow: 0 24px 70px rgba(7, 7, 7, 0.16);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(200, 155, 60, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(200, 155, 60, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 88px 88px;
  animation: gridDrift 24s linear infinite;
}

a {
  color: inherit;
}

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

.gold-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.gold-ambient span {
  position: absolute;
  width: 38vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 60, 0.55), transparent);
  transform: rotate(-18deg);
  animation: goldLine 9s ease-in-out infinite;
}

.gold-ambient span:nth-child(1) {
  top: 18%;
  right: -10%;
}

.gold-ambient span:nth-child(2) {
  top: 54%;
  left: -12%;
  animation-delay: 2.6s;
}

.gold-ambient span:nth-child(3) {
  bottom: 14%;
  right: 16%;
  animation-delay: 5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: rgba(7, 7, 7, 0.9);
  border-bottom: 1px solid rgba(200, 155, 60, 0.32);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241, 213, 139, 0.72);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold), var(--gold-3));
  color: var(--black);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 30px rgba(200, 155, 60, 0.24);
}

.brand small {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--black);
  box-shadow: 0 18px 38px rgba(200, 155, 60, 0.27);
}

.btn-secondary {
  background: var(--black);
  border-color: rgba(200, 155, 60, 0.46);
  color: var(--white);
}

.btn-ghost {
  border-color: rgba(241, 213, 139, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  width: 100%;
  min-height: 720px;
  padding: 74px clamp(16px, 4vw, 58px) 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.97fr);
  gap: 52px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.82)),
    linear-gradient(90deg, rgba(200, 155, 60, 0.14), transparent 45%);
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.landing-hero h1 {
  margin: 0;
  font-size: 74px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p,
.landing-hero p,
.section-head p,
.copy-block p,
.content-panel p,
.lead-section p {
  color: var(--muted);
  font-size: 17px;
}

.hero p,
.landing-hero p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.trust-row span,
.mini-metrics span,
.script-chip {
  border: 1px solid rgba(200, 155, 60, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-media {
  --mx: 0px;
  --my: 0px;
  position: relative;
  min-height: 610px;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 0.12s ease-out;
}

.portrait-frame {
  position: relative;
  height: 610px;
  overflow: hidden;
  border: 1px solid rgba(241, 213, 139, 0.5);
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow-dark);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(241, 213, 139, 0.62);
  pointer-events: none;
}

.portrait-frame img,
.landing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame img {
  object-position: 50% 36%;
  animation: portraitFloat 8s ease-in-out infinite;
}

.portrait-glow {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.82), transparent);
}

.media-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 16px;
  border: 1px solid rgba(241, 213, 139, 0.52);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.media-card--top {
  top: 26px;
  bottom: auto;
  right: auto;
  left: 24px;
}

.media-card span,
.media-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.media-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--gold-2);
}

.gold-ribbon {
  position: absolute;
  right: -24px;
  top: 42%;
  display: grid;
  gap: 8px;
}

.gold-ribbon span {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(241, 213, 139, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  animation: chipFloat 4s ease-in-out infinite;
}

.gold-ribbon span:nth-child(2) {
  animation-delay: 0.35s;
}

.gold-ribbon span:nth-child(3) {
  animation-delay: 0.7s;
}

.gold-ribbon span:nth-child(4) {
  animation-delay: 1.05s;
}

.brand-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(200, 155, 60, 0.32);
  background: var(--black);
  color: var(--gold-2);
}

.brand-marquee div {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 24s linear infinite;
}

.brand-marquee span {
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats article,
.service-category,
.strategy-card,
.lead-form,
.contact-card,
.content-panel,
.steps article,
.landing-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(145deg, var(--black), #17120a);
  color: var(--white);
}

.stats article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(241, 213, 139, 0.18), transparent);
  transform: translateX(110%);
  animation: shine 5s ease-in-out infinite;
}

.stats strong {
  display: block;
  font-size: 38px;
  color: var(--gold-2);
}

.stats span {
  color: rgba(255, 255, 255, 0.72);
}

.service-taxonomy {
  position: relative;
}

.service-grid,
.landing-grid,
.steps {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.service-category {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-category::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.service-category:hover,
.landing-card:hover,
.steps article:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 155, 60, 0.62);
  box-shadow: 0 26px 80px rgba(7, 7, 7, 0.18);
}

.service-category__head h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.service-category__head p,
.service-group li,
.service-card p,
.strategy-card p,
.form-head p,
.form-note,
.medical-note {
  color: var(--muted);
}

.service-groups {
  display: grid;
  gap: 12px;
}

.service-group strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-3);
}

.service-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-group li {
  border: 1px solid rgba(200, 155, 60, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--soft);
  font-size: 13px;
}

.service-link {
  align-self: end;
  width: fit-content;
  color: var(--black);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.journey {
  width: 100%;
  max-width: none;
  padding-inline: clamp(16px, 4vw, 58px);
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.journey h2,
.section-head h2,
.content-panel h2,
.lead-section h2,
.two-col h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0;
}

.steps {
  width: min(1180px, 100%);
  margin: 26px auto 0;
  grid-template-columns: repeat(4, 1fr);
  text-align: right;
}

.steps article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(200, 155, 60, 0.3);
}

.steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-weight: 900;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 520px;
}

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

.landing-card {
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  gap: 10px;
  min-height: 430px;
  padding: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.landing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(0.92) contrast(1.04);
}

.landing-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--black);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.landing-card h3 {
  margin: 0;
  font-size: 22px;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
}

.content-engine,
.lead-section,
.landing-hero,
.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.content-panel {
  padding: 28px;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 28px 9px 0;
  color: #2a2419;
}

.check-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 155, 60, 0.12);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  height: 340px;
}

.image-stack img:nth-child(3) {
  grid-column: 1 / -1;
  height: 260px;
  object-position: center 18%;
}

.landing-hero {
  width: 100%;
  max-width: none;
  min-height: 620px;
  padding-inline: clamp(16px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #17120a);
}

.landing-copy {
  padding: 20px 0;
}

.landing-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(241, 213, 139, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.strategy-card,
.lead-form,
.contact-card {
  padding: 22px;
}

.doctor-mini {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--gold);
  margin-bottom: 14px;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-metrics span {
  background: var(--black);
  color: var(--gold-2);
}

.contact-card {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  background: var(--black);
  color: var(--white);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
}

.lead-section {
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(200, 155, 60, 0.34);
  border-color: var(--gold);
}

.lead-form textarea {
  resize: vertical;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 400 !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.form-head span {
  color: var(--gold-3);
  font-size: 12px;
  font-weight: 900;
}

.form-head h3 {
  margin: 0;
  font-size: 28px;
}

.form-status {
  display: none;
  border-radius: 8px;
  padding: 12px;
  background: var(--soft);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fff1f3;
  color: var(--rose);
}

.honeypot {
  display: none !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(16px, 4vw, 44px);
  background: var(--black);
  color: #fff;
  border-top: 1px solid rgba(200, 155, 60, 0.3);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--gold-2);
}

.revealable {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease var(--reveal-delay, 0ms), transform 0.72s ease var(--reveal-delay, 0ms);
}

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

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 88px 88px, -88px 88px; }
}

@keyframes goldLine {
  0%, 100% { opacity: 0.18; transform: translateX(0) rotate(-18deg); }
  50% { opacity: 0.8; transform: translateX(12vw) rotate(-18deg); }
}

@keyframes portraitFloat {
  0%, 100% { transform: scale(1.01) translateY(0); }
  50% { transform: scale(1.045) translateY(-10px); }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@keyframes shine {
  0%, 72% { transform: translateX(110%); }
  100% { transform: translateX(-110%); }
}

@media (max-width: 1100px) {
  .hero,
  .landing-hero,
  .content-engine,
  .lead-section,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1,
  .landing-hero h1 {
    font-size: 56px;
  }

  .service-grid,
  .landing-grid,
  .stats,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header .btn,
  .nav {
    display: none;
  }

  .hero,
  .landing-hero {
    padding-top: 48px;
  }

  .hero h1,
  .landing-hero h1 {
    font-size: 42px;
  }

  .journey h2,
  .section-head h2,
  .content-panel h2,
  .lead-section h2,
  .two-col h2 {
    font-size: 32px;
  }

  .portrait-frame,
  .hero-media {
    min-height: 0;
    height: auto;
  }

  .portrait-frame {
    height: 440px;
  }

  .gold-ribbon {
    right: 10px;
    top: auto;
    bottom: 130px;
  }

  .service-grid,
  .landing-grid,
  .stats,
  .steps,
  .image-stack {
    grid-template-columns: 1fr;
  }

  .section-head,
  .site-footer {
    display: block;
  }

  .image-stack img,
  .image-stack img:nth-child(2),
  .image-stack img:nth-child(3) {
    height: 300px;
  }
}

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

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