/* ==========================================================================
   Lifeline Pharmacy NKY — Shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy: #1e5a8e;
  --navy-dark: #0f3a5f;
  --navy-deep: #082943;
  --teal: #1e5a8e;
  --teal-light: #4a7eaf;
  --accent: #f0883b;
  --accent-dark: #d56b1d;
  --accent-light: #fbe2cf;
  --ink: #0a1628;
  --ink-soft: #3d4a5c;
  --mute: #5a6878;
  --line: #e6ebf1;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-tint: #eef4f8;
  --good: #16a34a;
  --warn: #d97706;
  --shadow-sm: 0 1px 3px rgba(15, 58, 95, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 58, 95, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 58, 95, 0.14);
  --shadow-xl: 0 30px 80px rgba(15, 58, 95, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

h1, h2, h3, h4 { color: var(--navy); margin: 0 0 0.5em; line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); line-height: 1.6; font-weight: 400; }
.accent-text { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #f9a361 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 12px 20px; z-index: 1000; }
.skip-link:focus { left: 0; }

.utility-bar { background: var(--navy-dark); color: #d8e3ed; font-size: 0.85rem; padding: 6px 0; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.utility-bar a { color: #d8e3ed; }
.utility-bar a:hover { color: #fff; text-decoration: underline; }
.utility-bar .hours { display: flex; align-items: center; gap: 6px; }
.utility-bar .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; display: inline-block; box-shadow: 0 0 6px rgba(74, 222, 128, 0.6); }
.utility-bar .dot.closed { background: #ef4444; box-shadow: 0 0 6px rgba(239, 68, 68, 0.5); }

.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.logo:hover { text-decoration: none; }
.logo-mark { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text { line-height: 1.05; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--mute); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }
.logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo-stack .word-life, .logo-stack .word-line { font-weight: 700; color: var(--navy); font-size: 1.05rem; letter-spacing: 0.02em; }
.logo-stack .word-pharmacy { font-weight: 600; color: var(--navy); font-size: 0.78rem; letter-spacing: 0.06em; padding-top: 2px; border-top: 1.5px solid var(--navy); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a { display: block; padding: 10px 14px; color: var(--ink); font-weight: 500; font-size: 0.95rem; border-radius: 6px; transition: background 0.15s; }
.main-nav a:hover { background: var(--bg-tint); text-decoration: none; }
.main-nav a.active { color: var(--teal); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 100px; font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; cursor: pointer; border: 0; transition: transform 0.2s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease); text-decoration: none; white-space: nowrap; font-family: inherit; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, var(--accent) 0%, #f9a361 100%); color: #fff; box-shadow: 0 6px 20px rgba(240, 136, 59, 0.35); }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); color: #fff; box-shadow: 0 10px 28px rgba(240, 136, 59, 0.5); }
.btn-secondary { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(15, 58, 95, 0.25); }
.btn-secondary:hover { background: var(--navy-dark); color: #fff; box-shadow: 0 8px 22px rgba(15, 58, 95, 0.35); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-large { padding: 17px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

.hero { background: var(--navy-deep); color: #fff; padding: 110px 0 100px; position: relative; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 12% 20%, rgba(240, 136, 59, 0.22) 0%, transparent 70%), radial-gradient(50% 60% at 90% 80%, rgba(74, 126, 175, 0.4) 0%, transparent 65%), radial-gradient(40% 50% at 75% 10%, rgba(240, 136, 59, 0.12) 0%, transparent 70%), linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-deep) 100%); z-index: -1; }
.hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 32px 32px; z-index: -1; opacity: 0.5; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent-pop { background: linear-gradient(135deg, var(--accent) 0%, #f9a361 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lede { color: #cbd9e6; font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin-bottom: 36px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; background: rgba(240, 136, 59, 0.14); color: #fbb578; border: 1px solid rgba(240, 136, 59, 0.3); border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(10px); }
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
section:not(.dark):not(.hero) .eyebrow, .section-head .eyebrow, .alt .eyebrow { background: rgba(30, 90, 142, 0.08); color: var(--navy); border: 1px solid rgba(30, 90, 142, 0.18); }
section:not(.dark):not(.hero) .eyebrow::before, .section-head .eyebrow::before, .alt .eyebrow::before { background: var(--accent); box-shadow: 0 0 8px rgba(240, 136, 59, 0.6); }

.hero-card { background: rgba(255, 255, 255, 0.98); color: var(--ink); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-xl); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(20px); }
.hero-card h3 { margin-top: 0; color: var(--navy); font-size: 1.4rem; }
.hero-card .subtle { color: var(--mute); font-size: 0.95rem; margin-bottom: 22px; }

.stats-band { background: #fff; padding: 32px 0; border-bottom: 1px solid var(--line); position: relative; z-index: 2; margin-top: -1px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; align-items: center; }
.stat { text-align: center; padding: 0 12px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 120%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin: 0; }
.stat .label { font-size: 0.85rem; color: var(--mute); margin-top: 8px; font-weight: 500; letter-spacing: 0.02em; }
@media (max-width: 700px) { .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; } .stat:last-child { border-bottom: 0; } }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal.in { opacity: 1; transform: none; transition: none; } }

section { padding: 90px 0; }
section.alt { background: var(--bg-soft); }
section.dark { background: var(--navy); color: #fff; }
section.dark h2, section.dark h3 { color: #fff; }
section.dark p { color: #c7d3df; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.section-head .eyebrow { background: rgba(14, 124, 123, 0.12); color: var(--teal); }
.section-head p { font-size: 1.1rem; }

.value-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 0 0 40px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; text-align: left; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); position: relative; overflow: hidden; }
.value::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.value:hover::before { transform: scaleX(1); }
.value-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(30, 90, 142, 0.08) 0%, rgba(240, 136, 59, 0.08) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 18px; transition: transform 0.3s var(--ease); }
.value:hover .value-icon { transform: scale(1.05) rotate(-3deg); }
.value-icon svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { font-size: 0.95rem; margin: 0; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 32px; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% 0%, rgba(240, 136, 59, 0.04) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; text-decoration: none; }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); border-radius: 14px; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.service-card:hover .service-icon { transform: scale(1.06) rotate(-3deg); background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); margin-bottom: 16px; }
.service-card .more { color: var(--teal); font-weight: 600; font-size: 0.95rem; margin-top: auto; }
.service-card .more::after { content: " →"; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split.flip > :first-child { order: 2; }
.split-image { background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%); border-radius: var(--radius-lg); aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; border: 1px solid var(--line); position: relative; overflow: hidden; padding: 24px; text-align: center; }
.split-image::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 100%); }
.split-image .ph-mark { width: 72px; height: 72px; opacity: 0.55; display: block; }
.split-image .ph-label { font-size: 0.75rem; color: var(--mute); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; max-width: 280px; line-height: 1.5; }
.split-image > svg:not(.ph-mark) { width: 100%; height: 100%; }
.split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; border-radius: var(--radius-lg); }
.split-image::after { z-index: 2; }
.split-image:has(img) { padding: 0; gap: 0; }

.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; position: relative; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial::before { content: "\201C"; position: absolute; top: 14px; right: 24px; font-size: 4.5rem; line-height: 1; color: var(--accent); opacity: 0.18; font-family: Georgia, serif; }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 1.08rem; color: var(--ink); line-height: 1.6; font-weight: 500; letter-spacing: -0.01em; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial cite small { display: block; color: var(--mute); font-weight: 400; font-size: 0.85rem; }

.faq-list { max-width: 820px; margin: 0 auto; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; padding: 4px 24px; }
details[open] { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
summary { font-weight: 600; font-size: 1.05rem; padding: 18px 0; cursor: pointer; list-style: none; position: relative; padding-right: 36px; color: var(--navy); }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--teal); font-weight: 300; transition: transform 0.2s; }
details[open] summary::after { content: "−"; }
details > p { padding: 0 0 18px; margin: 0; }

.cta-banner { background: var(--navy-deep); color: #fff; text-align: center; padding: 72px 32px; border-radius: var(--radius-xl); position: relative; overflow: hidden; isolation: isolate; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 20%, rgba(240, 136, 59, 0.3) 0%, transparent 70%), radial-gradient(50% 60% at 10% 80%, rgba(74, 126, 175, 0.4) 0%, transparent 70%), linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); z-index: -1; }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 1.15rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.cta-banner .btn-primary:hover { background: var(--accent); color: #fff; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; color: var(--navy); }
.field label .required { color: var(--accent); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 6px; font-size: 1rem; font-family: inherit; background: #fff; color: var(--ink); transition: border-color 0.15s, box-shadow 0.15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.85rem; color: var(--mute); margin-top: 4px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.field-check input { margin-top: 3px; flex-shrink: 0; }
.privacy-note { background: var(--bg-tint); border-left: 4px solid var(--teal); padding: 14px 18px; border-radius: 4px; font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 24px; line-height: 1.55; }

.sticky-transfer { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--line); padding: 12px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 40; }
.sticky-transfer .btn { width: 100%; }

.site-footer { background: var(--navy-dark); color: #c7d3df; padding: 60px 0 24px; font-size: 0.95rem; }
.site-footer h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; font-family: inherit; }
.site-footer a { color: #c7d3df; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-nap { line-height: 1.8; }
.footer-nap strong { color: #fff; display: block; margin-bottom: 6px; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 0.85rem; color: #95a8bb; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-legal a { margin-left: 18px; }
.site-footer p { color: #c7d3df; }
.site-footer .hours-table td { color: #e4ecf3; border-bottom-color: rgba(255,255,255,0.12); }
.site-footer .hours-table td:last-child { color: #c7d3df; }

.page-header { background: linear-gradient(135deg, var(--bg-tint) 0%, var(--bg-soft) 100%); padding: 60px 0 50px; border-bottom: 1px solid var(--line); text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header .lede { max-width: 720px; margin: 0 auto; }
.breadcrumb { font-size: 0.9rem; color: var(--mute); margin-bottom: 16px; }
.breadcrumb a { color: var(--mute); }

.anchor-nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 73px; z-index: 40; }
.anchor-nav .container { display: flex; gap: 4px; overflow-x: auto; padding: 12px 24px; scrollbar-width: thin; }
.anchor-nav a { padding: 8px 14px; color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; white-space: nowrap; border-radius: 6px; }
.anchor-nav a:hover { background: var(--bg-tint); color: var(--navy); text-decoration: none; }

.content-block { max-width: 820px; margin: 0 auto; padding-bottom: 50px; scroll-margin-top: 130px; }
.content-block:last-child { padding-bottom: 0; }
.content-block h2 { color: var(--navy); margin-bottom: 16px; }
.content-block ul { padding-left: 22px; color: var(--ink-soft); }
.content-block li { margin-bottom: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-member { text-align: center; }
.team-photo { width: 160px; height: 160px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 2.6rem; font-weight: 700; letter-spacing: -0.02em; border: 4px solid #fff; box-shadow: var(--shadow-sm); }
.team-photo.alt { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; padding: 18px 24px; background: var(--bg-tint); border-radius: var(--radius); font-size: 0.92rem; color: var(--ink-soft); }
.trust-row .badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.trust-row .badge svg { width: 18px; height: 18px; color: var(--accent); }
.team-member h4 { margin-bottom: 4px; }
.team-member .role { display: block; color: var(--teal); font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; }
.team-member p { font-size: 0.95rem; color: var(--ink-soft); }

.map-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed { width: 100%; aspect-ratio: 16 / 9; border: 0; background: var(--bg-tint); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr:last-child td { border-bottom: 0; }

@media (max-width: 900px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .split.flip > :first-child { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px 16px; border-top: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; width: 100%; gap: 0; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .main-nav .btn { margin-top: 8px; }
  .hero { padding: 50px 0; }
  section { padding: 50px 0; }
  .sticky-transfer { display: block; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal a { margin-left: 0; margin-right: 18px; }
  .anchor-nav { top: 64px; }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .utility-bar { font-size: 0.78rem; }
  .utility-bar .container { padding: 0 16px; }
  .hero-card { padding: 24px; }
  .form-card { padding: 24px; }
}
@media print {
  .site-header, .site-footer, .sticky-transfer, .anchor-nav, .utility-bar { display: none; }
  body { font-size: 11pt; }
}