:root {
  --color-text: #1f3440;
  --color-muted: #65737a;
  --color-navy: #123e78;
  --color-blue: #1f73c9;
  --color-blue-dark: #103b68;
  --color-green: #29a968;
  --color-green-dark: #1d7e50;
  --color-cream: #f1e4d2;
  --color-orange: #f08a34;
  --color-bg: #f8fbfe;
  --color-soft: #eaf4fc;
  --color-line: #d6e8f3;
  --color-accent: #eef7fd;
  --shadow: 0 18px 42px rgba(18, 62, 120, 0.08);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-break: strict;
  line-height: 1.78;
  letter-spacing: 0;
}

body.has-mobile-cta {
  padding-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 252, 0.95);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 20px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-navy);
  white-space: nowrap;
}

.site-logo-mark {
  overflow: hidden;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(12, 44, 80, 0.18);
  border-radius: 14px;
  background: var(--color-navy);
  box-shadow: 0 8px 20px rgba(12, 44, 80, 0.15);
}

.site-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-logo-type {
  display: grid;
  gap: 1px;
  line-height: 1.25;
}

.site-logo-type strong {
  font-size: 20px;
  font-weight: 800;
}

.site-logo-type small {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 13px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--color-navy);
}

.header-actions,
.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header-actions {
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 7px 15px rgba(12, 44, 80, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn-large {
  min-height: 54px;
  padding: 13px 22px;
  font-size: 17px;
}

.btn-call {
  background: #748087;
}

.btn-line {
  background: var(--color-green);
  box-shadow: 0 12px 24px rgba(79, 107, 67, 0.2);
}

.btn-web {
  border-color: transparent;
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 10px 20px rgba(240, 138, 52, 0.18);
}

.btn-mail {
  background: #c95a4d;
  color: #fff;
  box-shadow: 0 10px 20px rgba(201, 90, 77, 0.18);
}

.btn:hover,
.home-visit-button:hover {
  transform: translateY(-1px);
}

.btn-primary-cta {
  min-width: 240px;
  padding-right: 26px;
  padding-left: 26px;
  font-size: 18px;
  box-shadow: 0 14px 26px rgba(79, 107, 67, 0.22);
}

.btn-outline {
  border-color: rgba(73, 96, 59, 0.28);
  background: #fffdf8;
  color: var(--color-green-dark);
  box-shadow: none;
}

.cta-actions {
  align-items: flex-start;
}

.cta-guidance {
  margin: -3px 0 12px;
  color: var(--color-blue-dark);
  font-size: 15px;
  font-weight: 900;
}

.cta-item {
  display: grid;
  gap: 6px;
  max-width: 230px;
}

.cta-item small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-alt {
  grid-column: 1 / -1;
  max-width: 430px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.contact-alt a,
.site-footer a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn:focus-visible,
.cta-item a:focus-visible,
.site-nav a:focus-visible,
.mobile-fixed-cta a:focus-visible,
.faq-list summary:focus-visible,
.menu-detail-card summary:focus-visible,
.home-visit-area summary:focus-visible {
  outline: 3px solid #f0c94d;
  outline-offset: 3px;
}

/* Shared sections */
.section,
.section-soft,
.hero {
  padding: 72px 20px;
}

.section-soft {
  background: var(--color-soft);
}

.section > *,
.section-soft > *,
.hero > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: var(--max-width);
  margin-bottom: 42px;
  text-align: center;
}

.section-heading p {
  margin-right: auto;
  margin-left: auto;
}

.section-heading h2,
.staff-text h2,
.reserve-box h2,
.final-cta h2 {
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 36px;
  line-height: 1.35;
}

.section-heading h2::after,
.staff-text h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-navy), #b8cdd4);
}

.section-heading p,
.staff-text p,
.reserve-box p {
  max-width: 760px;
  color: var(--color-muted);
}

.section-heading p {
  line-height: 1.75;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Image fallback */
.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(12, 44, 80, 0.08), rgba(111, 130, 140, 0.08)),
    #f7faf9;
}

.image-frame::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--color-blue-dark);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.image-frame.is-missing::after {
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-frame.is-missing img {
  visibility: hidden;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 96px);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 252, 0.92)),
    var(--color-soft);
}

.hero > * {
  max-width: none;
  margin: 0;
}

.hero-media {
  width: 100%;
}

.image-frame-large {
  height: min(66vh, 620px);
  min-height: 500px;
  border-radius: 0 22px 22px 0;
  border-left: 0;
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 620px;
  padding-right: max(20px, calc((100vw - var(--max-width)) / 2));
}

.hero h1 {
  margin-bottom: 16px;
  color: var(--color-navy);
  font-size: 44px;
  line-height: 1.28;
  text-wrap: balance;
}

.hero-copy {
  max-width: 32em;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-note {
  margin: 0 0 16px;
  padding: 11px 15px;
  border-left: 4px solid #b9d9ed;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-blue-dark);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(12, 44, 80, 0.05);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 6px 11px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-blue-dark);
  font-size: 14px;
  font-weight: 800;
}

.home-visit-section {
  padding: 18px 20px 10px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(214, 232, 243, 0.55);
}

.home-visit-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12, 44, 80, 0.055);
}

.home-visit-banner::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -34px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: rgba(184, 205, 212, 0.22);
  pointer-events: none;
}

.home-visit-label {
  margin-bottom: 8px;
  color: #287db3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.home-visit-title {
  margin-bottom: 8px;
  color: var(--color-navy);
  font-size: 24px;
  line-height: 1.42;
}

.home-visit-text {
  max-width: 620px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-visit-note {
  max-width: 720px;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.65;
}

.home-visit-area {
  max-width: 720px;
  margin-top: 10px;
}

.home-visit-area summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(98, 127, 78, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--color-green-dark);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.home-visit-area summary::-webkit-details-marker {
  display: none;
}

.home-visit-area summary::after {
  content: "+";
  font-size: 16px;
  line-height: 1;
}

.home-visit-area[open] summary::after {
  content: "-";
}

.home-visit-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.home-visit-area-list li {
  padding: 5px 10px;
  border: 1px solid rgba(98, 127, 78, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.home-visit-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 19px 10px 22px;
  border: 1px solid rgba(12, 44, 80, 0.18);
  border-radius: 999px;
  background: var(--color-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 16px rgba(12, 44, 80, 0.16);
  white-space: nowrap;
}

.home-visit-button::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

.home-visit-button:focus-visible {
  outline: 3px solid #f0c94d;
  outline-offset: 3px;
}

.sub-hero {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(250, 249, 244, 0.98), rgba(239, 246, 248, 0.9)),
    var(--color-soft);
}

.sub-hero-inner {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.sub-hero h1 {
  margin-bottom: 0;
  color: var(--color-text);
  font-size: 46px;
  line-height: 1.25;
}

.sub-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--color-muted);
  font-size: 19px;
}

.home-visit-detail-section {
  padding-top: 56px;
}

.home-visit-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-visit-detail-card,
.home-visit-info-box {
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(66, 72, 47, 0.06);
}

.home-visit-detail-card h2,
.home-visit-info-box h2 {
  margin-bottom: 10px;
  color: var(--color-blue-dark);
  font-size: 25px;
  line-height: 1.45;
}

.home-visit-detail-card p:not(.eyebrow),
.home-visit-info-box p {
  color: var(--color-muted);
}

.home-visit-hours {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.home-visit-hours div {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(98, 127, 78, 0.18);
  border-radius: 12px;
  background: #fffdf8;
}

.home-visit-hours dt {
  color: var(--color-green-dark);
  font-weight: 900;
}

.home-visit-hours dd {
  margin: 0;
  color: var(--color-blue-dark);
  font-weight: 800;
  line-height: 1.6;
}

.home-visit-info-box {
  max-width: var(--max-width);
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 231, 0.78)),
    #fff;
}

.home-visit-info-box .home-visit-area {
  margin-top: 16px;
}

.home-visit-info-box .home-visit-area-list li {
  background: #fff;
}

.home-visit-flow {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Concept */
.concept-section {
  padding: 78px 20px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, #123e78, #0d6ea0);
  color: #fff;
}

.concept-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.concept-section .eyebrow {
  color: var(--color-cream);
}

.concept-lead h2 {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.35;
}

.concept-copy {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.concept-points {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.concept-points article {
  display: grid;
  align-content: start;
  min-height: 174px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.concept-points span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--color-cream);
  font-weight: 900;
}

.concept-points h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.concept-points p {
  color: rgba(255, 255, 255, 0.82);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
  padding: 9px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.gallery-image {
  min-height: 180px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
}

.gallery-item figcaption {
  margin-top: 9px;
  color: var(--color-blue-dark);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

/* Cards and grids */
.concern-grid,
.reason-grid,
.menu-grid,
.menu-symbol-grid {
  display: grid;
  gap: 18px;
}

.concern-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.concern-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-navy);
  text-align: left;
  box-shadow: none;
}

.concern-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: #8fbdda;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.concern-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 22px;
  line-height: 1.35;
}

.concern-card p {
  position: relative;
  z-index: 1;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
}

.concern-card em {
  position: absolute;
  top: 30px;
  right: -20px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: #edf7fd;
  color: #75a9ca;
  font-size: 19px;
  font-style: normal;
  font-weight: 900;
}

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

.reason-card,
.menu-card,
.reserve-box,
.faq-list details,
.access-info {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 44, 80, 0.045);
}

.reason-card {
  padding: 24px;
}

.reason-number {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-green);
  font-weight: 900;
}

.reason-card h3,
.menu-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.45;
}

.reason-card p,
.menu-card p {
  color: var(--color-muted);
}

.reason-card p + p {
  margin-top: 10px;
}

.menu-grid,
.menu-symbol-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-symbol-grid {
  align-items: start;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.menu-card {
  overflow: hidden;
}

.menu-card .image-frame {
  min-height: 230px;
  border: 0;
  border-radius: 0;
}

.menu-card-body {
  padding: 24px;
}

.price {
  margin-top: 12px;
  color: var(--color-blue-dark) !important;
  font-size: 18px;
  font-weight: 900;
}

.menu-symbol-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 44, 80, 0.045);
}

@media (min-width: 821px) {
  .menu-symbol-card:not([open]) {
    height: 352px;
  }

  .menu-symbol-card:not([open]) summary,
  .menu-symbol-card:not([open]) .menu-symbol-body {
    height: 100%;
  }
}

.menu-detail-card {
  cursor: pointer;
}

.menu-detail-card summary {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 254px;
  list-style: none;
}

.menu-detail-card summary::-webkit-details-marker {
  display: none;
}

.menu-symbol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
}

.menu-symbol-tuning::before {
  background: linear-gradient(145deg, rgba(12, 44, 80, 0.08), transparent 58%);
}

.menu-symbol-warm::before {
  background: linear-gradient(145deg, rgba(184, 205, 212, 0.32), transparent 55%);
}

.menu-symbol {
  position: absolute;
  top: -20px;
  right: 18px;
  color: rgba(12, 44, 80, 0.08);
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
}

.menu-symbol-warm .menu-symbol {
  color: rgba(111, 130, 140, 0.12);
}

.menu-symbol-body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 254px;
  flex-direction: column;
  justify-content: flex-end;
}

.menu-label {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-blue-dark);
  font-size: 13px;
  font-weight: 900;
}

.menu-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.menu-label-row .menu-label {
  margin-bottom: 12px;
}

.menu-primary-label {
  margin-bottom: 12px;
  padding: 4px 9px;
  border: 1px solid rgba(12, 44, 80, 0.2);
  border-radius: 999px;
  background: rgba(12, 44, 80, 0.07);
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 800;
}

.menu-symbol-card h3 {
  margin-bottom: 2px;
  color: var(--color-blue-dark);
  font-size: 26px;
  line-height: 1.35;
}

.menu-english {
  margin-bottom: 12px;
  color: var(--color-blue) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.menu-symbol-card p {
  color: var(--color-muted);
}

.menu-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transform: translateY(10px);
  padding: 8px 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #fff;
  color: var(--color-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.menu-more-close {
  display: none;
}

.menu-detail-card[open] .menu-more-open {
  display: none;
}

.menu-detail-card[open] .menu-more-close {
  display: inline;
}

.menu-detail-body {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.menu-detail-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--color-muted);
}

.menu-detail-body li::marker {
  color: var(--color-green);
}

.menu-detail-expanded {
  display: grid;
  gap: 18px;
}

.menu-detail-image {
  min-height: 170px;
  border-radius: 12px;
}

.menu-detail-copy {
  display: grid;
  gap: 10px;
}

.menu-detail-copy h4,
.menu-detail-section h4 {
  margin: 0;
  color: var(--color-blue-dark);
  font-size: 18px;
  line-height: 1.55;
}

.menu-detail-copy p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

.menu-detail-section {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.menu-detail-section ul {
  font-size: 15px;
}

.menu-detail-notes {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-left: 3px solid #b8cdd4;
  background: var(--color-soft);
}

.menu-detail-notes p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Staff and flow */
.staff-section {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.staff-section > * {
  max-width: none;
  margin: 0;
}

.staff-photo {
  min-height: 390px;
}

.staff-name {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 24px;
  font-weight: 900;
}

.staff-meta {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-left: 4px solid #b8cdd4;
  background: var(--color-soft);
  color: var(--color-blue-dark);
  font-weight: 800;
}

.staff-profile-copy {
  display: grid;
  gap: 11px;
}

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

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.flow-timeline::before {
  display: none;
}

.flow-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(18, 62, 120, 0.05);
}

.flow-step:last-child {
  padding-bottom: 26px;
}

.flow-marker {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 115, 201, 0.18);
}

.flow-content {
  padding: 0;
}

.flow-content h3 {
  margin-bottom: 7px;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.45;
}

.flow-content p {
  color: var(--color-muted);
}

/* Reserve, FAQ and access */
.reserve-box {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
  padding: 28px;
}

.reserve-actions {
  justify-content: flex-start;
  min-width: 0;
}

.reserve-box > div {
  min-width: 0;
}

.reserve-box h2 {
  max-width: 720px;
}

.reserve-box > div:first-child p:not(.eyebrow) {
  max-width: 860px;
}

.reserve-actions .btn-primary-cta {
  min-width: 260px;
}

.reserve-actions .cta-item {
  max-width: 250px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  padding: 14px 17px;
}

.faq-list summary {
  min-height: 30px;
  cursor: pointer;
  color: var(--color-blue-dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

.faq-list p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-more {
  background: linear-gradient(135deg, #fff, var(--color-soft)) !important;
}

.faq-more > summary {
  color: var(--color-navy);
}

.faq-more-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.faq-more-list details {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

/* Insurance */
.insurance-section {
  background: #fff;
}

.insurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  margin-bottom: 20px;
}

.insurance-text,
.insurance-fee,
.insurance-card,
.insurance-notes {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 80, 92, 0.08);
}

.insurance-text {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--color-muted);
}

.insurance-fee {
  padding: 24px;
}

.insurance-fee h3,
.insurance-card h3 {
  margin-bottom: 14px;
  color: var(--color-blue-dark);
  font-size: 22px;
  line-height: 1.45;
}

.insurance-fee dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

.insurance-fee dt {
  color: var(--color-green-dark);
  font-weight: 900;
}

.insurance-fee dd {
  margin: 0;
  color: var(--color-muted);
}

.insurance-fee strong {
  color: var(--color-blue-dark);
  font-size: 20px;
}

.insurance-fee p {
  color: var(--color-muted);
}

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

.insurance-card {
  padding: 24px;
}

.insurance-card-muted {
  background: #f7fafb;
}

.insurance-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--color-muted);
}

.insurance-card li::marker {
  color: var(--color-green);
}

.insurance-notes {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  background: #f7fafb;
  color: var(--color-muted);
  font-size: 15px;
}

/* Blog preview */
.blog-section {
  background: linear-gradient(180deg, #f5f8f8 0%, #fdfcf8 100%);
}

.blog-intro {
  max-width: 880px;
  margin: 0 auto 18px;
  color: var(--color-muted);
  text-align: center;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 44, 80, 0.045);
}

.blog-category {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-card h3 {
  color: var(--color-blue-dark);
  font-size: 18px;
  line-height: 1.45;
}

.blog-card p:not(.blog-category) {
  color: var(--color-muted);
  font-size: 15px;
}

.blog-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 20px;
}

.blog-note {
  max-width: 820px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.access-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.access-info {
  padding: 24px;
}

.access-info h3 {
  margin-bottom: 10px;
  color: var(--color-blue-dark);
  font-size: 23px;
  line-height: 1.45;
}

.access-info p {
  margin-bottom: 18px;
  color: var(--color-muted);
}

.visit-note-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit-note-grid div {
  padding: 13px 14px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #f8fbfb;
}

.visit-note-grid span {
  display: block;
  margin-bottom: 3px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.visit-note-grid p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.visit-card {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(184, 205, 212, 0.24), rgba(255, 255, 255, 0.78)),
    #f8fbfb;
  box-shadow: 0 8px 22px rgba(12, 44, 80, 0.045);
}

.visit-card h3 {
  margin-bottom: 16px;
  color: var(--color-blue-dark);
  font-size: 24px;
  line-height: 1.45;
}

.visit-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2em;
  color: var(--color-muted);
  font-weight: 700;
}

.visit-card li::marker {
  color: var(--color-green);
}

.landmark-map {
  display: grid;
  gap: 10px;
  max-width: var(--max-width);
  margin-top: 20px;
}

.landmark-map-frame {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #f6f1e6;
  box-shadow: 0 8px 22px rgba(66, 72, 47, 0.055);
}

.landmark-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.landmark-map p {
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

.final-cta {
  padding: 92px 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #123e78 0%, #0f7ead 100%);
  color: #fff;
  text-align: center;
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.final-cta-inner p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 52px);
  text-wrap: balance;
}

.contact-card-grid {
  display: grid;
  width: min(100%, 920px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.contact-card-grid .cta-item {
  width: 100%;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  gap: 8px;
  padding: 23px 58px 23px 25px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 40px rgba(5, 30, 58, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(5, 30, 58, 0.24);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.contact-card strong {
  color: #fff;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.25;
}

.contact-card em {
  position: absolute;
  top: 50%;
  right: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}

.contact-card-web {
  background: var(--color-orange);
}

.contact-card-line {
  background: var(--color-green);
}

.contact-card-call {
  background: #092f55;
}

.contact-alt {
  margin-top: 2px;
  font-size: 13px;
}

.contact-alt a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 20px 92px;
  background: linear-gradient(135deg, var(--color-navy), #173a56);
  color: #fff;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(243, 228, 202, 0.34);
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand p {
  margin: 0;
}

.footer-brand strong {
  font-size: 19px;
}

.site-footer p + p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-fixed-cta {
  position: fixed;
  right: 12px;
  bottom: calc(env(safe-area-inset-bottom) + 10px);
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1.28fr 1fr 0.82fr;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 22px rgba(12, 44, 80, 0.14);
}

.mobile-fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.mobile-fixed-cta a:nth-child(1) {
  background: var(--color-green);
}

.mobile-fixed-cta a:nth-child(2) {
  background: var(--color-orange);
  color: #fff;
}

.mobile-fixed-cta a:nth-child(3) {
  background: #748087;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .image-frame-large {
    min-height: 420px;
    border-left: 1px solid var(--color-line);
    border-radius: var(--radius);
  }

  .hero-content {
    max-width: var(--max-width);
    padding: 0;
    margin: 0 auto;
  }

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

@media (max-width: 820px) {
  body,
  .site-header,
  main,
  .hero,
  .section,
  .section-soft,
  .concept-section,
  .home-visit-section,
  .final-cta,
  .site-footer {
    width: 100%;
    max-width: 100vw;
  }

  body {
    font-size: 16px;
    line-height: 1.72;
  }

  body.has-mobile-cta {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  body.is-final-cta-visible .mobile-fixed-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
  }

  .section,
  .section-soft,
  .concept-section,
  .hero {
    padding: 38px 18px;
  }

  .hero {
    padding-top: 24px;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    padding: 10px 16px 9px;
  }

  .site-logo {
    width: fit-content;
  }

  .site-logo-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .site-logo-type strong {
    font-size: 19px;
  }

  .site-logo-type small {
    font-size: 9px;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 10px;
    padding-bottom: 2px;
    font-size: 11px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .header-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 22px;
  }

  .hero-media {
    order: 4;
  }

  .image-frame-large {
    height: 238px;
    min-height: 0;
    max-height: none;
    border-radius: 16px;
  }

  .image-frame-large img {
    object-position: center 58%;
  }

  .hero h1 {
    margin-bottom: 8px;
    font-size: 26px;
    line-height: 1.34;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-item {
    max-width: none;
  }

  .cta-item .btn {
    width: 100%;
  }

  .cta-item small {
    padding: 0 4px;
  }

  .hero-content {
    display: contents;
  }

  .hero-content > * {
    width: min(100%, calc(100vw - 36px));
  }

  .hero-content .eyebrow {
    order: 1;
  }

  .hero-content h1 {
    order: 2;
  }

  .hero-content .cta-guidance {
    order: 3;
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-content .hero-actions {
    order: 4;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .hero-content .hero-note {
    order: 5;
    margin: 9px 0 0;
    padding: 9px 11px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-content .hero-points {
    order: 6;
    margin-top: 9px;
  }

  .hero-content .cta-item,
  .hero-content .btn-call {
    display: none;
  }

  .hero-content .btn-large {
    min-height: 50px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 16px;
  }

  .hero-points {
    display: flex;
    gap: 7px;
  }

  .hero-points li {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.35;
  }

  .home-visit-section {
    padding: 12px 16px 0;
    background: #fff;
  }

  .home-visit-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .home-visit-banner::after {
    top: -38px;
    right: -44px;
    width: 128px;
    height: 128px;
  }

  .home-visit-label {
    margin-bottom: 5px;
    font-size: 11px;
  }

  .home-visit-title {
    max-width: none;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.45;
  }

  .home-visit-text {
    font-size: 13px;
    line-height: 1.65;
  }

  .home-visit-button {
    width: 100%;
    min-height: 44px;
    white-space: normal;
  }

  .sub-hero h1 {
    font-size: 30px;
    line-height: 1.35;
  }

  .sub-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .sub-hero .btn-call {
    display: none;
  }

  .sub-hero .hero-actions {
    gap: 9px;
  }

  .home-visit-detail-grid {
    grid-template-columns: 1fr;
  }

  .home-visit-detail-card,
  .home-visit-info-box {
    padding: 22px;
  }

  .home-visit-detail-card h2,
  .home-visit-info-box h2 {
    font-size: 22px;
  }

  .section-heading h2,
  .concept-lead h2,
  .staff-text h2,
  .reserve-box h2,
  .final-cta h2 {
    font-size: 25px;
    line-height: 1.42;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p,
  .staff-text p,
  .reserve-box p,
  .concept-copy,
  .flow-content p,
  .faq-list p,
  .access-info p,
  .visit-card li {
    line-height: 1.72;
  }

  .concept-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .concept-copy {
    gap: 10px;
    font-size: 16px;
  }

  .concept-points article {
    min-height: 0;
    padding: 18px;
  }

  .concern-grid,
  .concept-inner,
  .concept-points,
  .insurance-layout,
  .insurance-grid,
  .blog-card-grid,
  .reason-grid,
  .menu-grid,
  .menu-symbol-grid,
  .staff-section,
  .reserve-box,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-item {
    padding: 8px;
  }

  .gallery-image {
    min-height: 126px;
  }

  .concern-grid {
    gap: 12px;
  }

  .concern-card {
    min-height: 142px;
    padding: 20px;
  }

  .concern-card span {
    margin-bottom: 26px;
    font-size: 12px;
  }

  .concern-card strong {
    font-size: 19px;
  }

  .concern-card p {
    padding-right: 60px;
    font-size: 13px;
  }

  .concern-card em {
    top: 24px;
    right: -18px;
    width: 92px;
    height: 92px;
    font-size: 16px;
  }

  .flow-timeline::before {
    display: none;
  }

  .flow-timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }

  .flow-marker {
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .flow-content h3 {
    margin-bottom: 4px;
    font-size: 18px;
  }

  .flow-content p {
    font-size: 14px;
  }

  .menu-symbol-card {
    min-height: 0;
    padding: 20px;
  }

  .menu-symbol-card:not([open]) {
    height: auto;
  }

  .menu-symbol-card:not([open]) summary,
  .menu-symbol-card:not([open]) .menu-symbol-body {
    height: 100%;
  }

  .menu-detail-card summary {
    min-height: 180px;
  }

  .menu-symbol {
    top: -14px;
    right: 14px;
    font-size: 120px;
  }

  .menu-symbol-body {
    min-height: 180px;
  }

  .staff-photo {
    min-height: 280px;
  }

  .visit-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .access-info,
  .visit-card {
    padding: 20px;
  }

  .access-info h3,
  .visit-card h3 {
    font-size: 21px;
  }

  .visit-note-grid div {
    padding: 10px 11px;
  }

  .visit-note-grid span {
    font-size: 12px;
  }

  .visit-note-grid p {
    font-size: 14px;
  }

  .reserve-box {
    padding: 20px;
    gap: 16px;
  }

  .reserve-actions {
    justify-content: stretch;
  }

  .reserve-actions .btn-primary-cta {
    min-width: 0;
  }

  .reserve-actions .btn-large,
  .final-cta .btn-large {
    min-height: 50px;
    font-size: 15px;
  }

  .contact-alt {
    max-width: none;
    font-size: 12px;
  }

  .final-cta {
    padding-top: 50px;
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .final-cta-inner {
    gap: 18px;
  }

  .contact-card-grid,
  .final-cta .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 9px;
  }

  .contact-card {
    min-height: 84px;
    padding: 18px 52px 18px 20px;
    border-radius: 16px;
  }

  .contact-card strong {
    font-size: 20px;
  }

  .contact-card em {
    right: 20px;
    font-size: 22px;
  }

  .mobile-fixed-cta {
    display: grid;
    right: 8px;
    left: 8px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 5px;
    max-width: calc(100vw - 16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-fixed-cta a {
    min-width: 0;
    min-height: 42px;
    font-size: 12px;
  }
}

@media (min-width: 821px) {
  body.has-mobile-cta {
    padding-bottom: 0;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 430px) {
  .site-logo {
    gap: 9px;
  }

  .site-logo-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 11px;
  }

  .site-logo-type strong {
    font-size: 18px;
  }

  .site-logo-type small {
    font-size: 9px;
  }

  .section,
  .section-soft,
  .concept-section,
  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .hero h1 {
    font-size: 27px;
  }

  .btn-large {
    font-size: 16px;
  }

  .faq-list details,
  .reason-card,
  .menu-card-body,
  .menu-symbol-card {
    padding: 18px;
  }

  .mobile-fixed-cta {
    right: 10px;
    left: 10px;
  }

  .mobile-fixed-cta a {
    min-height: 42px;
    font-size: 13px;
  }

  .visit-note-grid {
    grid-template-columns: 1fr;
  }
}
