/* Dr H N Roy Mental Clinic - static, mobile-first, SEO-friendly design */
:root {
  --ink: #142126;
  --muted: #5b6970;
  --line: #dce7e2;
  --bg: #f6f9f7;
  --soft: #eaf5ef;
  --soft-2: #fff8ef;
  --brand: #0f6f63;
  --brand-dark: #083d38;
  --accent: #b85b2b;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 34, 38, 0.12);
  --shadow-soft: 0 10px 28px rgba(10, 34, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(234, 245, 239, 0.65), rgba(246, 249, 247, 0) 420px),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

picture {
  display: block;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.86);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink);
}

.skip-link:focus {
  left: 8px;
}

.topbar {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar__inner,
.header__inner,
.section,
.footer__inner,
.hero__inner {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 231, 226, 0.9);
  box-shadow: 0 8px 24px rgba(10, 34, 38, 0.05);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.25;
}

.menu-toggle {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.15rem;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  padding: 10px 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav.is-open {
  display: grid;
  z-index: 60;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(8, 61, 56, 0.24);
}

.nav-backdrop.is-visible {
  display: block;
}

.nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.nav__install {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(15, 111, 99, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf5ef, #ffffff);
  color: var(--brand-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 34, 38, 0.08);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav__install:hover {
  border-color: rgba(15, 111, 99, 0.46);
  background: linear-gradient(135deg, #dff1e8, #ffffff);
  box-shadow: 0 12px 28px rgba(10, 34, 38, 0.12);
  transform: translateY(-1px);
}

.nav__install:active {
  box-shadow: 0 8px 18px rgba(10, 34, 38, 0.08);
  transform: translateY(0);
}

.nav__install-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(15, 111, 99, 0.12);
  color: var(--brand);
}

.nav__install-icon svg {
  width: 18px;
  height: 18px;
}

.nav__install[hidden] {
  display: none !important;
}

.nav a:last-of-type {
  border-bottom: 0;
}

.app-install-help {
  position: fixed;
  inset: auto 16px 86px 16px;
  z-index: 80;
  max-width: 520px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(220, 231, 226, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.app-install-help h2 {
  font-size: 1.05rem;
}

.app-install-help p {
  margin: 0 0 14px;
  color: var(--muted);
}

.app-install-help__actions {
  display: flex;
  justify-content: flex-end;
}

.app-install-help__actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.16), transparent 32rem),
    linear-gradient(135deg, #edf8f1 0%, #ffffff 48%, #f5fbff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36px -10%;
  height: 90px;
  background: var(--bg);
  transform: skewY(-2deg);
  transform-origin: left;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding: 34px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 10vw, 4.25rem);
}

h2 {
  font-size: clamp(1.55rem, 6vw, 2.45rem);
}

h3 {
  font-size: 1.16rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.hero__image {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero__image::after {
  content: "Actual clinic photo";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 61, 56, 0.86);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 111, 99, 0.18);
}

.button:hover {
  color: var(--white);
  background: var(--brand-dark);
}

.button--light {
  background: var(--white);
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
}

.button--light:hover {
  color: var(--white);
}

.button--accent {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(184, 91, 43, 0.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.hero .trust-strip {
  margin-top: 0;
}

.trust-strip div,
.card,
.doctor,
.notice,
.faq-item,
.review {
  border: 1px solid rgba(220, 231, 226, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  padding: 14px;
}

.trust-strip--wide {
  margin-top: 0;
}

.trust-strip strong {
  display: block;
  color: var(--brand-dark);
  font-size: 1.28rem;
  line-height: 1.1;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 48px 0;
}

.section--white {
  background: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1140px) / 2));
  padding-right: max(16px, calc((100% - 1140px) / 2));
}

.section__header {
  max-width: 790px;
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid + p,
.journey-steps + p {
  margin-top: 24px;
}

.grid--two,
.grid--three {
  grid-template-columns: 1fr;
}

.card,
.doctor,
.faq-item,
.review,
.notice {
  padding: 22px;
}

.card h3,
.doctor h3,
.notice h3 {
  color: var(--brand-dark);
}

.card a,
.notice a,
.faq-item a {
  font-weight: 800;
}

.card ul,
.notice ul {
  padding-left: 20px;
  margin: 10px 0 0;
}

.card li,
.notice li {
  margin-bottom: 6px;
}

.content-flow {
  display: grid;
  gap: 18px;
}

.content-flow h2 {
  margin-top: 8px;
}

.content-flow h3 {
  color: var(--brand-dark);
  margin-top: 4px;
}

.info-panel {
  padding: 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: var(--soft-2);
  box-shadow: var(--shadow-soft);
}

.review-note,
.safety-note {
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}

.google-review-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(220, 231, 226, 0.95);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: var(--shadow-soft);
}

.google-review-score {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft-2);
  border: 1px solid rgba(217, 164, 65, 0.35);
}

.google-review-score__label {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.google-review-score strong {
  color: var(--brand-dark);
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  line-height: 1.05;
}

.google-review-score span:last-child {
  color: var(--muted);
}

.google-review-quotes {
  display: grid;
  gap: 14px;
}

.google-review-quote {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(220, 231, 226, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.google-review-quote blockquote {
  margin: 0;
  color: var(--ink);
}

.google-review-quote cite {
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.toc-list {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.byline {
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-answer {
  padding: 22px;
  border: 1px solid rgba(217, 164, 65, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8ef, #ffffff);
  box-shadow: var(--shadow-soft);
}

.quick-answer h2 {
  font-size: 1.25rem;
}

.journey-steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.journey-steps article {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(220, 231, 226, 0.95);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.journey-steps span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 800;
}

.journey-steps h3 {
  color: var(--brand-dark);
}

.facts-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facts-list li {
  display: grid;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.facts-list strong {
  color: var(--brand-dark);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.doctor .profile-photo {
  max-width: 180px;
  margin-bottom: 12px;
}

.clinic-image-frame,
.founder-photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eefafa, #ffffff);
  box-shadow: 0 14px 35px rgba(0, 80, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-photo-frame {
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f7fbfb, #e9f7f7);
  box-shadow: 0 16px 40px rgba(0, 55, 70, 0.15);
}

.clinic-image-frame img,
.founder-photo-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 0;
  border-radius: 20px;
  background: transparent;
}

.founder-photo-frame img {
  border-radius: 24px;
}

.doctor .clinic-image-frame,
.doctor .founder-photo-frame {
  max-width: 190px;
  margin: 0 0 12px;
  padding: 10px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 80, 90, 0.1);
}

.doctor .clinic-image-frame img,
.doctor .founder-photo-frame img {
  border-radius: 16px;
}

.image-card--portrait .clinic-image-frame,
.image-card--portrait .founder-photo-frame {
  max-width: 260px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 24px;
}

.image-card--portrait .clinic-image-frame img,
.image-card--portrait .founder-photo-frame img {
  border-radius: 18px;
}

.image-card {
  overflow: hidden;
}

.image-card.image-card--portrait {
  overflow: visible;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.image-card--portrait .clinic-image-frame img,
.image-card--portrait .founder-photo-frame img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  background: transparent;
}

.image-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.local-language {
  background: linear-gradient(135deg, #ffffff, #fff8ef);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-frame__link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.analytics-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 78px;
  z-index: 70;
  display: grid;
  gap: 12px;
  max-width: 720px;
  padding: 14px;
  border: 1px solid rgba(220, 231, 226, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.analytics-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.analytics-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.analytics-notice__actions a,
.analytics-notice__actions button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 800;
}

.analytics-notice__actions button {
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.print-checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.print-checklist li {
  position: relative;
  padding: 14px 14px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.print-checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--brand);
  border-radius: 4px;
  background: var(--white);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.footer address {
  margin-bottom: 16px;
  font-style: normal;
}

.footer__copyright {
  color: #b9cfca;
  font-size: 0.9rem;
}

.appointment-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 800;
  color: var(--brand-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

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

.form-error {
  display: none;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff0f0;
  color: #8d1d1d;
  font-weight: 700;
}

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

.meta-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.meta-list li {
  padding-left: 20px;
  position: relative;
}

.meta-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.72em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 111, 99, 0.13), rgba(255, 248, 239, 0.86)),
    var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.58);
}

.page-hero .section {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
}

.page-hero__photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.page-hero__photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero__photo.clinic-image-frame,
.page-hero__photo.founder-photo-frame {
  border: 0;
  box-shadow: 0 16px 40px rgba(0, 55, 70, 0.14);
}

.page-hero__photo.clinic-image-frame img,
.page-hero__photo.founder-photo-frame img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--muted);
}

.cta-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1140px) / 2));
  padding-right: max(16px, calc((100% - 1140px) / 2));
  background:
    linear-gradient(135deg, rgba(8, 61, 56, 0.96), rgba(15, 111, 99, 0.94)),
    var(--brand-dark);
  color: var(--white);
}

.cta-band .section__header {
  margin-bottom: 0;
}

.cta-band h2,
.cta-band p,
.cta-band a {
  color: var(--white);
}

.cta-band .button--light {
  color: var(--brand-dark);
}

.footer {
  padding: 42px 0 86px;
  color: #d9e8e5;
  background: #082622;
}

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

.footer__inner {
  display: grid;
  gap: 24px;
}

.footer h2,
.footer h3 {
  color: var(--white);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 8px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin: 14px 0 16px;
  font-size: 0.94rem;
}

.footer__social strong {
  color: var(--white);
  flex-basis: 100%;
}

.footer__social a {
  text-decoration-thickness: 1px;
}

.official-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.official-links a {
  font-weight: 800;
}

.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 26px rgba(23, 33, 43, 0.14);
  backdrop-filter: blur(10px);
}

.sticky-actions a {
  min-height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.sticky-actions a:last-child {
  border-right: 0;
}

.icon {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .clinic-image-frame,
  .founder-photo-frame {
    max-width: 320px;
    padding: 12px;
    border-radius: 24px;
  }

  .clinic-image-frame img,
  .founder-photo-frame img {
    border-radius: 18px;
  }

  .doctor .clinic-image-frame,
  .doctor .founder-photo-frame {
    max-width: 180px;
  }
}

@media (min-width: 680px) {
  .grid--two {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .google-review-panel {
    grid-template-columns: 280px 1fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .journey-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-backdrop {
    display: none !important;
  }

  .nav a {
    min-height: auto;
    padding: 9px 12px;
    border: 0;
    border-radius: 999px;
    font-size: 0.94rem;
  }

  .nav__install {
    width: auto;
    min-height: auto;
    margin-top: 0;
    padding: 7px 12px 7px 9px;
    border-radius: 999px;
    font-size: 0.94rem;
    box-shadow: none;
  }

  .nav__install-icon {
    width: 24px;
    height: 24px;
  }

  .nav a:hover {
    background: var(--soft);
    color: var(--brand-dark);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    min-height: 650px;
    padding: 48px 0 76px;
  }

  .hero__image img {
    aspect-ratio: 16 / 11;
  }

  .hero .trust-strip {
    grid-column: 1 / -1;
  }

  .actions {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
  }

  .card,
  .doctor,
  .faq-item,
  .review,
  .notice {
    min-height: 100%;
  }

  .footer {
    padding-bottom: 42px;
  }

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

  .page-hero .section {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .sticky-actions {
    display: none;
  }

  .analytics-notice {
    right: auto;
    bottom: 18px;
  }
}

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

@media print {
  .topbar,
  .site-header,
  .nav-backdrop,
  .cta-band,
  .footer,
  .sticky-actions,
  .analytics-notice,
  .button,
  .page-hero__photo {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .section,
  .section--white,
  .page-hero .section {
    width: 100%;
    max-width: none;
    padding: 16px 0;
  }

  .page-hero {
    background: #ffffff;
    border-bottom: 1px solid #000000;
  }

  .card,
  .notice,
  .print-checklist li {
    border-color: #000000;
    box-shadow: none;
  }
}
