:root {
  --ink: #f8f1df;
  --text: #171717;
  --muted: #a99f86;
  --line: rgba(212, 175, 55, 0.28);
  --paper: #111111;
  --white: #ffffff;
  --black: #050505;
  --black-soft: #161616;
  --gold: #d4af37;
  --gold-light: #f5d77a;
  --gold-deep: #9c7621;
  --cream: #fff8e7;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--paper);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.86);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

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

.site-nav a {
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--black);
  background: var(--gold-light);
}

.site-nav .nav-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 8px;
  background: var(--black);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 70px;
}

.hero-logo {
  width: min(310px, 100%);
  margin-bottom: 18px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
}

.hero-logo img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content h1 {
  max-width: 700px;
  margin: 8px 0 12px;
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.button.secondary {
  color: var(--cream);
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: rgba(5, 5, 5, 0.8);
}

.button.whatsapp-link {
  gap: 8px;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.quick-info {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -44px auto 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: #0a0a0a;
  box-shadow: var(--shadow);
}

.quick-info article {
  padding: 18px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.22);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.quick-info span,
p {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.feature-band,
.contact-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 58px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: start;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(1.75rem, 3.4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--cream);
}

h3 {
  margin: 0 0 8px;
  color: var(--cream);
  font-size: 1.15rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.clinicians {
  padding-top: 0;
}

.clinician-list {
  display: grid;
  gap: 14px;
}

.clinician-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(245, 215, 122, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(245, 215, 122, 0.14), transparent 34%),
    linear-gradient(135deg, #1a1a1a, #090909);
  box-shadow: var(--shadow);
}

.clinician-avatar {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(245, 215, 122, 0.55);
  border-radius: 8px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 2rem;
  font-weight: 800;
}

.clinician-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.clinician-card p:last-child {
  max-width: 780px;
  margin: 0;
}

.clinician-card p + p {
  margin-top: 10px;
}

.treatment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.treatment-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #191919, #0c0c0c);
}

.featured-treatment {
  border-color: rgba(245, 215, 122, 0.72);
  background:
    radial-gradient(circle at top right, rgba(245, 215, 122, 0.18), transparent 38%),
    linear-gradient(180deg, #211b0c, #0c0c0c);
}

.treatment-image {
  position: relative;
  display: block;
  width: 92px;
  height: 88px;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: #060606;
}

.treatment-image img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nhs-service-logo {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 62px;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.treatment-item h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.treatment-item h3 a {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(245, 215, 122, 0.38);
  text-underline-offset: 3px;
}

.treatment-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
}

.fees {
  padding-top: 0;
}

.family-benefit {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 215, 122, 0.45);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(245, 215, 122, 0.16), transparent 36%),
    #111111;
}

.family-benefit strong {
  color: var(--gold-light);
  font-size: 1.15rem;
}

.family-benefit span {
  color: rgba(255, 255, 255, 0.76);
}

.price-tabs {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--shadow);
}

.tab-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  background: #070707;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--cream);
  background: #151515;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}

.tab-button.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.tab-panel {
  display: none;
  padding: 16px;
}

.tab-panel.is-active {
  display: block;
}

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

.plan-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, #191919, #0f0f0f);
}

.featured-plan {
  border-color: rgba(245, 215, 122, 0.7);
}

.plan-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--black);
  background: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-card h3 {
  margin: 10px 0;
}

.plan-card strong {
  display: block;
  color: var(--gold-light);
  font-size: 2rem;
}

.plan-card strong span {
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.35;
}

.plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-light);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  font-size: 0.95rem;
}

.fee-table th,
.fee-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  text-align: left;
}

.fee-table th {
  color: var(--gold-light);
  background: #141414;
}

.fee-table td {
  color: rgba(255, 255, 255, 0.8);
}

.fee-table td:nth-child(2),
.fee-table td:nth-child(3),
.fee-table th:nth-child(2),
.fee-table th:nth-child(3) {
  white-space: nowrap;
}

.fee-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.why-fees {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.why-fees span {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.76);
  background: #111111;
  font-size: 0.88rem;
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 32%),
    linear-gradient(135deg, #1d1d1d, #050505);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.team-panel {
  display: grid;
  gap: 10px;
}

.team-panel div {
  padding: 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

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

.team-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.visit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 16px;
}

.map-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: #0b0b0b;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) contrast(1.05) brightness(0.72);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1)),
    linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(83, 62, 14, 0.28));
  pointer-events: none;
}

.map-card-content {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.map-card p,
.map-card strong,
.map-card span,
.map-card a {
  color: var(--white);
}

.map-card p {
  margin: 0 0 8px;
  font-weight: 800;
}

.map-card strong {
  font-size: 1.7rem;
}

.map-link,
.inline-map-link,
.visit-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 0 12px;
  font-weight: 800;
}

.visit-actions .whatsapp-link {
  gap: 8px;
  color: #ffffff;
  background: #25d366;
}

.whatsapp-link::before,
.whatsapp-text-link::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-color: currentColor;
  mask:
    radial-gradient(circle at 50% 50%, #000 0 58%, transparent 59%) center / 100% 100% no-repeat,
    linear-gradient(135deg, transparent 0 62%, #000 63% 74%, transparent 75%) 8px 10px / 12px 12px no-repeat;
}

.whatsapp-link::after,
.whatsapp-text-link::after {
  content: "";
}

.whatsapp-link {
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
}

.whatsapp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #25d366 !important;
}

.map-link {
  margin-top: 14px;
}

.visit-list {
  display: grid;
  gap: 12px;
}

.visit-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.inline-map-link {
  margin-top: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent 34%),
    #060606;
}

.contact-section p,
.contact-section a {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.contact-list div {
  display: grid;
  gap: 4px;
}

.contact-list dt {
  color: rgba(245, 215, 122, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: #111111;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--cream);
  background: #050505;
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(212, 175, 55, 0.18);
  border-color: var(--gold);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 30px;
  color: var(--muted);
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    background: #070707;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-top: 62px;
  }

  .hero-logo {
    width: min(270px, 100%);
    margin-bottom: 14px;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .quick-info,
  .intro,
  .clinician-card,
  .treatment-list,
  .plan-grid,
  .feature-band,
  .visit-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: -38px;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 44px 0;
  }

  .intro,
  .clinician-card,
  .feature-band,
  .contact-section {
    gap: 28px;
  }

  .clinician-avatar {
    width: 96px;
    height: 96px;
  }

  .feature-band,
  .contact-section {
    padding: 28px;
  }

  .price-tabs {
    margin-right: -6px;
    margin-left: -6px;
  }

  .tab-panel {
    padding: 12px;
  }

  .fee-table {
    font-size: 0.86rem;
  }

  .fee-table th,
  .fee-table td {
    padding: 10px 8px;
  }

  .map-card {
    min-height: 240px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 130px;
    height: 46px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-info,
  .section,
  .feature-band,
  .contact-section,
  .site-footer {
    width: calc(100% - 28px);
  }
}
