:root {
  --navy: #163e4a;
  --navy-dark: #0c2d36;
  --teal: #2a7c77;
  --teal-dark: #1d625e;
  --seafoam: #dbece7;
  --seafoam-light: #eef6f3;
  --cream: #fbf8f1;
  --terracotta: #b96c4d;
  --terracotta-dark: #98533b;
  --gold: #d3a66f;
  --white: #ffffff;
  --ink: #24383f;
  --muted: #66777c;
  --line: #dbe5e1;
  --shadow-sm: 0 10px 28px rgba(22, 62, 74, .08);
  --shadow-md: 0 24px 58px rgba(22, 62, 74, .14);
  --shadow-lg: 0 36px 90px rgba(12, 45, 54, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--teal-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 830px);
  margin-inline: auto;
}

.section { padding: 86px 0; }
.section-sm { padding: 58px 0; }
.bg-white { background: var(--white); }
.bg-seafoam { background: var(--seafoam-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

h1, h2, h3, h4 {
  margin: 0 0 .55em;
  color: var(--navy);
  line-height: 1.12;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.024em;
}

h1 { font-size: clamp(2.8rem, 5.8vw, 5.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }

.bg-navy h1,
.bg-navy h2,
.bg-navy h3 { color: var(--white); }

p { margin: 0 0 1.1em; }

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.27rem);
}

.bg-navy p,
.bg-navy .lead { color: #d3e2df; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.small {
  color: var(--muted);
  font-size: .88rem;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

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

/* Header */
.topbar {
  color: #e6f1ef;
  background: var(--navy-dark);
  font-size: .86rem;
}

.topbar .container {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.topbar strong { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, .94);
  border-bottom: 1px solid rgba(219, 229, 225, .9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 260px;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.logo-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--seafoam);
  border: 1px solid #c6ddd7;
}

.logo-mark::before,
.logo-mark::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--teal);
}

.logo-mark::before {
  width: 9px;
  height: 28px;
  left: 19px;
  top: 9px;
  transform: rotate(38deg);
}

.logo-mark::after {
  width: 25px;
  height: 9px;
  left: 11px;
  top: 21px;
  transform: rotate(38deg);
}

.brand-copy { line-height: 1.1; }
.brand-copy strong { display: block; font-size: 1.03rem; }

.brand-copy span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.main-nav a {
  padding: 10px 11px;
  color: var(--ink);
  border-radius: 9px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: var(--white);
}

.main-nav .nav-cta {
  margin-left: 7px;
  padding-inline: 17px;
  color: var(--white);
  background: var(--terracotta);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--terracotta-dark);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  border-radius: 3px;
}

.menu-button span::before { transform: translateY(-6px); }
.menu-button span::after { transform: translateY(4px); }

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(185, 108, 77, .22);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--terracotta-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-teal {
  color: var(--white);
  background: var(--teal);
}

.btn-teal:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12,45,54,.92) 0%, rgba(12,45,54,.80) 37%, rgba(12,45,54,.18) 70%, rgba(12,45,54,.06) 100%),
    linear-gradient(0deg, rgba(12,45,54,.15), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  padding: 70px 0;
}

.hero-copy h1 {
  max-width: 630px;
  color: var(--white);
}

.hero-copy .lead {
  margin: 22px 0 28px;
  color: #e4efed;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0;
  margin: 26px 0 0;
  color: #d9e7e4;
  list-style: none;
  font-size: .92rem;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  content: "✓";
  color: var(--navy);
  background: var(--seafoam);
  border-radius: 50%;
  font-size: .7rem;
}

.hero-card {
  position: absolute;
  right: max(30px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  z-index: 2;
  max-width: 310px;
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-card strong {
  display: block;
  color: var(--navy);
}

.hero-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
}

/* Televisit strip */
.televisit-strip {
  color: var(--white);
  background: var(--terracotta);
}

.televisit-strip .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.televisit-strip a {
  color: var(--white);
  font-weight: 800;
}

/* Quick links */
.quick-links {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.quick-card {
  min-height: 145px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 27px 24px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background .2s ease;
}

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

.quick-card:hover {
  color: var(--ink);
  background: var(--seafoam-light);
}

.quick-icon,
.icon-circle {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-dark);
  background: var(--seafoam);
  border-radius: 50%;
  font-size: 1.18rem;
  font-weight: 900;
}

.quick-card strong {
  display: block;
  color: var(--navy);
  line-height: 1.25;
}

.quick-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .84rem;
}

/* Shared content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 82px);
  align-items: center;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-pad { padding: 28px; }

.photo-frame {
  position: relative;
}

.photo-frame img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.photo-note {
  position: absolute;
  right: -20px;
  bottom: 24px;
  max-width: 245px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.photo-note strong { display: block; }
.photo-note span {
  display: block;
  margin-top: 4px;
  color: #c9ddda;
  font-size: .84rem;
}

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

.check-list li {
  position: relative;
  padding-left: 33px;
  margin: 12px 0;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .05em;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}

/* Care options */
.care-card {
  min-height: 315px;
  padding: 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.care-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.care-card .icon-circle { margin-bottom: 22px; }
.care-card p { color: var(--muted); }

/* Doctor */
.doctor-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.doctor-visual {
  position: relative;
  min-height: 590px;
  background:
    radial-gradient(circle at 25% 20%, rgba(219,236,231,.95), transparent 34%),
    linear-gradient(145deg, var(--seafoam-light), #f5e8dc);
}

.doctor-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--white);
  background: linear-gradient(145deg, var(--teal), var(--navy));
  border: 12px solid rgba(255,255,255,.75);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
}

.doctor-visual::after {
  position: absolute;
  right: 28px;
  bottom: 18px;
  content: "Professional headshot can replace this panel";
  max-width: 210px;
  padding: 11px 13px;
  color: var(--muted);
  background: rgba(255,255,255,.9);
  border-radius: 10px;
  font-size: .76rem;
  text-align: center;
}

.doctor-copy {
  padding: clamp(38px, 6vw, 72px);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.credential {
  padding: 15px;
  background: var(--seafoam-light);
  border-radius: 10px;
}

.credential strong {
  display: block;
  color: var(--navy);
}

.credential span {
  color: var(--muted);
  font-size: .84rem;
}

/* Conditions */
.condition-card {
  overflow: hidden;
  min-height: 280px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.condition-image {
  height: 170px;
  overflow: hidden;
}

.condition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.condition-copy {
  padding: 24px;
}

.condition-copy p { color: var(--muted); }

.condition-copy details {
  margin-top: 12px;
}

.condition-copy summary {
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.condition-copy summary::-webkit-details-marker { display: none; }
.condition-copy summary::after { content: " +"; }
.condition-copy details[open] summary::after { content: " −"; }

/* Page hero */
.page-hero {
  padding: 76px 0;
  background:
    radial-gradient(circle at 88% 14%, rgba(211,166,111,.25), transparent 26%),
    linear-gradient(145deg, var(--cream), var(--seafoam-light));
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.breadcrumbs a { text-decoration: none; }

/* FAQ */
.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 21px 55px 21px 23px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
}

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

.faq-answer {
  padding: 0 23px 21px;
  color: var(--muted);
}

/* Forms */
.form-card {
  padding: clamp(27px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.field.full { grid-column: 1 / -1; }

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid #d4deda;
  border-radius: 9px;
  outline: none;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,124,119,.12);
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: .9rem;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note,
.notice {
  padding: 17px 19px;
  border-radius: 12px;
}

.form-note {
  color: var(--muted);
  background: var(--seafoam-light);
  font-size: .88rem;
}

.notice {
  color: #6e4735;
  background: #fff0e8;
  border: 1px solid #edcdbf;
}

#form-status {
  min-height: 25px;
  color: var(--teal-dark);
  font-weight: 750;
}

/* CTA + footer */
.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 6vw, 58px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta h2 { color: var(--white); }
.cta p {
  max-width: 700px;
  color: #d2e2df;
}

.footer {
  color: #d3e3df;
  background: var(--navy-dark);
}

.footer-main { padding: 68px 0 43px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 40px;
}

.footer .brand {
  min-width: 0;
  color: var(--white);
}

.footer .brand-copy span { color: #a9c5c0; }
.footer p { color: #afc8c4; }

.footer h3 {
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #c7dbd7;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 21px 0;
  color: #9fbdb8;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .81rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1050px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: fixed;
    inset: 124px 18px auto;
    display: none;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px; }
  .main-nav .nav-cta { margin: 5px 0 0; text-align: center; }

  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
  .section { padding: 70px 0; }

  .hero,
  .hero-content { min-height: 610px; }

  .hero::after {
    background: linear-gradient(90deg, rgba(12,45,54,.94), rgba(12,45,54,.70));
  }

  .hero-card { display: none; }

  .split,
  .grid-2,
  .doctor-panel,
  .cta {
    grid-template-columns: 1fr;
  }

  .grid-3 { grid-template-columns: 1fr; }
  .doctor-visual { min-height: 440px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }

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

  .footer-grid > :first-child,
  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar .container { min-height: 49px; }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .logo-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: .9rem; }
  .brand-copy span { font-size: .62rem; }

  .hero,
  .hero-content { min-height: 650px; }

  .hero > img { object-position: 64% center; }

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

  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .footer-grid > * { grid-column: auto !important; }

  .footer-bottom .container { display: grid; }

  .button-row .btn { width: 100%; }
}
/* =========================================================
   Homepage emphasis update: vivid shortcut tiles + welcome panel
   ========================================================= */
.quick-links-featured {
  padding: 28px 0;
  background: #f4eee5;
  border-bottom: 0;
}

.quick-links-featured .quick-grid {
  gap: 14px;
}

.quick-links-featured .quick-card {
  position: relative;
  min-height: 174px;
  padding: 25px 23px;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.quick-links-featured .quick-card::after {
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 130px;
  height: 130px;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(255,255,255,.035), 0 0 0 50px rgba(255,255,255,.025);
}

.quick-links-featured .quick-card:hover {
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  filter: saturate(1.08);
}

.quick-card-appointment { background: linear-gradient(145deg, #c8734f, #a95337); }
.quick-card-doctor { background: linear-gradient(145deg, #398f88, #1f6763); }
.quick-card-services { background: linear-gradient(145deg, #1d5664, #103946); }
.quick-card-insurance { background: linear-gradient(145deg, #d0a15f, #b57a38); }

.quick-links-featured .quick-icon {
  width: 58px;
  height: 58px;
  color: var(--white);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(4px);
}

.quick-links-featured .quick-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-links-featured .quick-copy {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.quick-links-featured .quick-number {
  margin: 0 0 7px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.quick-links-featured .quick-card strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.quick-links-featured .quick-card .quick-copy > span:last-child {
  margin-top: 7px;
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}

.quick-arrow {
  position: absolute;
  right: 19px;
  top: 18px;
  z-index: 2;
  display: grid !important;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0 !important;
  color: var(--white) !important;
  background: rgba(255,255,255,.14);
  border-radius: 50%;
  font-size: 1.05rem !important;
  transition: transform .2s ease, background .2s ease;
}

.quick-card:hover .quick-arrow {
  transform: translateX(4px);
  background: rgba(255,255,255,.23);
}

.welcome-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 10%, rgba(211,166,111,.16), transparent 26%),
    linear-gradient(180deg, #fbf8f1, #f5eee4);
}

.welcome-layout {
  gap: clamp(30px, 5vw, 62px);
}

.welcome-panel {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 58px);
  color: #eef6f4;
  background: linear-gradient(145deg, #173f4d, #0e303a);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.welcome-panel::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.022), 0 0 0 68px rgba(255,255,255,.014);
}

.welcome-panel > * {
  position: relative;
  z-index: 1;
}

.welcome-panel .eyebrow {
  color: #f3aa87;
}

.welcome-panel h2 {
  color: var(--white);
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
}

.welcome-panel .lead,
.welcome-panel p {
  color: #d5e4e1;
}

.welcome-panel .lead {
  font-size: 1.16rem;
}

.welcome-check-list li::before {
  color: var(--navy-dark);
  background: #f0a078;
}

.welcome-photo img {
  min-height: 570px;
}

.welcome-photo .photo-note {
  right: 20px;
  bottom: 20px;
  background: var(--terracotta);
}

.welcome-photo .photo-note span {
  color: #fff1eb;
}

@media (max-width: 1050px) {
  .quick-links-featured .quick-card:nth-child(2) { border-right: 0; }
  .quick-links-featured .quick-card:nth-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 800px) {
  .welcome-photo img { min-height: 430px; }
}

@media (max-width: 560px) {
  .quick-links-featured { padding: 18px 0; }
  .quick-links-featured .quick-grid { gap: 10px; }
  .quick-links-featured .quick-card {
    min-height: 145px;
    border-bottom: 0;
  }
  .welcome-panel { padding: 31px 24px; }
}


/* Compact floating hero shortcuts */
.hero-shortcuts {
  position: absolute;
  top: 50%;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  width: 320px;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.hero-shortcut {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px 1fr 27px;
  gap: 11px;
  align-items: center;
  padding: 10px 11px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(12,45,54,.22);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.hero-shortcut,
.hero-shortcut:visited,
.hero-shortcut:hover,
.hero-shortcut:focus {
  color: var(--white);
}

.hero-shortcut:hover,
.hero-shortcut:focus-visible {
  color: var(--white);
  transform: translateX(-5px);
  box-shadow: 0 17px 40px rgba(12,45,54,.31);
  outline: none;
}

.shortcut-appointment {
  background: linear-gradient(135deg, rgba(190,102,69,.97), rgba(151,75,49,.98));
}
.shortcut-appointment:hover,
.shortcut-appointment:focus-visible {
  background: linear-gradient(135deg, #cb7653, #9a4b32);
}

.shortcut-doctor {
  background: linear-gradient(135deg, rgba(48,137,128,.97), rgba(28,96,92,.98));
}
.shortcut-doctor:hover,
.shortcut-doctor:focus-visible {
  background: linear-gradient(135deg, #3d968d, #1d6661);
}

.shortcut-services {
  background: linear-gradient(135deg, rgba(26,81,95,.98), rgba(11,48,59,.99));
}
.shortcut-services:hover,
.shortcut-services:focus-visible {
  background: linear-gradient(135deg, #225f6e, #0b3946);
}

.shortcut-insurance {
  background: linear-gradient(135deg, rgba(202,149,77,.98), rgba(166,108,45,.99));
}
.shortcut-insurance:hover,
.shortcut-insurance:focus-visible {
  background: linear-gradient(135deg, #d4a05a, #ad7030);
}

.hero-shortcut-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.hero-shortcut-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-shortcut-copy {
  min-width: 0;
  display: grid;
  line-height: 1.13;
}

.hero-shortcut-copy small {
  margin-bottom: 3px;
  color: rgba(255,255,255,.67);
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero-shortcut-copy strong {
  overflow: hidden;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-shortcut-copy > span {
  overflow: hidden;
  margin-top: 4px;
  color: rgba(255,255,255,.82);
  font-size: .7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-shortcut:hover .hero-shortcut-copy small,
.hero-shortcut:hover .hero-shortcut-copy strong,
.hero-shortcut:hover .hero-shortcut-copy > span,
.hero-shortcut:focus-visible .hero-shortcut-copy small,
.hero-shortcut:focus-visible .hero-shortcut-copy strong,
.hero-shortcut:focus-visible .hero-shortcut-copy > span {
  color: var(--white);
}

.hero-shortcut-arrow {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255,255,255,.13);
  border-radius: 50%;
  font-size: .88rem;
}

.hero-shortcut:hover .hero-shortcut-arrow,
.hero-shortcut:focus-visible .hero-shortcut-arrow {
  color: var(--white);
  background: rgba(255,255,255,.23);
}

@media (min-width: 1101px) {
  .hero-copy { max-width: 585px; }
}

@media (max-width: 1100px) {
  .hero-shortcuts {
    top: auto;
    right: 20px;
    bottom: 18px;
    width: min(560px, calc(100% - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .hero-shortcut:hover,
  .hero-shortcut:focus-visible {
    transform: translateY(-3px);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-bottom: 286px;
  }

  .hero-content {
    min-height: 515px;
    align-items: flex-start;
  }

  .hero-shortcuts {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-shortcut {
    min-height: 59px;
    grid-template-columns: 38px 1fr 25px;
    padding: 8px 9px;
  }

  .hero-shortcut-icon {
    width: 38px;
    height: 38px;
  }

  .hero-shortcut-copy strong { font-size: .93rem; }
  .hero-shortcut-copy > span { font-size: .67rem; }
}
