/* ============================================================
   訪問看護ステーション未来 - common stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');
:root {
  /* colors (from pac_A4 brochure palette) */
  --blue-900: #1c6f8c;
  --blue-800: #22839f;
  --blue-700: #2ba7c9;
  --blue-600: #3cb9dd;
  --blue-500: #57cbe8;
  --blue-400: #8adcef;
  --blue-300: #b3e8f4;
  --blue-100: #e4f7fc;
  --blue-50: #f4fcfe;
  --accent-orange: #ffab40;
  --accent-orange-dark: #f5923c;
  --accent-pink: #ff92a5;
  --accent-green: #8bd3a0;
  --accent-yellow: #ffd76b;
  --text-dark: #2f4550;
  --text-mid: #5c7078;
  --text-soft: #7c8e94;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 28px rgba(37, 140, 170, .14);
  --shadow-card: 0 6px 18px rgba(37, 140, 170, .10);
  --max-width: 1120px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Zen Maru Gothic', 'M PLUS Rounded 1c', "Hiragino Maru Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, p, figure {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 14px rgba(37, 140, 170, .10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-icon {
  display: flex;
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.25;
  letter-spacing: .02em;
}
.brand-text strong {
  font-size: 24px;
  color: var(--blue-700);
  letter-spacing: .04em;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--blue-100);
  border-radius: 12px;
  margin-left: 12px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 0 auto;
  background: var(--blue-800);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list {
  display: flex;
  gap: 6px;
}
.nav-list a {
  display: inline-block;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text-dark);
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-list a:hover {
  background: var(--blue-100);
  color: var(--blue-800);
}
.nav-list a.active {
  background: var(--blue-700);
  color: var(--white);
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 16px;
  color: var(--blue-800);
  border: 2px solid var(--blue-500);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
}
.nav-tel svg {
  flex-shrink: 0;
}
@media (max-width:900px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    inset: 88px 0 0 0;
    height: calc(100vh - 88px);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    box-shadow: -6px 0 20px rgba(0, 0, 0, .08);
  }
  .site-nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 4px;
  }
  .nav-list a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
  }
  .nav-tel {
    justify-content: center;
  }
}
/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(43, 167, 201, .35);
}
.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(43, 167, 201, .45);
}
.btn-outline {
  background: var(--white);
  color: var(--blue-800);
  border-color: var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-100);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
  color: var(--white);
  box-shadow: 0 10px 22px rgba(245, 146, 60, .35);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 18px 34px;
  font-size: 17px;
}
/* ---------------- page hero (inner pages) ---------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-400) 0%, var(--blue-200, #c9eef8) 60%, var(--blue-50) 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 44px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero + section {
  padding-top: 34px;
}
@media (max-width:600px) {
  .page-hero {
    min-height: 220px;
  }
}
.breadcrumb {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-900);
  opacity: .8;
  margin-bottom: 14px;
}
.breadcrumb a {
  text-decoration: underline;
}
.page-hero h1 {
  font-size: clamp(26px, 4.4vw, 42px);
  font-weight: 900;
  color: var(--blue-900);
  letter-spacing: .03em;
}
.page-hero p {
  margin-top: 12px;
  color: var(--blue-900);
  opacity: .85;
  font-size: 15.5px;
}
.cloud {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: .85;
}
/* ---------------- home hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #bfeaf6 0%, #dcf3fa 55%, var(--blue-50) 100%);
  padding: 56px 0 120px;
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-800);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--blue-900);
  line-height: 1.5;
}
.hero h1 span {
  color: var(--accent-orange-dark);
}
.hero-lead {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-mid);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-worries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.worry-bubble {
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue-900);
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 8px solid var(--white);
  aspect-ratio: 4/3.3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--blue-800);
  font-size: 14px;
}
.hero-rainbow {
  position: absolute;
  top: -52px;
  right: -35px;
  width: 170px;
  opacity: .5;
  z-index: -1;
}
.hero-cloud {
  position: absolute;
  opacity: .9;
}
.hero .cloud-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 2;
  line-height: 0;
}
.hero .cloud-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width:880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}
/* ---------------- sections ---------------- */
.section {
  padding: 78px 0;
}
.section-alt {
  background: var(--blue-50);
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-block;
  color: var(--blue-700);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  color: var(--blue-900);
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 0;
  border-bottom: 3px dashed var(--blue-500);
}
.section-title.no-underline::after {
  display: none;
}
.section-title.heading-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 0;
}
.section-title.heading-mark .mark-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
}
.section-head p {
  margin-top: 16px;
  color: var(--text-mid);
  font-size: 15px;
}
.section-desc {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
  color: var(--text-mid);
}
/* ---------------- cards / grids ---------------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width:1040px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:920px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:720px) {
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:620px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (max-width:520px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(87, 203, 232, .16);
}
.feature-card {
  text-align: left;
  position: relative;
}
.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
}
.num-orange {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
}
.num-blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
}
.num-pink {
  background: linear-gradient(135deg, var(--accent-pink), #f2637e);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 14.5px;
}
.icon-card {
  text-align: center;
}
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  color: var(--blue-700);
}
.icon-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.icon-card p {
  font-size: 13.8px;
  color: var(--text-mid);
}
.photo-card {
  overflow: hidden;
  padding: 0;
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-card .photo-card-body {
  padding: 22px;
}
.photo-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.photo-card p {
  font-size: 14px;
  color: var(--text-mid);
}
/* ---------------- two column media/text ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split h2 {
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 18px;
}
.split p {
  color: var(--text-mid);
  margin-bottom: 14px;
}
.split.reverse .split-media {
  order: 2;
}
@media (min-width:861px) {
  .split.media-left .split-media {
    order: -1;
  }
}
@media (max-width:860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .split.reverse .split-media {
    order: 0;
  }
}
/* ---------------- lists with check ---------------- */
.check-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 14.8px;
}
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
/* ---------------- table ---------------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
table.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 520px;
}
table.info-table th, table.info-table td {
  text-align: left;
  padding: 18px 22px;
  border-bottom: 1px solid var(--blue-100);
  font-size: 14.8px;
}
table.info-table th {
  width: 200px;
  background: var(--blue-50);
  color: var(--blue-900);
  font-weight: 800;
  white-space: nowrap;
}
table.info-table tr:last-child th, table.info-table tr:last-child td {
  border-bottom: none;
}
@media (max-width:560px) {
  table.info-table {
    min-width: 0;
  }
  table.info-table th, table.info-table td {
    padding: 11px 9px;
    font-size: 12px;
  }
  table.info-table th {
    width: 82px;
    white-space: normal;
  }
}
/* pricing table */
table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
table.price-table th, table.price-table td {
  padding: 16px 20px;
  font-size: 14.6px;
  border-bottom: 1px solid var(--blue-100);
}
table.price-table thead th {
  background: var(--blue-700);
  color: #fff;
  font-weight: 800;
}
table.price-table tbody th {
  text-align: left;
  color: var(--blue-900);
  font-weight: 800;
  background: var(--blue-50);
  width: 45%;
}
table.price-table tbody td {
  color: var(--text-mid);
}
/* ---------------- steps ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-800));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 13.6px;
  color: var(--text-mid);
}
.step-arrow {
  display: none;
}
@media (min-width:901px) {
  .steps {
    position: relative;
  }
  .step:not(:last-child)::after {
    content: "›";
    position: absolute;
    top: 38px;
    right: -20px;
    font-size: 26px;
    font-weight: 900;
    color: var(--blue-400);
    z-index: 2;
  }
}
@media (max-width:900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width:560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
/* ---------------- feature rows (1 column + illustration) ---------------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(87, 203, 232, .16);
}
.feature-row .icon-circle-lg {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row h3 {
  font-size: 17.5px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 8px;
}
.feature-row p {
  font-size: 14.6px;
  color: var(--text-mid);
}
@media (max-width:600px) {
  .feature-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 26px 22px;
  }
}
/* ---------------- quick links (home) ---------------- */
.quicklink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width:920px) {
  .quicklink-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:560px) {
  .quicklink-grid {
    grid-template-columns: 1fr;
  }
}
.quicklink-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(87, 203, 232, .16);
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.quicklink-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.quicklink-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.quicklink-body {
  padding: 20px 20px 24px;
}
.quicklink-body h3 {
  font-size: 16.5px;
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.quicklink-body p {
  font-size: 13px;
  color: var(--text-mid);
}
.quicklink-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-weight: 800;
  color: var(--blue-700);
  font-size: 13px;
}
/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  margin-bottom: 6px;
}
.cta-banner .cta-subtitle {
  display: block;
  font-size: 15px;
  font-weight: 700;
  opacity: .92;
  margin-bottom: 14px;
}
.cta-banner p {
  opacity: .9;
  margin-bottom: 26px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
}
.cta-banner .btn-outline:hover {
  background: rgba(255, 255, 255, .15);
}
/* ---------------- area badges ---------------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.area-badge {
  background: #fff;
  border: 2px solid var(--blue-300);
  color: var(--blue-800);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
}
/* ---------------- forms ---------------- */
.form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width:600px) {
  .form-wrap {
    padding: 24px 18px;
  }
}
.form-row {
  margin-bottom: 24px;
}
.form-row label {
  display: block;
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 8px;
  font-size: 14.5px;
}
.form-row .required {
  color: #f2637e;
  font-size: 12px;
  font-weight: 800;
  margin-left: 6px;
}
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"], .form-row select, .form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--blue-200, #d5f0f8);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--blue-50);
  transition: border-color .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: #fff;
}
.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width:600px) {
  .form-row-inline {
    grid-template-columns: 1fr;
  }
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.6px;
  color: var(--text-mid);
}
.form-note {
  font-size: 12.8px;
  color: var(--text-soft);
  margin-top: 8px;
}
.form-success {
  display: none;
  background: var(--blue-50);
  border: 2px dashed var(--blue-400);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  color: var(--blue-900);
  font-weight: 700;
}
.form-success.is-visible {
  display: block;
}
.form-wrap.is-submitted form {
  display: none;
}
/* ---------------- contact quick cards ---------------- */
.contact-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width:820px) {
  .contact-quick {
    grid-template-columns: 1fr;
  }
}
.contact-quick .card {
  text-align: center;
}
.contact-quick .icon-circle {
  background: var(--blue-100);
}
.contact-quick a.value {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-800);
}
.contact-quick p.small {
  font-size: 12.6px;
  color: var(--text-soft);
  margin-top: 6px;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
/* ---------------- footer ---------------- */
.site-footer {
  background: var(--blue-900);
  color: #dff2f8;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .brand-text {
  color: #fff;
}
.footer-logo .brand-text strong {
  color: var(--blue-300);
}
.footer-col p {
  font-size: 13.6px;
  color: #bfe1ec;
}
.footer-col h3 {
  font-size: 14.5px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 14px;
  color: #cdeaf3;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact a {
  color: #fff;
  font-weight: 700;
}
.footer-contact p {
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
  padding: 20px 0;
  font-size: 12.5px;
  color: #9fd1e0;
}
@media (max-width:820px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
}
/* ---------------- utility ---------------- */
.mobile-break {
  display: none;
}
@media (max-width:600px) {
  .mobile-break {
    display: inline;
  }
}
.section-head-wide {
  max-width: none;
}
@media (min-width:601px) {
  .nowrap-desktop {
    white-space: nowrap;
  }
}
.card-text-sm .icon-card p {
  font-size: 12.3px;
  line-height: 1.55;
}
.card-text-sm .card {
  padding: 26px 16px;
}
/* ---------------- misc ---------------- */
.tag {
  display: inline-block;
  background: var(--accent-yellow);
  color: #7a5200;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.divider-dash {
  border: none;
  border-top: 2px dashed var(--blue-300);
  margin: 52px 0;
}
.philosophy-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.philosophy-box p {
  font-size: 16px;
  color: var(--text-mid);
}
.philosophy-box .big {
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 900;
  color: var(--blue-900);
  margin-bottom: 16px;
}