/* ============================================================
   Dr Gregory Tarr — Interventional Radiology Queensland
   drtarr.com · Clean clinical design system
   ============================================================ */

:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --navy-3: #1b4377;
  --teal: #0f8b8d;
  --teal-dark: #0b6e70;
  --teal-soft: #e3f2f2;
  --ink: #16242f;
  --muted: #53687c;
  --bg: #ffffff;
  --bg-soft: #f3f7fa;
  --line: #dce6ee;
  --ok: #1a7f4f;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 18px 50px rgba(11, 37, 69, 0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy); letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
.lede { font-size: 1.13rem; color: var(--muted); max-width: 62ch; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark { font-weight: 800; font-size: 1.32rem; color: var(--navy); letter-spacing: 0.02em; }
.brand-mark .dot { color: var(--teal); }
.brand-sub { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a, .drop-toggle {
  font-size: 0.95rem; font-weight: 600; color: var(--ink);
  text-decoration: none; padding: 6px 0; white-space: nowrap;
}
.main-nav > a:hover, .drop-toggle:hover { color: var(--teal-dark); text-decoration: none; }
.main-nav > a.active { color: var(--teal-dark); box-shadow: inset 0 -2px 0 var(--teal); }

.dropdown { position: relative; }
/* transparent hover bridge so the menu stays open while the cursor crosses the gap */
.dropdown::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 290px; max-width: 60vw; height: 20px; }
.drop-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; font-family: var(--font); }
.drop-toggle::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 10px; min-width: 290px;
  display: none; flex-direction: column;
}
.dropdown:hover .drop-menu, .dropdown:focus-within .drop-menu { display: flex; }
.drop-menu .drop-group { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); padding: 11px 14px 3px; }
.drop-menu .drop-group:first-child { padding-top: 2px; }
.drop-menu a {
  padding: 10px 14px; border-radius: 8px; color: var(--ink);
  font-weight: 600; font-size: 0.92rem; text-decoration: none;
}
.drop-menu a span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); }
.drop-menu a:hover { background: var(--bg-soft); color: var(--teal-dark); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; font-size: 1.25rem; color: var(--navy); cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.98rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all 0.18s ease; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,0.65); color: #fff; background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.nav-phone { padding: 13px 34px; font-size: 0.93rem; white-space: nowrap; flex: 0 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #14506b 100%);
  padding: 88px 0 96px;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero .lede { color: rgba(255,255,255,0.85); margin: 22px 0 32px; }
.hero-art { position: absolute; right: -60px; top: 0; height: 100%; opacity: 0.5; pointer-events: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 38px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 16px; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
  color: rgba(255,255,255,0.95);
}
.chip svg { width: 15px; height: 15px; stroke: #7fd6d4; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Brand intro (home opening) ---------- */
.brand-intro {
  height: 100vh; min-height: 540px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #14506b 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.bi-glow { position: absolute; left: 50%; top: 44%; width: 78vw; height: 80vh;
  transform: translate(-50%, -50%) scale(1); pointer-events: none; will-change: transform, opacity;
  background: radial-gradient(closest-side, rgba(127,214,212,0.20), rgba(127,214,212,0.06) 45%, transparent 72%); }
.brand-intro .bi-mark { will-change: transform, opacity; transform-origin: center center; padding: 0 20px; position: relative; }
.bi-float { animation: biFadeIn 2.2s cubic-bezier(.2,.7,.2,1) both, biFloat 8s ease-in-out 2.2s infinite; }
@keyframes biFadeIn { from { opacity: 0; transform: translateY(24px); filter: blur(14px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes biFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.bi-name { display: block; font-weight: 800; color: #fff; letter-spacing: 0.01em;
  font-size: clamp(3rem, 13vw, 8.5rem); line-height: 0.98; }
.bi-name .dot { color: var(--teal); }
.bi-sub { display: block; margin-top: 20px; color: rgba(255,255,255,0.82);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em;
  font-size: clamp(0.68rem, 1.7vw, 1.05rem); }
.bi-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  animation: biBounce 2s ease-in-out infinite; }
@keyframes biBounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* home header: transparent over the intro, then materialises into the white bar on scroll */
body.home .site-header {
  position: fixed; top: 0; left: 0; right: 0;   /* out of flow so it reserves no space (no white bar) */
  background: transparent; border-color: transparent; backdrop-filter: none;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .5s ease, opacity .5s ease, background .3s ease, border-color .3s ease;
}
body.home .site-header .brand { opacity: 0; pointer-events: none; transition: opacity .3s ease; }
body.home .site-header .main-nav > a, body.home .site-header .drop-toggle { color: #fff; }
body.home.scrolled .site-header { transform: translateY(0); opacity: 1; pointer-events: auto; background: rgba(255,255,255,0.96); border-color: var(--line); backdrop-filter: blur(8px); }
body.home.scrolled .site-header .brand { opacity: 1; pointer-events: auto; }
body.home.scrolled .site-header .main-nav > a, body.home.scrolled .site-header .drop-toggle { color: var(--ink); }
body.home.scrolled .site-header .main-nav > a:hover, body.home.scrolled .site-header .drop-toggle:hover { color: var(--teal-dark); }
body.home .nav-toggle { color: #fff; border-color: rgba(255,255,255,0.45); }
body.home.scrolled .nav-toggle { color: var(--navy); border-color: var(--line); }
@media (prefers-reduced-motion: reduce) {
  .brand-intro .bi-mark { transform: none !important; opacity: 1 !important; }
  .bi-float { animation: none; opacity: 1; }
  .bi-glow { transform: translate(-50%, -50%) scale(1) !important; }
  .bi-cue { animation: none; }
}
@media (max-width: 720px) {
  body.home .site-header .main-nav > a, body.home .site-header .drop-toggle { color: var(--ink); }
}

/* Smaller hero for inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 70%, #14506b 100%);
  color: #fff; padding: 56px 0 60px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width: 24ch; }
.page-hero .lede { color: rgba(255,255,255,0.85); margin-top: 14px; }
.crumbs { font-size: 0.84rem; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.crumbs a { color: rgba(255,255,255,0.85); }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section.soft { background: var(--bg-soft); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin-top: 12px; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: all 0.2s ease; position: relative;
  display: flex; flex-direction: column;
}
a.card { color: inherit; text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #bfd3e0; }
.card .icon {
  width: 50px; height: 50px; border-radius: 12px; background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .icon svg { width: 25px; height: 25px; stroke: var(--teal-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 4px; }
.card .tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.card .more { margin-top: 16px; font-weight: 700; font-size: 0.9rem; color: var(--teal-dark); }
.card .more::after { content: " →"; }

/* ---------- Benefit strip ---------- */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { text-align: center; padding: 10px; }
.benefit .icon {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.benefit .icon svg { width: 26px; height: 26px; stroke: #7fd6d4; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { font-size: 1.02rem; margin-bottom: 6px; }
.benefit p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split.welcome { grid-template-columns: 0.8fr 1.2fr; }
.split .kicker { margin-bottom: 8px; }
.split h2 { margin-bottom: 16px; }
.split p + p { margin-top: 14px; }
.split p { color: var(--muted); }

/* ---------- Checklists ---------- */
.check-list { list-style: none; margin-top: 18px; }
.check-list li { padding-left: 32px; position: relative; margin-bottom: 11px; color: var(--ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 19px; height: 19px;
  border-radius: 50%; background-color: var(--teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b6e70' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: step; margin-top: 10px; }
.steps li { counter-increment: step; position: relative; padding: 0 0 28px 62px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: #fff;
  font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 20px; top: 44px; bottom: 4px; width: 2px;
  background: var(--line);
}
.steps h3 { margin-bottom: 5px; font-size: 1.05rem; }
.steps p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Procedure page layout ---------- */
.proc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.proc-body h2 { margin: 44px 0 14px; font-size: 1.5rem; }
.proc-body h2:first-child { margin-top: 0; }
.proc-body p { color: var(--muted); margin-bottom: 14px; }
.proc-body .check-list li { color: var(--ink); }
.facts-card {
  position: sticky; top: 100px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.facts-card h3 { color: #7fd6d4; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.facts-card dl { display: grid; gap: 14px; }
.facts-card dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); }
.facts-card dd { font-weight: 600; font-size: 0.97rem; margin-top: 2px; }
.facts-card .btn { width: 100%; margin-top: 22px; }
.facts-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.5; }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--teal); flex-shrink: 0; }
.faq[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 0.97rem; }
.faq .faq-body p + p { margin-top: 10px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  border-radius: 20px; color: #fff; padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 52ch; }
.cta-banner .btn-group { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-banner .btn-white { background: #fff; color: var(--teal-dark); }
.cta-banner .btn-white:hover { background: #eafafa; }

/* ---------- Location cards ---------- */
.loc-card { border-left: 4px solid var(--teal); }
.loc-card .addr { color: var(--muted); font-size: 0.95rem; margin: 6px 0 14px; }
.loc-card .map-link { font-weight: 700; font-size: 0.9rem; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
.ref-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.ref-table th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.ref-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.ref-table tr:last-child td { border-bottom: 0; }
.ref-table td:first-child { font-weight: 700; color: var(--navy); }
.ref-table tbody tr { transition: background 0.15s ease; }
.ref-table tbody tr:hover td { background: var(--teal-soft); }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; font-family: var(--font); font-size: 0.97rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,139,141,0.14); }
textarea { resize: vertical; }

/* ---------- Credentials strip ---------- */
.cred-strip { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; align-items: center; }
.cred-strip span { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.05em; color: var(--navy); border: 1px solid var(--line); border-radius: 8px; padding: 7px 12px; background: #fff; }
.cred-strip .cred-label { border: 0; background: none; padding: 0 6px 0 0; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; }

.cred-logo { height: 54px; width: auto; opacity: 0.96; }
.cred-logo-sq { height: 54px; }


/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand .brand-mark { color: #fff; font-size: 1.25rem; font-weight: 800; letter-spacing: 0.02em; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.55); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 14px 0; max-width: 34ch; line-height: 1.6; }
.footer-phone-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--aqua, #7FD6D4); opacity: 0.85; margin-bottom: 2px; }
.footer-phone { color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-phone:hover { text-decoration: none; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.45; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .proc-layout { grid-template-columns: 1fr; }
  .facts-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 16px; display: none; box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .drop-toggle { padding: 13px 0; border-bottom: 1px solid var(--bg-soft); width: 100%; text-align: left; }
  .dropdown::after { display: none; }
  .drop-menu { position: static; transform: none; display: flex; border: 0; box-shadow: none; padding: 4px 0 8px 14px; min-width: 0; }
  .nav-phone { width: 100%; text-align: center; margin-top: 10px; }
  .grid-3, .grid-2, .benefits { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 36px 26px; }
  .cred-strip { gap: 14px; }
}


/* ---------- Value signals row ---------- */
.value-signals { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.value-signals .vs-label { color: var(--muted); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; }
.value-signals a { display: flex; align-items: center; }
.value-signals a:hover { opacity: 0.82; }
.vs-logo { height: 80px; width: auto; opacity: 0.95; }
.vs-logo.vs-tall { height: 98px; }
@media (max-width: 600px) { .vs-logo { height: 46px; } .value-signals { gap: 26px; } }


/* ---------- Notice box ---------- */
.notice { display: flex; gap: 12px; align-items: flex-start; background: var(--teal-soft); border: 1px solid #bfe3e3; border-radius: 12px; padding: 15px 18px; font-size: 0.93rem; color: var(--ink); }
.notice svg { width: 22px; height: 22px; flex-shrink: 0; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }


/* ---------- Footer social / profiles ---------- */
.footer-social { display: flex; gap: 10px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.footer-social .soc { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px; border-radius: 9px; background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.85); font-size: 0.82rem; font-weight: 600; }
.footer-social .soc.soc-icon { width: 34px; padding: 0; justify-content: center; }
.footer-social .soc:hover { background: rgba(255,255,255,0.18); color: #fff; text-decoration: none; }
.footer-social .soc svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; display: block; }

.footer-social .soc-logo { background: transparent; padding: 0; height: auto; }
.footer-social .soc-logo:hover { background: transparent; opacity: 0.82; }
.footer-social .soc-logo img { height: 19px; width: auto; display: block; }


/* ---------- Treatments dropdown: group highlight + wider phone ---------- */
.drop-section { display: flex; flex-direction: column; border-radius: 9px; padding: 2px 0; transition: background 0.14s ease; }
.drop-section:hover { background: var(--teal-soft); }
.drop-section:hover .drop-group { color: var(--teal-dark); }
.drop-menu .drop-section:first-child .drop-group { padding-top: 4px; }
.drop-menu a:hover { background: #fff; color: var(--teal-dark); box-shadow: 0 1px 5px rgba(11,37,69,0.07); }
