
:root {
  --primary: #0f5d91;
  --primary-dark: #0b466f;
  --secondary: #1e8e73;
  --secondary-dark: #146b57;
  --accent: #db4748;
  --accent-dark: #b93536;
  --dark: #173042;
  --text: #355062;
  --muted: #687d8c;
  --light: #f4f8fb;
  --light-2: #edf4f8;
  --white: #ffffff;
  --border: rgba(19, 54, 78, 0.12);
  --shadow-sm: 0 10px 30px rgba(22, 49, 68, 0.08);
  --shadow-md: 0 18px 44px rgba(22, 49, 68, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 90px;
  --transition: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(15, 93, 145, .16); }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  color: var(--dark);
  line-height: 1.1;
}
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }
address { font-style: normal; }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: 12px; z-index: 3000;
  padding: 12px 16px; border-radius: 12px;
  background: var(--dark); color: var(--white);
  transform: translateY(-180%); transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible {
  outline: 3px solid rgba(30, 142, 115, .45);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-tight { padding: clamp(42px, 6vw, 62px) 0; }
.soft-section {
  background:
    radial-gradient(circle at top right, rgba(219,71,72,.09), transparent 30%),
    linear-gradient(180deg, rgba(15,93,145,.04), rgba(30,142,115,.06));
}
.centered { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--secondary-dark);
}
.eyebrow.light { color: rgba(255,255,255,.9); }
.section-heading { max-width: 760px; margin: 0 auto 40px; }
.section-heading h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
.section-heading p { font-size: 1.05rem; color: var(--muted); }
.small-note { font-size: .95rem; color: var(--muted); }
.text-link { font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { min-height: 56px; padding-inline: 24px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #1479bd); color: var(--white); box-shadow: 0 14px 28px rgba(15,93,145,.25); }
.btn-primary:hover { color: var(--white); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), #25ab89); color: var(--white); box-shadow: 0 14px 28px rgba(30,142,115,.24); }
.btn-secondary:hover { color: var(--white); background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)); }
.btn-light { background: var(--white); color: var(--dark); }
.btn-light:hover { color: var(--dark); }
.btn-outline { border: 1px solid var(--border); background: var(--white); color: var(--dark); }
.btn-outline:hover { border-color: rgba(15,93,145,.32); color: var(--primary-dark); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { color: var(--white); background: rgba(255,255,255,.16); }
.btn-icon { width: 18px; height: 18px; fill: currentColor; }

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15,93,145,.13), rgba(30,142,115,.1));
  color: var(--primary);
  flex-shrink: 0;
}
.icon-wrap svg { width: 24px; height: 24px; fill: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 2000;
  height: var(--header-height);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}
.site-header::before {
  content: '';
  position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.site-header.scrolled {
  height: 76px;
  border-color: var(--border);
  box-shadow: 0 8px 26px rgba(23, 48, 66, .08);
  background: rgba(255,255,255,.96);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 100%;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: min(240px, 56vw); height: auto; }
.desktop-nav { display: none; align-items: center; gap: 24px; }
.desktop-nav a {
  position: relative;
  font-weight: 700; color: var(--dark);
  padding: 8px 0;
}
.desktop-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav a.active { color: var(--primary-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call span { display: none; }
.menu-toggle {
  display: inline-grid; place-items: center; gap: 4px;
  width: 48px; height: 48px;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--white);
}
.menu-toggle span {
  display: block; width: 21px; height: 2px; border-radius: 2px;
  background: var(--dark); transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu {
  position: absolute; left: 0; top: 100%; width: 100%;
  background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.mobile-nav {
  display: grid; gap: 10px; padding: 16px 0 22px;
}
.mobile-nav a {
  padding: 14px 16px; border-radius: 16px;
  background: var(--light); color: var(--dark); font-weight: 700;
}
.mobile-nav a.active { background: rgba(15,93,145,.12); color: var(--primary-dark); }

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-media,
.page-hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay,
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(15, 30, 52, .86) 0%, rgba(15, 30, 52, .72) 38%, rgba(15, 30, 52, .4) 66%, rgba(15, 30, 52, .35) 100%),
    linear-gradient(140deg, rgba(15,93,145,.18), rgba(30,142,115,.12));
}
.hero-content {
  position: relative; z-index: 2;
  width: min(700px, 100%);
  padding: clamp(110px, 18vw, 180px) 0 90px;
  color: var(--white);
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  letter-spacing: -.03em;
}
.hero-content p {
  max-width: 640px;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.9);
}
.hero-buttons, .cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 28px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 30px;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: var(--white);
  backdrop-filter: blur(8px);
  font-size: .95rem; font-weight: 600;
}
.hero-trust svg { width: 18px; height: 18px; fill: var(--white); }
.hero-aside {
  position: relative; z-index: 2;
  display: none;
}
.hero-panel {
  width: min(360px, 100%);
  margin-left: auto;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-md);
}
.hero-panel h2 { font-size: 1.4rem; margin-bottom: 12px; }
.hero-panel ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.hero-panel li { display: flex; gap: 12px; align-items: flex-start; }
.hero-panel li .icon-wrap { width: 46px; height: 46px; border-radius: 15px; }

.quick-actions { margin-top: -34px; position: relative; z-index: 4; }
.quick-grid,
.service-grid,
.benefit-grid,
.pillar-grid,
.contact-card-grid,
.gallery-grid,
.story-grid,
.detailed-service-grid,
.contact-layout,
.split-layout,
.footer-grid,
.stat-grid,
.form-row,
.notice-grid {
  display: grid; gap: 20px;
}
.quick-grid { grid-template-columns: 1fr; }
.action-card,
.service-card,
.benefit-card,
.pillar-card,
.contact-card,
.info-panel,
.stat-card,
.notice-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.action-card {
  display: flex; align-items: center; gap: 16px;
  color: var(--dark);
}
.action-card:hover,
.service-card:hover,
.benefit-card:hover,
.pillar-card:hover,
.gallery-card:hover,
.detail-card:hover,
.contact-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.action-card strong,
.service-card h3,
.benefit-card h3,
.pillar-card h3,
.contact-card h3,
.detail-card h3,
.story-card h3 { display: block; margin-bottom: 8px; }
.action-card small { display: block; font-size: .96rem; color: var(--muted); }
.action-card, .service-card, .benefit-card, .pillar-card, .gallery-card, .detail-card, .contact-card, .stat-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.action-card:hover, .service-card:hover, .benefit-card:hover, .pillar-card:hover, .gallery-card:hover, .detail-card:hover, .contact-card:hover, .stat-card:hover {
  border-color: rgba(15,93,145,.2);
}

.service-grid { grid-template-columns: 1fr; }
.service-card {
  position: relative;
  padding-top: 28px;
  overflow: hidden;
}
.service-card::before,
.benefit-card::before,
.pillar-card::before,
.detail-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}
.service-card h3 { font-size: 1.06rem; }
.service-card p,
.benefit-card p,
.pillar-card p,
.detail-card p,
.contact-card p { color: var(--muted); }

.split-layout { align-items: center; }
.split-content h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-badge {
  position: absolute; left: 20px; bottom: 20px;
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(23,48,66,.16);
}
.image-badge strong { display: block; color: var(--dark); }
.image-badge span { color: var(--muted); font-size: .95rem; }
.stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 26px; }
.stat-card {
  text-align: center;
  background: linear-gradient(180deg, var(--white), rgba(15,93,145,.03));
}
.stat-card strong { display: block; font-size: 1.6rem; color: var(--primary-dark); }
.stat-card span { color: var(--muted); font-weight: 600; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
}
.check-list li::before {
  content: '✓';
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(30,142,115,.12);
  color: var(--secondary-dark);
  font-weight: 900;
  flex-shrink: 0;
}

.gallery-grid { grid-template-columns: 1fr; }
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery-card figcaption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(15, 30, 52, .74); color: var(--white);
  font-size: .9rem; font-weight: 700;
}

.story-grid { grid-template-columns: 1fr; }
.story-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(15,93,145,.03), rgba(30,142,115,.05));
  border: 1px solid var(--border);
}
.story-card h3 { font-size: 1.15rem; }
.notice-grid { grid-template-columns: 1fr; }
.notice-card {
  display: grid;
  gap: 16px;
  align-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,1), rgba(244,248,251,1));
}
.notice-card .icon-wrap { width: 58px; height: 58px; border-radius: 18px; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero .container {
  position: relative; z-index: 2;
  padding: 132px 0 70px;
}
.page-hero h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  color: var(--white);
}
.page-hero p { max-width: 650px; color: rgba(255,255,255,.92); }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 9px;
  font-size: .96rem; font-weight: 700;
}
.breadcrumb a { color: rgba(255,255,255,.92); }
.breadcrumb span { color: rgba(255,255,255,.76); }

.cta-band {
  padding: clamp(70px, 8vw, 110px) 0;
  background: linear-gradient(135deg, #0d4469, #1172ad 55%, #1b8d74);
  color: var(--white);
}
.cta-inner {
  display: grid; gap: 20px; align-items: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.95rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,.88); }

.contact-layout { align-items: start; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-form-wrap {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,248,251,1));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form { display: grid; gap: 16px; }
.form-heading h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; color: var(--dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19,54,78,.16);
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(15,93,145,.48);
  box-shadow: 0 0 0 4px rgba(15,93,145,.09);
  outline: none;
}
.field-help, .field-error { margin: 0; font-size: .9rem; }
.field-help { color: var(--muted); }
.field-error { color: #b42318; min-height: 19px; }
.privacy-check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .94rem;
}
.privacy-check input { margin-top: 3px; accent-color: var(--primary); }
.form-status { min-height: 22px; color: var(--secondary-dark); font-weight: 700; }
.map-section { padding: 0 0 clamp(74px, 8vw, 108px); }
.map-frame {
  overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }

.site-footer {
  padding-top: 64px;
  background: #102c3d;
  color: #c3d6e1;
}
.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--white);
}
.site-footer p, .site-footer address { color: #c3d6e1; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.site-footer a { color: #dbeaf1; }
.site-footer a:hover { color: var(--white); }
.brand-footer {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.brand-footer img { width: min(220px, 58vw); height: auto; }
.footer-grid { padding-bottom: 44px; }
.footer-brand p { max-width: 360px; margin-top: 18px; }
.footer-phone { display: inline-block; margin-top: 6px; font-size: 1.16rem; font-weight: 900; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }
.back-to-top {
  position: fixed; right: 18px; bottom: 18px; z-index: 1600;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(219,71,72,.3);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover { background: var(--accent-dark); }
.back-to-top svg { width: 22px; height: 22px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 600px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .quick-grid, .gallery-grid, .story-grid, .benefit-grid, .pillar-grid, .contact-card-grid, .notice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
  .header-call span { display: inline; }
  .quick-actions { margin-top: -54px; }
  .quick-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .action-card { align-items: flex-start; flex-direction: column; min-height: 180px; }
  .split-layout { grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); }
  .split-layout.reverse { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pillar-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detailed-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1.02fr .98fr; }
  .story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-inner { grid-template-columns: 1fr auto; }
  .cta-actions { justify-content: flex-end; }
  .footer-grid { grid-template-columns: 1.6fr .85fr .95fr 1.1fr; }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (min-width: 980px) {
  .desktop-nav { display: flex; }
  .menu-toggle, .mobile-menu { display: none !important; }
  .service-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
    gap: 24px;
    align-items: end;
  }
  .hero-aside { display: block; }
}

@media (min-width: 1280px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
}

@media (max-width: 430px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand img { width: min(210px, 64vw); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.detail-card { position: relative; padding: 28px 22px 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }


/* ===== Final visual polish: September 2026 ===== */
:root {
  --brand-red: #d71920;
  --brand-red-dark: #b9151b;
}

/* Full-width flat red company banner/header. The brand is HTML/CSS so it never depends on a logo image loading. */
.site-header,
.site-header.scrolled {
  background: var(--brand-red);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 8px 28px rgba(18, 32, 43, .16);
}
.site-header::before { display: none; }
.header-inner { min-width: 0; }
.brand {
  min-width: 0;
  gap: 11px;
  color: #fff;
  line-height: 1;
}
.brand:hover { color: #fff; }
.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-red);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-name {
  display: grid;
  gap: 2px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-name span:first-child { font-size: clamp(.86rem, 1.8vw, 1.18rem); }
.brand-name span:last-child { font-size: clamp(.78rem, 1.55vw, 1.02rem); letter-spacing: .08em; }
.desktop-nav a { color: rgba(255,255,255,.94); }
.desktop-nav a:hover,
.desktop-nav a.active { color: #fff; }
.desktop-nav a::after { background: #fff; }
.header-call {
  background: #fff !important;
  color: var(--brand-red) !important;
  box-shadow: 0 10px 22px rgba(76, 8, 10, .18) !important;
}
.header-call:hover {
  background: #fff7f7 !important;
  color: var(--brand-red-dark) !important;
}
.menu-toggle {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}
.menu-toggle span { background: #fff; }
.mobile-menu { border-color: rgba(0,0,0,.08); }
.mobile-nav .btn-primary { background: var(--brand-red); }

/* Prevent merged words and text collisions across cards. */
.hero-panel li { align-items: flex-start; }
.hero-panel li > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.hero-panel strong,
.hero-panel .small-note {
  display: block;
  white-space: normal;
}
.hero-panel strong { line-height: 1.25; color: var(--dark); }
.hero-panel .small-note { line-height: 1.48; overflow-wrap: anywhere; }
.action-card > span:last-child,
.contact-card > div,
.notice-card > div,
.service-card,
.detail-card,
.benefit-card,
.pillar-card { min-width: 0; }
.action-card strong,
.action-card small,
.service-card h3,
.service-card p,
.detail-card h3,
.detail-card p,
.benefit-card h3,
.benefit-card p,
.contact-card h3,
.contact-card p,
.contact-card a,
.site-footer a,
.site-footer address {
  overflow-wrap: anywhere;
  word-break: normal;
}
.action-card strong,
.service-card h3,
.detail-card h3,
.benefit-card h3,
.pillar-card h3 { line-height: 1.28; }
.action-card small,
.service-card p,
.detail-card p,
.benefit-card p,
.pillar-card p,
.contact-card p { line-height: 1.58; }

/* Contact page: email and phone are true separate fields and long email never clips. */
.form-heading h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.18;
}
.form-heading p { line-height: 1.55; }
.contact-method-row { align-items: start; }
.optional-label {
  margin-left: 6px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.contact-card.email-card { grid-column: 1 / -1; }
.contact-email {
  display: inline;
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card address,
.contact-card p { margin-bottom: .7rem; }
.contact-form-wrap { min-width: 0; overflow: hidden; }
.field input,
.field select,
.field textarea { min-width: 0; }

/* Red brand accent without turning the whole healthcare site red. */
.back-to-top { background: var(--brand-red); }
.back-to-top:hover { background: var(--brand-red-dark); }

/* Footer brand uses the same resilient mark with no image dependency. */
.brand-footer {
  padding: 0;
  background: transparent;
}
.brand-footer .brand-symbol { width: 38px; height: 38px; flex-basis: 38px; }
.brand-footer .brand-name span:first-child { font-size: 1rem; }
.brand-footer .brand-name span:last-child { font-size: .88rem; }

@media (max-width: 767px) {
  .site-header { height: 78px; }
  .site-header.scrolled { height: 70px; }
  .brand-symbol { width: 34px; height: 34px; flex-basis: 34px; font-size: .86rem; }
  .brand-name span:first-child { font-size: .82rem; }
  .brand-name span:last-child { font-size: .72rem; }
  .header-call { width: 44px; min-width: 44px; height: 44px; min-height: 44px; padding: 0; }
  .header-call .btn-icon { width: 19px; height: 19px; }
  .hero-content { padding-top: 100px; }
  .contact-card.email-card { grid-column: auto; }
}

@media (max-width: 380px) {
  .brand { gap: 7px; }
  .brand-symbol { width: 31px; height: 31px; flex-basis: 31px; font-size: .78rem; }
  .brand-name span:first-child { font-size: .72rem; }
  .brand-name span:last-child { font-size: .63rem; }
  .header-actions { gap: 7px; }
  .menu-toggle { width: 43px; height: 43px; }
}
