:root {
  --ink: #273257;
  --muted: #5d6784;
  --blue: #5f72d5;
  --blue-dark: #465bbd;
  --blue-soft: #eef5ff;
  --lavender: #eef0ff;
  --line: #cfd8f6;
  --paper: #fffdfb;
  --wash: #f6fbff;
  --pink: #df6d8c;
  --green: #79aa9a;
  --shadow: 0 14px 34px rgba(83, 102, 161, .13);
  --radius: 16px;
  --inner: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .03em;
  background:
    radial-gradient(circle at 10% 0%, rgba(206, 231, 255, .62), transparent 28rem),
    radial-gradient(circle at 90% 4%, rgba(215, 220, 255, .52), transparent 25rem),
    #f8fbff;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(249, 252, 255, .98));
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(75, 97, 143, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: var(--inner);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 245px;
  height: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
  padding: 26px 0 22px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  width: 32px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  position: relative;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}

.hamburger::before {
  top: 14px;
}

.hamburger span {
  top: 21px;
}

.hamburger::after {
  top: 28px;
}

.menu-open .hamburger::before {
  top: 21px;
  transform: rotate(45deg);
}

.menu-open .hamburger span {
  opacity: 0;
}

.menu-open .hamburger::after {
  top: 21px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #7f90e2, #5267c9);
  box-shadow: 0 10px 22px rgba(85, 102, 198, .24);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(85, 102, 198, .28);
}

.btn:active {
  transform: translateY(0);
}

.btn-outline {
  color: var(--blue-dark);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.btn-small {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 13px;
}

.btn-pink {
  background: linear-gradient(135deg, #df86a2, #c7567d);
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.page-hero,
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 247, 255, .9), rgba(255, 255, 255, .94)),
    var(--wash);
}

.page-hero::before,
.home-hero::before,
.soft-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .72;
  background:
    radial-gradient(ellipse at 16% 12%, rgba(181, 218, 250, .35) 0 24%, transparent 25%),
    radial-gradient(ellipse at 86% 0%, rgba(196, 200, 249, .36) 0 22%, transparent 23%),
    radial-gradient(ellipse at 55% 102%, rgba(190, 218, 255, .35) 0 22%, transparent 23%);
}

.home-hero-inner,
.page-hero-inner,
.section-inner {
  position: relative;
  width: var(--inner);
  margin: 0 auto;
}

.home-hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  align-items: center;
  gap: 24px;
  padding: 42px 0 34px;
}

.hero-copy {
  z-index: 2;
  padding-left: 4px;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 10px;
}

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

h1 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.35;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

h1 .accent,
h2 .accent,
.lead-accent {
  color: var(--blue);
}

.no-break {
  white-space: nowrap;
}

.hero-copy p {
  color: var(--ink);
  font-weight: 650;
  margin-bottom: 28px;
}

.hero-photo {
  position: relative;
  min-height: 340px;
  border-radius: 24px 24px 86px 24px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(74, 98, 145, .14);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center right;
}

.hero-bubble {
  position: absolute;
  top: 42px;
  left: 7%;
  right: auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
  background: rgba(255, 255, 255, .78);
  border: 2px solid rgba(117, 134, 214, .55);
  box-shadow: 0 10px 24px rgba(90, 111, 180, .12);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.hero-bubble::selection {
  background: transparent;
}

.home-notice-section {
  padding: 18px 0 8px;
  background: #fff;
}

.home-notice-band {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(185, 202, 245, .9);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(244, 249, 255, .96), rgba(255, 255, 255, .98)),
    var(--wash);
  box-shadow: 0 14px 30px rgba(73, 92, 145, .08);
}

.home-notice-heading p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.home-notice-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: .06em;
}

.home-notice-items {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.home-notice-item {
  display: grid;
  grid-template-columns: 88px 72px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 5px 0;
  color: var(--ink);
}

.home-notice-item time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.notice-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  background: rgba(232, 238, 255, .95);
}

.home-notice-item.is-important .notice-label {
  color: #9c5e79;
  background: rgba(255, 237, 244, .98);
}

.notice-title {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: normal;
}

.home-notice-link {
  justify-self: end;
  margin-top: 0;
  white-space: nowrap;
}

.hero-deco {
  position: absolute;
  width: 90px;
  pointer-events: none;
  opacity: .9;
  z-index: 3;
}

.deco-left {
  left: 2%;
  bottom: 28px;
}

.deco-right {
  right: 2%;
  bottom: 20px;
}

.page-hero-inner {
  min-height: 250px;
  padding: 46px 0 32px;
  display: grid;
  grid-template-columns: minmax(260px, .92fr) 1.2fr;
  align-items: center;
  gap: 34px;
}

.page-hero.compact .page-hero-inner {
  min-height: 190px;
}

.page-hero h1 {
  font-size: clamp(30px, 3.2vw, 42px);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  font-weight: 700;
}

.hero-animals {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  min-height: 190px;
}

.hero-animals img {
  width: var(--w, 130px);
  max-height: 205px;
  object-fit: contain;
}

.hero-animal-crop {
  display: block;
  flex: 0 0 auto;
  width: var(--w, 130px);
  aspect-ratio: 259 / 282;
  overflow: hidden;
}

.hero-animals .hero-animal-crop img {
  width: 100%;
  max-width: none;
  max-height: none;
  transform: translateY(-27.7%);
}

.hero-wide-photo {
  border-radius: 22px 22px 72px 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-wide-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.section {
  padding: 54px 0;
}

.section-tight {
  padding: 34px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 24px;
  letter-spacing: .1em;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("assets/icon-paw.png") center / contain no-repeat;
}

.lead {
  color: var(--muted);
  font-weight: 650;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 7px 20px rgba(75, 95, 150, .06);
}

.card-soft {
  background: linear-gradient(135deg, #fff, #f5f9ff);
}

.feature-card,
.service-card,
.guide-card {
  min-height: 150px;
}

.service-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
}

.grid-6 > .service-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.grid-6 > .service-card h3 {
  margin: 0;
  line-height: 1.45;
}

.service-card .icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service-card h3,
.guide-card h3,
.feature-card h3,
.news-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--ink);
}

.service-card p,
.guide-card p,
.feature-card p,
.news-card p,
.small-text {
  color: var(--muted);
  font-size: 13px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 13px;
}

.home-news-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-news-card h3 {
  margin: 0 0 2px;
}

.important-news {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #f5f9ff);
}

.important-news img {
  width: 96px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
}

.important-news h4 {
  margin: 0 0 4px;
  color: var(--blue-dark);
  font-size: 16px;
  line-height: 1.5;
}

.important-news p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.home-news-list {
  display: grid;
  gap: 2px;
}

.home-news-list a {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(195, 209, 244, .72);
}

.home-news-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.home-news-list strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.55;
}

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

.animal-pill {
  text-align: center;
  padding: 18px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.animal-pill img {
  width: 138px;
  height: 122px;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 0;
  background: transparent;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  align-items: center;
}

.split-card img {
  max-height: 190px;
  object-fit: contain;
  margin-left: auto;
}

.home-link-card {
  grid-template-columns: minmax(0, 1fr) 90px;
  min-height: 210px;
  align-items: center;
}

.home-link-card img {
  max-height: 116px;
}

.home-link-card h3,
.home-link-card p {
  word-break: keep-all;
  overflow-wrap: normal;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: start;
}

.director-card {
  grid-template-columns: minmax(0, 1fr) minmax(190px, .46fr);
  min-height: 0;
  align-items: center;
  padding: 30px;
}

.director-card img {
  width: min(100%, 240px);
  max-height: 250px;
  justify-self: center;
  align-self: end;
}

.clinic-feature-panel .grid-2 {
  gap: 12px;
}

.clinic-feature-panel .feature-card {
  padding: 18px;
  min-height: 132px;
}

.clinic-feature-panel .feature-card h3 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.service-detail-grid {
  grid-template-columns: minmax(220px, .9fr) minmax(420px, 1.35fr) minmax(220px, .9fr);
  align-items: stretch;
}

.exam-card .grid-3 {
  grid-template-columns: repeat(3, minmax(108px, 1fr));
}

.exam-card .animal-pill {
  display: grid;
  min-height: 158px;
  align-content: center;
}

.exam-card .animal-pill img {
  width: 92px;
  height: 86px;
}

.exam-card .animal-pill strong {
  display: block;
  white-space: nowrap;
  font-size: 16px;
}

.symptom-card .section-title {
  font-size: 22px;
  letter-spacing: .04em;
}

.symptom-card .section-title::before,
.symptom-card .section-title::after {
  width: 16px;
  height: 16px;
}

.age-management-grid {
  align-items: stretch;
}

.age-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  min-height: 420px;
  gap: 14px;
}

.age-card h3,
.age-card p,
.age-card li {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.age-card img {
  justify-self: end;
  width: min(62%, 190px);
  max-height: 190px;
  object-fit: contain;
}

.prevention-card {
  grid-template-columns: minmax(0, 1fr) 176px;
}

.prevention-card .section-title {
  justify-content: flex-start;
  font-size: 19px;
  letter-spacing: 0;
  white-space: nowrap;
}

.prevention-title {
  gap: 6px;
}

.prevention-card img {
  max-height: 170px;
}

@media (max-width: 1100px) {
  .service-detail-grid {
    grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  }

  .first-visit-card {
    grid-column: 1 / -1;
  }
}

.soft-band {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(242, 248, 255, .95), rgba(239, 241, 255, .92));
}

.soft-band-content {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr auto 130px;
  gap: 24px;
  align-items: center;
}

.soft-band-content .btn {
  white-space: nowrap;
}

.soft-band img {
  max-height: 112px;
  object-fit: contain;
}

.about-cta-band .soft-band-content {
  grid-template-columns: 112px minmax(0, 1fr) auto;
}

.about-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 12px;
  align-items: center;
  justify-content: end;
}

.about-cta-actions .btn {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .03em;
  white-space: nowrap;
}

.about-cta-actions .btn-outline {
  font-size: 13px;
  letter-spacing: .01em;
}

.about-cta-heading-line {
  display: inline;
}

.home-final-cta .cta-bird {
  width: 96px;
  height: 92px;
  object-fit: cover;
  object-position: center bottom;
}

.access-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 16px;
  align-items: start;
}

.map-frame,
.photo-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  min-height: 240px;
}

.map-frame iframe,
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  object-fit: cover;
}

.map-placeholder {
  width: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(91, 119, 211, .12) 1px, transparent 1px),
    linear-gradient(rgba(91, 119, 211, .12) 1px, transparent 1px),
    #eef4ff;
  background-size: 42px 42px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .08em;
}

.map-demo-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.footer {
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #eff6ff, #e8effd);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo img {
  width: 228px;
  margin-bottom: 10px;
}

.footer-phone {
  display: block;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  font-size: 13px;
}

.footer-nav strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.footer-nav a {
  display: block;
  color: var(--muted);
  line-height: 1.9;
}

.footer-animal {
  width: 110px;
  align-self: center;
  justify-self: end;
  display: none;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.footer-animal img {
  width: 96px;
  max-width: 100%;
  max-height: 92px;
  margin-left: auto;
  object-fit: contain;
  object-position: center;
}

.copyright {
  width: var(--inner);
  margin: 18px auto 0;
  color: #6a77a7;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  }

  .footer-animal {
    display: none;
  }
}

.hours-table,
.plan-table,
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 13px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.table-scroll .schedule-table {
  min-width: 760px;
}

.hours-table th,
.hours-table td,
.plan-table th,
.plan-table td,
.schedule-table th,
.schedule-table td {
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hours-table th,
.plan-table th,
.schedule-table th {
  color: var(--blue-dark);
  background: #f3f7ff;
}

.hours-table tr:last-child td,
.plan-table tr:last-child td,
.schedule-table tr:last-child td {
  border-bottom: 0;
}

.hours-table td:last-child,
.hours-table th:last-child,
.plan-table td:last-child,
.plan-table th:last-child,
.schedule-table td:last-child,
.schedule-table th:last-child {
  border-right: 0;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.flow-card {
  padding: 22px 16px;
  text-align: center;
}

.flow-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.flow-card .icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.notice-box {
  border-color: #f0bccb;
  background: linear-gradient(135deg, #fff, #fff5f8);
}

.notice-box h3,
.pink {
  color: var(--pink);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.required {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  border: 1px solid #ffc8d2;
  border-radius: 5px;
  color: #e15e7c;
  font-size: 12px;
  line-height: 1.6;
  background: #fff8fa;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border .15s ease, box-shadow .15s ease;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(95, 114, 213, .13);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  overflow-wrap: anywhere;
}

.checkbox-row input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: .28em;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid var(--line);
}

.form-status.show {
  display: block;
}

.form-demo-note {
  margin: -6px 0 20px;
  padding: 10px 14px;
  border: 1px solid rgba(95, 114, 213, .22);
  border-radius: 12px;
  color: var(--muted);
  background: var(--blue-soft);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.form-confirmation {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.form-confirmation[hidden] {
  display: none;
}

.form-confirmation h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 18px;
}

.form-confirmation p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.confirmation-list {
  display: grid;
  grid-template-columns: 10em minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  padding: 0;
}

.confirmation-list dt {
  color: var(--muted);
  font-weight: 800;
}

.confirmation-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.side-stack {
  display: grid;
  gap: 16px;
}

.phone-number {
  color: var(--blue-dark);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.guide-booking-cards > .card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.guide-booking-cards > .card > .btn,
.guide-booking-cards > .card > .phone-number {
  align-self: center;
  margin-top: auto;
  text-align: center;
}

.guide-booking-cards > .card > .phone-number {
  max-width: 100%;
  letter-spacing: .05em;
  font-size: clamp(24px, 2.4vw, 30px);
}

.blog-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.category-tab {
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.category-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #7f90e2, #5267c9);
  box-shadow: 0 10px 22px rgba(85, 102, 198, .2);
}

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

.news-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 16px;
}

.news-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 360px 1fr;
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.news-card.featured img {
  height: 210px;
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 1px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eef2ff;
  border: 1px solid var(--line);
}

.sidebar-title {
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.side-list {
  display: grid;
  gap: 12px;
}

.side-list a {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.side-list a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.side-list img {
  width: 74px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

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

.archive-list a {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 700;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.pagination a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 800;
}

.pagination .current {
  color: #fff;
  background: var(--blue);
}

.article-main {
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.breadcrumb {
  width: var(--inner);
  margin: 18px auto 0;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb.in-hero {
  width: auto;
  margin: 0 0 26px;
}

.contact-hero .page-hero-inner {
  min-height: 286px;
  grid-template-columns: minmax(320px, .9fr) minmax(560px, 1.35fr);
  gap: 30px;
  padding-top: 24px;
  padding-bottom: 20px;
}

.contact-hero-copy {
  align-self: stretch;
  display: grid;
  align-content: start;
  position: relative;
  min-height: 230px;
}

.contact-hero-copy h1 {
  font-size: clamp(30px, 2.8vw, 38px);
  white-space: nowrap;
  margin-bottom: 10px;
}

.contact-hero-copy > p:not(.breadcrumb) {
  color: var(--ink);
  font-weight: 750;
}

.contact-hero-animals {
  position: absolute;
  left: 45%;
  bottom: -18px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transform: translateX(-20%);
}

.contact-hero-animals img {
  width: var(--w, 90px);
  max-height: 128px;
  object-fit: contain;
}

.contact-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.contact-mini-card {
  padding: 20px 18px;
  min-height: 172px;
  text-align: center;
}

.contact-mini-card .icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin: 0 auto 4px;
}

.contact-mini-card h2 {
  color: var(--blue-dark);
  font-size: 18px;
  margin-bottom: 2px;
}

.contact-mini-card p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-mini-card .phone-number {
  font-size: 20px;
  letter-spacing: .04em;
  white-space: nowrap;
  display: block;
  margin: 2px 0;
}

@media (max-width: 1120px) and (min-width: 861px) {
  .contact-mini-card {
    padding-right: 12px;
    padding-left: 12px;
  }

  .contact-mini-card .phone-number {
    font-size: 18px;
    letter-spacing: .01em;
  }
}

.form-card {
  min-height: 0;
}

.form-card .form-grid {
  position: relative;
  z-index: 2;
}

.date-pair {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 10px;
}

.form-illust {
  position: absolute;
  right: 24px;
  bottom: 84px;
  width: 160px;
  opacity: .96;
  pointer-events: none;
}

.contact-first-visit-card {
  display: grid;
  gap: 16px;
}

.contact-first-visit-card .section-title {
  margin-bottom: 2px;
}

.contact-first-visit-card .check-list {
  min-width: 0;
  max-width: 100%;
  text-align: left;
}

.contact-first-visit-card .check-list li {
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
}

.flow-list {
  display: grid;
  gap: 14px;
}

.flow-list > div {
  display: grid;
  grid-template-columns: 34px 48px 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.flow-list .icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.flow-list strong {
  color: var(--blue-dark);
  font-size: 14px;
}

.flow-list p {
  grid-column: 3;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.phone-band {
  padding: 18px 24px;
}

.phone-band .soft-band-content {
  grid-template-columns: 120px 1fr 300px 90px;
}

.emergency-note {
  padding: 16px 18px;
  background: rgba(255, 255, 255, .78);
}

.emergency-note h3 {
  color: var(--pink);
  margin-bottom: 4px;
}

.article-title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.55;
  margin-bottom: 20px;
}

.article-cover {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px 18px 70px 18px;
  margin-bottom: 28px;
}

.article-body h2 {
  margin: 34px 0 12px;
  color: var(--blue-dark);
  font-size: 23px;
}

.article-body p {
  color: var(--ink);
}

.check-list,
.plain-list {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 18px;
  height: 18px;
  background: url("assets/icon-paw.png") center / contain no-repeat;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.guide-request-card .plain-list {
  max-width: 24em;
  margin: 0;
  text-align: left;
}

.guide-request-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.guide-request-card > div {
  min-width: 0;
}

.guide-request-card .section-title {
  margin-bottom: 14px;
}

.guide-request-card .plain-list li {
  padding-left: 20px;
  line-height: 1.85;
  word-break: normal;
  overflow-wrap: normal;
}

.guide-request-card .plain-list li::before {
  left: 3px;
}

.guide-request-card .keep-together {
  white-space: nowrap;
}

.info-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-row .card {
  text-align: center;
}

.info-row .icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.mobile-footer-accordion {
  display: none;
}

@media (max-width: 1100px) {
  :root {
    --inner: min(100% - 36px, 960px);
  }

  .global-nav {
    gap: 16px;
    font-size: 12px;
  }

  .logo img {
    width: 210px;
  }

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

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

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

@media (max-width: 860px) {
  :root {
    --inner: min(100% - 28px, 720px);
  }

  body {
    font-size: 14px;
  }

  .site-shell {
    box-shadow: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo img {
    width: 180px;
  }

  .global-nav {
    position: fixed;
    top: 68px;
    left: 50%;
    right: auto;
    display: none;
    width: var(--inner);
    padding: 12px 0 16px;
    background: rgba(255, 255, 255, .99);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 22px 38px rgba(73, 92, 145, .12);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(-50%);
  }

  .menu-open .global-nav {
    display: flex;
  }

  .global-nav a {
    width: 100%;
    padding: 13px 18px;
    border-bottom: 1px solid #edf1ff;
    color: var(--ink);
    white-space: nowrap;
  }

  .global-nav a::after {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .header-actions .btn {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .home-hero-inner,
  .page-hero-inner {
    display: block;
    padding: 28px 0 26px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    font-size: 32px;
  }

  .hero-copy p {
    margin-bottom: 20px;
  }

  .hero-photo {
    margin-top: 22px;
    min-height: 260px;
    border-radius: 22px 22px 58px 22px;
  }

  .hero-photo img {
    min-height: 260px;
    object-position: 72% center;
  }

  .hero-bubble {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 12px 14px 0;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.6;
  }

  .home-notice-section {
    padding: 14px 0 4px;
  }

  .home-notice-band {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    padding: 16px 18px;
  }

  .home-notice-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .home-notice-link {
    justify-self: start;
  }

  .hero-animals {
    margin-top: 10px;
    min-height: 140px;
    gap: 8px;
  }

  .hero-animals img {
    width: calc(var(--w, 110px) * .78);
  }

  .hero-animal-crop {
    width: calc(var(--w, 110px) * .78);
  }

  .section {
    padding: 38px 0;
  }

  .section-title {
    font-size: 20px;
  }

  .grid-2,
  .grid-3,
  .about-intro-grid,
  .service-detail-grid,
  .contact-layout,
  .blog-layout,
  .article-layout,
  .access-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    grid-template-columns: 64px 1fr;
    padding: 18px;
  }

  .service-card .icon {
    width: 58px;
    height: 58px;
  }

  .split-card,
  .soft-band-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .soft-band-content .btn {
    width: min(100%, 260px);
    justify-self: center;
  }

  .about-cta-band .soft-band-content {
    grid-template-columns: 1fr;
  }

  .about-cta-actions {
    width: 100%;
    max-width: 360px;
    grid-template-columns: 1fr;
    justify-self: center;
  }

  .about-cta-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .about-cta-band h2 {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: .02em;
  }

  .about-cta-heading-line {
    display: block;
  }

  .home-final-cta .soft-band-content {
    gap: 16px;
  }

  .home-final-cta .cta-dog {
    display: none;
  }

  .home-final-cta .cta-bird {
    object-fit: cover;
    object-position: center bottom;
  }

  .home-final-cta .cta-bird {
    height: 82px;
  }

  .contact-hero-animals .contact-bird {
    object-fit: contain;
    object-position: center bottom;
    height: 76px;
  }

  .split-card img,
  .soft-band img {
    margin: 0 auto;
  }

  .home-link-card,
  .director-card {
    min-height: 0;
  }

  .age-card {
    min-height: 0;
    text-align: left;
  }

  .age-card img {
    justify-self: center;
    width: min(70%, 210px);
  }

  .timeline,
  .news-grid,
  .info-row {
    grid-template-columns: 1fr;
  }

  .news-card,
  .news-card.featured {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .news-card.featured img {
    height: 210px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-nav {
    display: none;
  }

  .mobile-footer-accordion {
    display: grid;
    gap: 8px;
  }

  .footer-animal img {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  :root {
    --inner: min(100% - 22px, 390px);
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
  }

  .global-nav {
    top: 64px;
  }

  .logo img {
    width: 158px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn {
    padding: 8px 10px;
  }

  .home-hero-inner {
    min-height: auto;
  }

  .page-hero h1,
  h1 {
    font-size: 28px;
  }

  .section-title {
    gap: 6px;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .04em;
  }

  .section-title::before,
  .section-title::after {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .page-hero-inner {
    min-height: 0;
  }

  .hero-photo {
    margin-left: -11px;
    margin-right: -11px;
    border-radius: 0 0 44px 44px;
  }

  .hero-photo img {
    object-position: 70% center;
  }

  .home-notice-band {
    padding: 15px 14px;
    border-radius: 18px;
  }

  .home-notice-heading {
    display: block;
  }

  .home-notice-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 8px;
  }

  .notice-title {
    grid-column: 1 / -1;
  }

  .notice-label {
    justify-self: start;
    min-height: 22px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .notice-title {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-wide-photo img {
    height: 176px;
  }

  .hero-animals img {
    width: calc(var(--w, 110px) * .62);
  }

  .hero-animal-crop {
    width: calc(var(--w, 110px) * .62);
  }

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

  .about-intro-grid .grid-2,
  .about-feature-grid,
  .clinic-feature-panel .grid-2 {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 18px;
  }

  .animal-pill img {
    width: 118px;
    height: 104px;
  }

  .phone-number {
    font-size: 24px;
  }

  .category-tab {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 9px 10px;
    font-size: 12px;
  }

  .map-frame,
  .photo-frame,
  .map-frame iframe,
  .photo-frame img {
    min-height: 210px;
  }

  .table-scroll .schedule-table {
    min-width: 100%;
    font-size: 10px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 5px 3px;
  }

  .schedule-table .dot {
    width: 7px;
    height: 7px;
  }
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - 28px, 720px);
  }

  .contact-hero .page-hero-inner {
    display: block;
    width: min(100% - 28px, 720px);
    min-height: 0;
    padding-top: 18px;
  }

  .contact-hero-copy {
    min-height: 0;
    display: block;
  }

  .contact-hero-copy > p:not(.breadcrumb) {
    overflow-wrap: break-word;
  }

  .contact-hero-animals {
    position: static;
    justify-content: center;
    margin-top: 26px;
    margin-bottom: 28px;
    transform: none;
  }

  .contact-hero-cards {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
    min-width: 0;
  }

  .contact-mini-card {
    min-height: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 14px;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .contact-mini-card .icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .contact-mini-card .btn,
  .contact-mini-card .phone-number,
  .contact-mini-card .small-text {
    grid-column: 2;
    justify-self: stretch;
    min-width: 0;
    max-width: 100%;
  }

  .form-illust {
    display: none;
  }

  .date-pair {
    grid-template-columns: 1fr;
  }

  .phone-band .soft-band-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .page-hero {
    overflow: hidden;
  }

  .contact-hero .page-hero-inner {
    width: calc(100% - 22px);
  }

  .contact-layout {
    width: calc(100% - 22px);
  }

  .page-hero h1,
  .contact-hero-copy h1 {
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .contact-hero-copy h1 {
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: .04em;
  }

  .hero-animals {
    position: relative;
    left: -34px;
    width: 100%;
    justify-content: center;
    gap: 4px;
    overflow: visible;
  }

  .hero-animals img {
    width: calc(var(--w, 110px) * .58);
  }

  .hero-animal-crop {
    width: calc(var(--w, 110px) * .58);
  }

  .contact-hero-animals {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
    padding: 0 4px;
  }

  .contact-hero-animals img {
    width: calc(var(--w, 90px) * .74);
    min-width: 0;
    flex: 0 1 auto;
    max-height: 92px;
    object-fit: contain;
    object-position: center bottom;
  }

  .contact-hero-animals .contact-rabbit {
    display: none;
  }

  .contact-hero-animals .contact-bird {
    width: 58px;
    height: auto;
    max-width: 58px;
    max-height: 74px;
    object-fit: contain;
    object-position: center bottom;
  }

  .contact-mini-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 12px;
    padding: 18px 14px;
    max-width: calc(100vw - 22px);
  }

  .contact-hero-cards {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-mini-card .btn {
    width: min(100%, 240px);
    padding-right: 12px;
    padding-left: 12px;
    justify-self: start;
    white-space: nowrap;
  }

  .contact-mini-card .phone-number {
    font-size: 24px;
    letter-spacing: .02em;
  }

  .form-card {
    width: 100%;
    min-width: 0;
  }

  .field,
  .label-row,
  input,
  select,
  textarea {
    min-width: 0;
  }

  .label-row {
    gap: 8px;
  }

  .required {
    flex: 0 0 auto;
  }

  .checkbox-row {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .form-demo-note {
    text-align: left;
  }

  .form-confirmation {
    padding: 16px 14px;
  }

  .confirmation-list {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .confirmation-list dd {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(195, 209, 244, .55);
  }

  .confirmation-actions .btn {
    width: 100%;
  }
}

.demo-banner {
  padding: 8px 18px;
  color: #fff;
  background: linear-gradient(90deg, #465bbd, #79aa9a);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.demo-note {
  width: var(--inner);
  margin: 18px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(95, 114, 213, .22);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 760px) {
  .demo-banner {
    padding: 8px 14px;
    font-size: 11px;
    line-height: 1.6;
  }

  .demo-note {
    font-size: 11px;
    text-align: left;
  }
}
