:root {
  --ink: #20231f;
  --muted: #5c625d;
  --paper: #fbfaf6;
  --white: #ffffff;
  --mist: #eef2ef;
  --green: #254f45;
  --green-soft: #dce9e2;
  --cinnabar: #9f3f2f;
  --gold: #b88a3a;
  --line: #d8ddd6;
  --shadow: 0 18px 45px rgba(28, 32, 28, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(216, 221, 214, 0.9);
  backdrop-filter: blur(14px);
}

main {
  padding-top: 69px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 20px;
}

.brand strong {
  display: block;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 19px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.text-link,
.sub-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--green);
  background: var(--green-soft);
}

.header-cta {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.header-cta a {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta a:last-child {
  background: #108b57;
}

.quick-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

.button span,
.button strong {
  display: block;
}

.button span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.82;
}

.button strong {
  font-size: 15px;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.contact-list .button-primary {
  color: var(--white);
}

.button-line {
  color: var(--white);
  background: #108b57;
}

.button-soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.72);
}

.page {
  display: none;
}

.page.is-active {
  display: block;
}

.hero {
  min-height: 74svh;
  display: flex;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 90px) 70px;
  background-image: url("assets/hero-prayer.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 23, 18, 0.42);
}

.hero-inner {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cinnabar);
  font-weight: 800;
  font-size: 13px;
}

.hero .eyebrow {
  color: #f2d08f;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

h1 {
  font-size: 48px;
}

.hero h1 {
  margin-bottom: 12px;
  max-width: 840px;
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  font-size: 31px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: 20px;
}

.hero-contact-note {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.section {
  padding: 78px clamp(20px, 6vw, 90px);
}

.greeting-section {
  background: var(--paper);
}

.section-grid,
.contact-grid,
.table-section,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-grid > *,
.contact-grid > *,
.table-section > *,
.two-column > *,
.page-hero > * {
  min-width: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
}

.message {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.image-panel,
.wide-image {
  margin: 0;
}

.image-panel img,
.wide-image img,
.page-hero img {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 4 / 5;
}

.image-panel img.image-focus-priest {
  object-position: 50% 32%;
}

.wide-image img {
  aspect-ratio: 16 / 10;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.quick-contact,
.urgent-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--green);
  color: var(--white);
}

.quick-contact .eyebrow,
.urgent-box .eyebrow {
  color: #f4d89b;
}

.quick-contact p,
.urgent-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.83);
}

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

.mini-routes span,
.contact-list span,
.table-note,
.calm-copy,
.note-block p,
.three-points p,
.two-column p {
  color: var(--muted);
}

.mini-routes a,
.next-actions a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.activity-intro {
  display: grid;
  gap: 18px;
}

.activity-intro .wide-image img {
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.activity-band {
  background: var(--paper);
}

.social-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}

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

.mini-routes a {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 168px;
  padding: 26px 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(28, 32, 28, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mini-routes a::after {
  content: "→";
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.mini-routes a:hover,
.mini-routes a:focus-visible {
  border-color: rgba(37, 79, 69, 0.48);
  box-shadow: 0 18px 38px rgba(28, 32, 28, 0.12);
  transform: translateY(-2px);
}

.mini-routes strong {
  padding-right: 28px;
  font-size: 18px;
  line-height: 1.45;
}

.contact-list {
  display: grid;
  gap: 16px;
  align-content: center;
}

.contact-list p {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--green);
}

.contact-list a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.summary-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.summary-list div:last-child {
  border-bottom: 0;
}

.summary-list dt,
.summary-list dd {
  margin: 0;
}

.summary-list dt {
  color: var(--green);
  font-weight: 800;
}

.summary-list dd {
  color: var(--muted);
}

.contact-preview {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-details {
  display: grid;
  justify-items: center;
}

.contact-details .contact-list {
  width: min(760px, 100%);
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page:not(.page-home) > .section:last-child {
  padding-bottom: 150px;
}

.page-hero {
  padding: 78px clamp(20px, 6vw, 90px);
  display: grid;
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background: var(--mist);
}

.page-hero.compact {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.page-hero img {
  aspect-ratio: 16 / 11;
  max-height: 420px;
}

.note-block {
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--white);
}

.note-block h3 {
  margin-bottom: 12px;
}

.bio-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding-left: 1.15em;
  color: var(--muted);
  line-height: 1.75;
}

.history-section {
  background: var(--white);
  padding-bottom: 34px;
}

.history-timeline {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-timeline li {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.history-timeline li:last-child {
  border-bottom: 1px solid var(--line);
}

.history-timeline time {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.history-timeline h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.history-timeline p {
  color: var(--muted);
}

.priest-bio-section {
  padding-top: 8px;
  background: var(--white);
}

.bio-card {
  max-width: 980px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.bio-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
}

.bio-name {
  margin-top: 4px;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
}

.bio-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 44px);
  margin-top: 24px;
}

.bio-groups h4 {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0;
}

.bio-groups ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  list-style: none;
}

.detail-column,
.icotto-summary,
.section-actions {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-actions {
  justify-items: start;
}

#icotto .section-actions {
  justify-items: center;
}

.about-preview {
  align-items: stretch;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-preview > div {
  display: grid;
  gap: 18px;
  align-content: center;
}

.about-preview .wide-image img {
  height: 100%;
  min-height: 420px;
}

.fee-preview {
  align-items: stretch;
  background: var(--mist);
}

.fee-preview > div {
  display: grid;
  gap: 18px;
  align-content: center;
}

.fee-preview .section-heading {
  margin-bottom: 0;
}

.fee-preview .wide-image img {
  height: 100%;
  min-height: 430px;
}

.assurance-box {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.assurance-box p {
  color: var(--muted);
}

.memorial-message {
  align-items: start;
  padding-bottom: 24px;
}

.memorial-message .note-block {
  display: grid;
  gap: 12px;
}

.next-actions {
  display: grid;
  gap: 22px;
  padding-top: 18px;
  background: var(--paper);
}

.next-actions-heading {
  max-width: 680px;
}

.next-actions-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.next-action-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.next-action-list a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px 48px 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
}

.next-action-list a::after {
  content: "→";
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--green);
  font-weight: 800;
}

.next-action-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.next-action-list strong {
  color: var(--green);
  font-size: 17px;
}

.table-section {
  align-items: start;
}

.table-section.single {
  display: block;
  padding-top: 32px;
}

.table-section h2 {
  margin-bottom: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--green);
  background: var(--green-soft);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin-top: 14px;
}

.calm-copy {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.event-line-guide {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.event-line-guide p {
  max-width: 760px;
}

.three-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.three-points div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.three-points h2 {
  margin-bottom: 16px;
}

.support-message {
  align-items: start;
  background: var(--paper);
}

.support-message .note-block {
  display: grid;
  gap: 12px;
}

.support-points {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-flow {
  background: var(--white);
}

.support-flow .section-heading,
.support-flow .summary-list {
  max-width: 980px;
}

.support-cycle-section {
  background: var(--mist);
}

.support-cycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-cycle-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.support-cycle-card h3 {
  font-size: 22px;
}

.support-cycle-card p {
  color: var(--muted);
}

.grave-details,
.parking-guide-section {
  align-items: center;
}

.official-access-map {
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.official-access-map img {
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: none;
}

.map-section {
  background: var(--white);
}

.map-panel {
  width: min(1080px, 100%);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  border: 0;
}

.map-link {
  width: min(1080px, 100%);
  margin: 14px auto 0;
  font-size: 14px;
  text-align: right;
}

.map-link a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

.closing-message {
  display: grid;
  justify-items: center;
  background: var(--paper);
}

.closing-message .note-block {
  width: min(900px, 100%);
}

.closing-message .eyebrow {
  margin-bottom: 8px;
}

.closing-message h2 {
  margin-bottom: 12px;
}

.legal-section {
  max-width: 980px;
  margin-inline: auto;
}

.legal-list {
  margin-top: 0;
}

.sub-link {
  display: inline-block;
  margin-top: 14px;
}

.site-footer {
  padding: 26px clamp(20px, 6vw, 90px) 104px;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  font-size: 13px;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

.sticky-cta {
  position: fixed;
  right: clamp(20px, 4vw, 56px);
  bottom: 24px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(420px, calc(100vw - 40px));
  padding: 8px;
  background: rgba(251, 250, 246, 0.95);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(28, 32, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.sticky-cta a:last-child {
  background: #108b57;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--green);
    font-weight: 700;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    justify-content: start;
    flex-wrap: wrap;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .brand small {
    max-width: 180px;
  }

  .hero {
    min-height: 68svh;
    padding: 112px 20px 92px;
    background-size: auto 100%;
    background-position: 18% center;
  }

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

  .hero-inner {
    max-width: 350px;
  }

  h1 {
    font-size: 33px;
  }

  .page-hero h1 {
    font-size: 30px;
    line-break: anywhere;
    word-break: break-all;
  }

  .page-hero p {
    line-break: anywhere;
    word-break: break-all;
  }

  h2 {
    font-size: 26px;
  }

  .lead {
    font-size: 18px;
  }

  .section,
  .page-hero {
    padding: 52px 20px;
  }

  .section-grid,
  .contact-grid,
  .table-section,
  .two-column,
  .quick-contact,
  .urgent-box,
  .split-band,
  .page-hero.compact,
  .mini-routes,
  .next-actions,
  .next-action-list,
  .support-cycle-grid,
  .three-points {
    grid-template-columns: 1fr;
  }

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .fee-preview-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quick-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .page-hero img {
    max-height: none;
  }

  .history-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .history-timeline time {
    white-space: normal;
  }

  .bio-groups {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bio-card {
    padding: 24px;
  }

  .about-preview .wide-image img {
    min-height: 0;
  }

  .fee-preview .wide-image img {
    min-height: 0;
  }

  .table-section {
    overflow-x: visible;
  }

  table:not(.responsive-fee-table):not(.responsive-info-table) {
    min-width: 640px;
  }

  .table-section:has(table:not(.responsive-fee-table):not(.responsive-info-table)) {
    overflow-x: auto;
  }

  .responsive-fee-table,
  .responsive-info-table {
    display: block;
    min-width: 0;
    border: 0;
    background: transparent;
  }

  .responsive-fee-table thead,
  .responsive-info-table thead {
    display: none;
  }

  .responsive-fee-table tbody,
  .responsive-fee-table tr,
  .responsive-fee-table td,
  .responsive-info-table tbody,
  .responsive-info-table tr,
  .responsive-info-table td {
    display: block;
  }

  .responsive-fee-table tr,
  .responsive-info-table tr {
    margin-bottom: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .responsive-fee-table td,
  .responsive-info-table td {
    padding: 0;
    border: 0;
  }

  .responsive-fee-table td + td,
  .responsive-info-table td + td {
    margin-top: 10px;
  }

  .responsive-fee-table td::before,
  .responsive-info-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
  }

  .responsive-fee-table td:first-child {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.45;
  }

  .responsive-fee-table td:first-child::before {
    display: none;
  }

  .responsive-fee-table td:nth-child(2) {
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
  }

  .responsive-info-table td:first-child {
    color: var(--ink);
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.45;
  }

  .responsive-info-table td:first-child::before {
    display: none;
  }

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 94px;
  }

  .site-footer a {
    display: block;
    margin: 8px 0 0;
  }

  .sticky-cta {
    display: grid;
    left: 0;
    right: 0;
    bottom: 0;
    gap: 1px;
    width: auto;
    padding: 8px;
    background: rgba(251, 250, 246, 0.96);
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

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

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

  .button {
    width: 100%;
  }
}
