:root {
  --navy: #062e5d;
  --navy-dark: #00254c;
  --gold: #b88a38;
  --gold-light: #d5b46c;
  --ink: #173451;
  --muted: #617080;
  --blue-light: #f1f7fb;
  --cream: #fffaf2;
  --line: rgba(11, 48, 83, 0.1);
  --shadow-soft: 0 14px 38px rgba(13, 46, 78, 0.09);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, "Noto Sans SC", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  color: white;
  background: var(--navy);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 138, 56, 0.42);
  outline-offset: 3px;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  height: 38px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(90deg, #001f43, var(--navy));
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
}

.topbar-contact {
  min-width: 365px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  white-space: nowrap;
}

.topbar-languages {
  color: rgba(255, 255, 255, 0.78);
}

.topbar .phone-icon--topbar {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
}

.header {
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 48, 83, 0.08);
  box-shadow: 0 7px 24px rgba(7, 38, 70, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  min-width: 172px;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

.nav {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.nav a {
  position: relative;
  color: #28445f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a.active::after {
  content: "";
  height: 2px;
  position: absolute;
  right: 20%;
  bottom: -12px;
  left: 20%;
  background: var(--gold);
}

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

.nav-item {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 13px;
}

.nav-submenu-toggle {
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: -7px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #496278;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.nav-submenu-toggle span {
  width: 6px;
  height: 6px;
  display: block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-item.open .nav-submenu-toggle span {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu {
  width: 292px;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding: 10px;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(11, 48, 83, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(0, 35, 74, 0.16);
  opacity: 0;
  transform: translate(-50%, -8px);
  transform-origin: top center;
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition: opacity 0.18s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-submenu--locations {
  width: 262px;
}

.nav-submenu--help {
  width: 238px;
}

.nav .nav-submenu a {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  color: #28445f;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: normal;
}

.nav .nav-submenu a:hover,
.nav .nav-submenu a:focus-visible {
  color: var(--navy);
  background: linear-gradient(90deg, #fff8e9, #f7fafc);
}

.nav .nav-submenu a strong {
  font-size: 12px;
  line-height: 1.25;
}

.nav .nav-submenu a small {
  flex: 0 0 auto;
  color: #9c7836;
  font-size: 10px;
  font-weight: 600;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu,
.nav-item.open .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: white;
  background: linear-gradient(135deg, #13ad61, #07944e);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(12, 154, 82, 0.2);
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(12, 154, 82, 0.27);
}

.menu-button {
  display: none;
}

.hero {
  min-height: 550px;
  position: relative;
  overflow: hidden;
  background: url("assets/hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  width: 112%;
  height: 42px;
  position: absolute;
  right: -6%;
  bottom: -1px;
  left: -6%;
  z-index: 1;
  background: white;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.hero-inner {
  min-height: 550px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 53%;
  max-width: 620px;
  padding: 52px 0 58px 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.24em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 18px 0 0;
  color: var(--navy);
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.7vw, 50px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.chinese {
  width: max-content;
  max-width: 100%;
  margin: 19px 0 0;
  color: #274965;
  font-family: "Songti SC", STSong, "Noto Serif SC", "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.chinese span {
  margin: 0 0.16em;
  color: var(--gold);
  font-size: 0.72em;
  vertical-align: 0.08em;
}

.hero-divider {
  width: min(310px, 84%);
  height: 13px;
  position: relative;
  overflow: hidden;
  display: block;
  margin-top: 5px;
  opacity: 0.78;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.hero-divider::before {
  width: 112%;
  height: 27px;
  position: absolute;
  top: -18px;
  left: -6%;
  content: "";
  border-bottom: 1.5px solid var(--gold);
  border-radius: 0 0 50% 50%;
  transform: rotate(-0.35deg);
  filter: drop-shadow(0 1px 1px rgba(182, 132, 42, 0.2));
}

.intro {
  max-width: 440px;
  margin: 12px 0 27px;
  color: #455f76;
  font-size: 16px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 12px;
}

.button {
  min-width: 170px;
  min-height: 59px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  box-shadow: 0 9px 23px rgba(4, 45, 92, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(4, 45, 92, 0.18);
}

.button > span {
  font-size: 22px;
}

.phone-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("assets/icons/phone-call.svg") center / contain no-repeat;
  mask: url("assets/icons/phone-call.svg") center / contain no-repeat;
}

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

.button small {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: normal;
}

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

.secondary {
  color: #8b641e;
  background: rgba(255, 255, 255, 0.94);
  border-color: #caa653;
}

.section {
  padding: 72px 0 80px;
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 620px;
  margin: 0 auto 40px;
  text-align: center;
}

.ornament {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 7px;
  object-fit: contain;
  opacity: 0.9;
}

.section-heading h2 {
  margin: 5px 0;
  color: var(--navy);
  font: bold clamp(34px, 3vw, 40px) / 1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -0.018em;
}

.section-heading p {
  margin: 9px 0 0;
  color: #6c7885;
  font: italic 15px/1.45 Georgia, serif;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.value {
  padding: 7px 24px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.value:last-child {
  border: 0;
}

.icon {
  width: 74px;
  height: 74px;
  position: relative;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, white, #fffaf0);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(112, 82, 27, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  bottom: -3px;
  left: 50%;
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.icon img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.value:hover .icon {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(112, 82, 27, 0.13);
}

.value h3 {
  margin: 0;
  font: bold 17px/1.25 Georgia, serif;
}

.value strong,
.card-content > strong {
  display: block;
  margin: 4px 0 7px;
  color: var(--gold);
  font-size: 12px;
}

.value p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.services {
  background: linear-gradient(180deg, #f4f9fc 0%, #edf5fa 100%);
  border-top: 1px solid rgba(11, 48, 83, 0.04);
  border-bottom: 1px solid rgba(11, 48, 83, 0.05);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid rgba(11, 48, 83, 0.08);
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(17, 55, 92, 0.075);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(17, 55, 92, 0.13);
}

.picture {
  width: 100%;
  height: auto;
  display: block;
  background: #f7f4ee;
  object-fit: contain;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 12px 19px;
  text-align: center;
}

.card-content h3 {
  margin: 0;
  font: bold 17px/1.2 Georgia, serif;
}

.card-content p {
  min-height: 52px;
  margin: 2px 0 15px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.card-content a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  color: white;
  background: linear-gradient(135deg, #c69a43, #ad7f2d);
  border-radius: 30px;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(184, 138, 56, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 18px rgba(184, 138, 56, 0.27);
}

.locations {
  background: linear-gradient(180deg, #fffdf8, var(--cream));
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location {
  height: 270px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 48, 83, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.location-picture {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.location-picture--melaka {
  object-position: center 30%;
  transform-origin: center 30%;
}

.location:hover .location-picture {
  transform: scale(1.035);
}

.location-text {
  min-height: 118px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 42px 22px 20px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 42, 88, 0.98));
}

.location-text strong,
.location-text small {
  display: block;
}

.location-text strong {
  font: bold 23px/1 Georgia, serif;
}

.location-text small {
  margin-top: 5px;
  font-size: 12px;
}

.location-text b {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  position: relative;
  align-self: flex-end;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-size: 0;
  line-height: 1;
}

.location-text b::before,
.location-text b::after {
  width: 8px;
  height: 2px;
  position: absolute;
  top: 13px;
  left: 9px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform-origin: right center;
}

.location-text b::before {
  transform: rotate(45deg);
}

.location-text b::after {
  transform: rotate(-45deg);
}

.reviews {
  background: #fff;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-grid figure {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 28px 28px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fffdf8);
  border: 1px solid #eee7da;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(33, 52, 76, 0.06);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.review-grid figure::after {
  height: 3px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.review-grid figure > div {
  color: #c6973e;
  letter-spacing: 3px;
  transition: color 0.28s ease, transform 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .review-grid figure:hover {
    background: linear-gradient(180deg, #fff, #fffaf0);
    border-color: rgba(198, 151, 62, 0.48);
    box-shadow: 0 18px 38px rgba(27, 51, 79, 0.14);
    transform: translateY(-7px);
  }

  .review-grid figure:hover::after {
    transform: scaleX(1);
  }

  .review-grid figure:hover > div {
    color: #b78125;
    transform: translateY(-1px) scale(1.035);
  }
}

.review-grid blockquote {
  margin: 14px 0;
  color: #3b4b5d;
  font: italic 15px/1.55 Georgia, serif;
}

.review-grid figcaption {
  color: #6a7580;
  font-size: 11.5px;
}

.review-source-note {
  max-width: 760px;
  margin: 20px auto 0;
  color: #7b8792;
  font-size: 11.5px;
  line-height: 1.6;
  text-align: center;
}

.faq {
  background:
    radial-gradient(circle at 12% 15%, rgba(213, 180, 108, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f9fb, #eef5f9);
  border-top: 1px solid rgba(11, 48, 83, 0.05);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.6fr);
  align-items: start;
  gap: 28px;
}

.faq-guide {
  padding: 31px 30px 29px;
  position: sticky;
  top: 108px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(213, 180, 108, 0.2), transparent 34%),
    linear-gradient(145deg, #063768, #001f43);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 35, 74, 0.17);
}

.faq-guide::after {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  right: -70px;
  bottom: -70px;
  border: 1px solid rgba(213, 180, 108, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(213, 180, 108, 0.035);
  pointer-events: none;
}

.faq-kicker {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.faq-guide h3 {
  max-width: 250px;
  margin: 10px 0 12px;
  font: bold 29px/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.faq-guide > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.65;
}

.faq-guide ul {
  margin: 23px 0 24px;
  padding: 0;
  list-style: none;
}

.faq-guide li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-guide li > span {
  color: var(--gold-light);
  font: 11px/1 Georgia, serif;
}

.faq-guide li strong,
.faq-guide li small {
  display: block;
}

.faq-guide li strong {
  font-size: 12px;
  line-height: 1.25;
}

.faq-guide li small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: normal;
}

.faq-guide-actions {
  display: flex;
  gap: 8px;
}

.faq-guide-actions a {
  min-height: 44px;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  color: var(--navy-dark);
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-guide-actions .phone-icon--small {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
  margin-right: 6px;
}

.inline-whatsapp-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: block;
  margin-right: 6px;
}

.faq-guide-actions a + a {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

.faq-availability {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9.5px;
  text-align: center;
}

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

.faq-list details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17, 55, 92, 0.055);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: rgba(184, 138, 56, 0.34);
  box-shadow: 0 13px 30px rgba(17, 55, 92, 0.085);
}

.faq-list summary {
  min-height: 67px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 72px 15px 68px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: attr(data-number);
  position: absolute;
  left: 23px;
  color: var(--gold);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.04em;
}

.faq-list summary > span,
.faq-list summary strong,
.faq-list summary small {
  display: block;
}

.faq-list summary strong {
  font: bold 16px/1.4 Georgia, "Times New Roman", serif;
}

.faq-list summary small {
  margin-top: 4px;
  color: #7a8793;
  font-size: 11.5px;
  font-weight: 500;
}

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  position: absolute;
  right: 20px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.35);
  border-radius: 50%;
  font: 22px/1 Arial, sans-serif;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  transform: rotate(180deg);
}

.faq-answer {
  margin: 0 24px 0 68px;
  padding: 0 48px 20px 0;
  border-top: 1px solid rgba(11, 48, 83, 0.08);
}

.faq-answer p {
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-answer .faq-answer-zh {
  margin-top: 11px;
  padding-top: 11px;
  color: #405a72;
  border-top: 1px dashed rgba(11, 48, 83, 0.13);
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 13.5px;
  line-height: 1.85;
  letter-spacing: 0.015em;
}

.careline {
  color: white;
  background: linear-gradient(110deg, #001f43, #06396d);
  border-top: 3px solid var(--gold);
  scroll-margin-top: 96px;
}

.careline-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: center;
  gap: 40px;
}

.phone-block,
.place {
  display: flex;
  align-items: center;
  gap: 17px;
}

.phone-block > span {
  color: var(--gold-light);
  font-size: 48px;
}

.phone-block > .phone-icon--large {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.phone-block p {
  margin: 0 0 3px;
  color: var(--gold-light);
  font: 16px/1 Georgia, serif;
}

.phone-block strong {
  display: block;
  font-size: 38px;
  letter-spacing: 0.015em;
}

.phone-block small,
.place small {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  opacity: 0.7;
}

.place {
  font-size: 13px;
}

.place > span {
  display: block;
}

footer {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 35%, rgba(213, 180, 108, 0.08), transparent 26%),
    linear-gradient(125deg, #001d3e, #002d59 72%, #00264e);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer::before {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  right: -90px;
  bottom: -100px;
  border: 1px solid rgba(213, 180, 108, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(213, 180, 108, 0.025), 0 0 0 64px rgba(213, 180, 108, 0.018);
  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) 0.65fr 0.9fr 1.15fr;
  gap: clamp(34px, 5vw, 72px);
  padding-top: 58px;
  padding-bottom: 52px;
}

.footer-logo {
  width: max-content;
  min-width: 0;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(0, 15, 36, 0.16);
}

.footer-logo .brand-logo {
  width: 184px;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 15px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.75;
}

.footer-motto {
  color: var(--gold-light);
  font: italic 13px/1.4 Georgia, serif;
  letter-spacing: 0.025em;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 4px;
  font-style: normal;
  font-size: 12.5px;
}

.footer-column h3 {
  margin: 0 0 9px;
  padding-bottom: 10px;
  position: relative;
  color: white;
  font: bold 16px/1.2 Georgia, serif;
  letter-spacing: 0.02em;
}

.footer-column h3::after {
  content: "";
  width: 28px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold-light);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact > a,
.footer-contact > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact > a span,
.footer-contact > span i {
  width: 24px;
  color: var(--gold-light);
  font-size: 15px;
  font-style: normal;
  text-align: center;
}

.footer-contact > a .phone-icon--footer {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-contact strong {
  color: white;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.footer-contact small {
  margin: 2px 0 0 33px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10.5px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom .container {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-legal-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

.footer-legal-links a + a::before {
  width: 2px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -10px;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateY(-50%);
}

.footer-legal-links a:hover {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.floating-whatsapp-label {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  margin-right: -10px;
  padding: 7px 25px 7px 15px;
  background: linear-gradient(135deg, #082f59, #0b4579);
  border: 1px solid rgba(213, 180, 108, 0.5);
  border-radius: 999px 0 0 999px;
  box-shadow: 0 10px 25px rgba(0, 31, 67, 0.25);
}

.floating-whatsapp-label strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.15;
}

.floating-whatsapp-label strong::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  content: "";
  background: #ff6158;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 97, 88, 0.14);
}

.floating-whatsapp-label small {
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.floating-whatsapp-icon {
  width: 56px;
  height: 56px;
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  isolation: isolate;
  background: linear-gradient(145deg, #2cdb70, #16ad55);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(37, 211, 102, 0.12),
    0 12px 30px rgba(5, 102, 55, 0.34);
  transition: box-shadow 0.2s ease;
}

.floating-whatsapp-icon::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  border: 2px solid rgba(37, 211, 102, 0.72);
  border-radius: 50%;
  animation: emergency-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes emergency-pulse {
  0% {
    opacity: 0.78;
    transform: scale(0.92);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.58);
  }
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp:hover .floating-whatsapp-icon {
  box-shadow:
    0 0 0 8px rgba(37, 211, 102, 0.16),
    0 15px 34px rgba(5, 102, 55, 0.4);
}

.floating-whatsapp-icon img {
  width: 26px;
  height: 26px;
  display: block;
}

/* Legal pages */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 56px;
  background:
    radial-gradient(circle at 88% 12%, rgba(213, 180, 108, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdf8, #f1f6fa);
  border-bottom: 1px solid rgba(11, 48, 83, 0.07);
}

.legal-hero::after {
  width: 230px;
  height: 230px;
  position: absolute;
  right: -105px;
  bottom: -155px;
  content: "";
  border: 1px solid rgba(184, 138, 56, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(184, 138, 56, 0.025);
  pointer-events: none;
}

.legal-hero .breadcrumb {
  margin-bottom: 27px;
}

.legal-hero h1 {
  margin: 15px 0 0;
  color: var(--navy);
  font: 600 clamp(42px, 5vw, 60px) / 1.05 "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.035em;
}

.legal-section {
  padding: 70px 0 88px;
  background: #f7f9fb;
}

.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.legal-nav {
  position: sticky;
  top: 126px;
  display: grid;
  overflow: hidden;
  background: white;
  border: 1px solid #e7e9eb;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(25, 47, 70, 0.07);
}

.legal-nav > span {
  padding: 17px 19px 12px;
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.legal-nav a {
  padding: 14px 19px;
  color: #5d6d7b;
  border-top: 1px solid #edf0f2;
  font-size: 12.5px;
  font-weight: 700;
}

.legal-nav a[aria-current="page"] {
  color: white;
  background: linear-gradient(135deg, #0a3a6d, #06284f);
}

.legal-document {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  background: white;
  border: 1px solid #e7e9eb;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(25, 47, 70, 0.07);
}

.legal-text {
  max-width: 100%;
  color: #3f5263;
  font-family: Arial, Helvetica, sans-serif;
  overflow-wrap: anywhere;
}

.legal-text h2 {
  margin: 0 0 30px;
  color: var(--navy);
  font: 600 31px/1.2 "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.02em;
}

.legal-text h3 {
  margin: 38px 0 17px;
  padding-bottom: 11px;
  color: var(--navy);
  border-bottom: 1px solid rgba(184, 138, 56, 0.25);
  font: 700 17px/1.35 "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: 0.02em;
}

.legal-text p {
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 1.9;
}

.legal-text .legal-clause {
  margin-top: 21px;
  margin-bottom: 18px;
}

.legal-text .legal-subclause {
  margin-bottom: 13px;
  padding-left: 19px;
  text-indent: -19px;
}

.legal-text .legal-emphasis {
  margin: 25px 0;
  padding: 20px 22px;
  color: #173c60;
  background: #f4f8fb;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.85;
}

.legal-text .legal-space {
  height: 12px;
}

/* Shared inner-page system */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(213, 180, 108, 0.16), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f3f8fb 100%);
  border-bottom: 1px solid rgba(11, 48, 83, 0.07);
}

.page-hero::after {
  width: 260px;
  height: 260px;
  position: absolute;
  right: -130px;
  bottom: -170px;
  content: "";
  border: 1px solid rgba(184, 138, 56, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(184, 138, 56, 0.025);
  pointer-events: none;
}

.page-hero-grid {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 94px);
  padding-top: 48px;
  padding-bottom: 48px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
  color: #73808c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span:not(:last-child) {
  opacity: 0.48;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.page-hero h1 {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--navy);
  font: 600 clamp(42px, 5vw, 60px) / 1.03 "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  letter-spacing: -0.035em;
}

.page-title-zh {
  margin: 12px 0 0;
  color: #406078;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.page-lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: #526a7e;
  font-size: 16px;
  line-height: 1.75;
}

.page-hero-media {
  height: 330px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #eee8dc;
  border: 7px solid white;
  border-radius: 16px 16px 78px 16px;
  box-shadow: 0 24px 54px rgba(11, 48, 83, 0.16);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 56%, rgba(0, 42, 88, 0.26));
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-media--melaka img {
  object-position: center 25%;
}

.page-section {
  padding: 78px 0 84px;
}

.page-section--soft {
  background: linear-gradient(180deg, #f4f9fc, #edf5fa);
  border-top: 1px solid rgba(11, 48, 83, 0.05);
  border-bottom: 1px solid rgba(11, 48, 83, 0.05);
}

.page-section--cream {
  background: linear-gradient(180deg, #fffdf9, #fff9ef);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.about-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.about-photo-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #e7e1d6;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(17, 55, 92, 0.1);
  isolation: isolate;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.about-photo-card::after {
  position: absolute;
  z-index: 1;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 31, 64, 0.8));
  pointer-events: none;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.99);
  transition: filter 400ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-photo-card:first-child img {
  object-position: center 52%;
}

.about-photo-card:last-child img {
  object-position: center 50%;
}

.about-photo-card figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.46);
}

.about-photo-card figcaption strong {
  font: bold 16px/1.22 Georgia, "Times New Roman", serif;
}

.about-photo-card figcaption span {
  flex: 0 0 auto;
  color: #f2dca8;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.content-copy h2,
.page-section-heading h2 {
  margin: 0;
  color: var(--navy);
  font: bold clamp(30px, 3.2vw, 42px) / 1.1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.content-copy h3 {
  margin: 30px 0 10px;
  color: var(--navy);
  font: bold 21px/1.3 Georgia, serif;
}

.content-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.content-copy p a {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid rgba(184, 138, 56, 0.55);
  transition: color 180ms ease, border-color 180ms ease;
}

.content-copy p a:hover {
  color: var(--gold);
  border-color: currentColor;
}

.content-copy .lead-copy {
  margin-top: 16px;
  color: #38546d;
  font: 18px/1.75 Georgia, serif;
}

.detail-panel {
  padding: 30px;
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(213, 180, 108, 0.2), transparent 35%),
    linear-gradient(145deg, #063768, #001f43);
  border-radius: 13px;
  box-shadow: 0 18px 42px rgba(0, 35, 74, 0.17);
}

.detail-panel > span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.detail-panel h3 {
  margin: 10px 0 18px;
  font: bold 26px/1.15 Georgia, serif;
}

.detail-panel .location-address {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.65;
}

.detail-panel .location-address strong {
  color: white;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 13px 0 13px 27px;
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.55;
}

.detail-list li::before {
  width: 7px;
  height: 7px;
  position: absolute;
  top: 20px;
  left: 3px;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(213, 180, 108, 0.12);
}

.detail-panel .whatsapp {
  width: 100%;
  margin-top: 22px;
}

.page-section-heading {
  max-width: 650px;
  margin: 0 auto 38px;
  text-align: center;
}

.page-section-heading p {
  margin: 10px 0 0;
  color: #6c7885;
  font: italic 15px/1.5 Georgia, serif;
}

.location-gallery-section {
  overflow: hidden;
}

.location-gallery-heading {
  max-width: 720px;
}

.location-gallery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: #a8751f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.location-gallery-kicker::before,
.location-gallery-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.7);
}

.location-photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(180px, 17vw, 215px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.location-photo {
  position: relative;
  min-width: 0;
  grid-column: span 3;
  overflow: hidden;
  margin: 0;
  background: #d8d0c2;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 13px 30px rgba(17, 55, 92, 0.1);
  isolation: isolate;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.location-photo--feature {
  grid-column: span 6;
  grid-row: span 2;
}

.location-photo--wide {
  grid-column: span 6;
}

.location-photo--portrait {
  grid-row: span 2;
}

.location-photo::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 28, 59, 0.76));
  pointer-events: none;
}

.location-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.location-photo--trim-right img {
  width: 108%;
  max-width: none;
  object-position: left center;
}

.location-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: white;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.4);
}

.location-photo figcaption strong {
  font: bold 17px/1.2 Georgia, "Times New Roman", serif;
}

.location-photo figcaption span {
  flex: 0 0 auto;
  color: #f0d79f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.location-gallery-note {
  max-width: 760px;
  margin: 23px auto 0;
  color: #74808b;
  font-size: 11.5px;
  line-height: 1.7;
  text-align: center;
}

.location-gallery-group-heading {
  max-width: 820px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin: 0 0 22px;
}

.location-gallery-group-heading > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  color: #a8751f;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 138, 56, 0.38);
  border-radius: 50%;
  font: bold 12px/1 Georgia, serif;
  box-shadow: 0 8px 20px rgba(17, 55, 92, 0.06);
}

.location-gallery-group-heading h3 {
  margin: -2px 0 5px;
  color: var(--navy);
  font: bold clamp(23px, 2.4vw, 30px) / 1.2 Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}

.location-gallery-group-heading p {
  margin: 0;
  color: #697783;
  font-size: 13px;
  line-height: 1.65;
}

.location-gallery-group--secondary {
  margin-top: 58px;
  padding-top: 48px;
  border-top: 1px solid rgba(184, 138, 56, 0.24);
}

.location-photo-grid--compact {
  grid-auto-rows: clamp(190px, 18vw, 225px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-photo-grid--compact .location-photo {
  grid-column: span 1;
}

.location-photo-grid--compact .location-photo figcaption {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.location-photo-grid--compact .location-photo figcaption strong {
  font-size: 15px;
}

.service-story-section {
  overflow: hidden;
}

.service-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.service-story-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: #e8e2d7;
  border: 7px solid white;
  border-radius: 16px 16px 62px 16px;
  box-shadow: 0 24px 54px rgba(11, 48, 83, 0.14);
  isolation: isolate;
}

.service-story-media::after {
  position: absolute;
  z-index: 1;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 28, 59, 0.72));
  pointer-events: none;
}

.service-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-story-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  color: white;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.4);
}

.service-story-media figcaption strong {
  font: bold 18px/1.2 Georgia, "Times New Roman", serif;
}

.service-story-media figcaption span {
  flex: 0 0 auto;
  color: #f0d79f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.service-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #a8751f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.service-story-kicker::after {
  width: 38px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.65);
}

.service-story-copy h2 {
  margin: 15px 0 22px;
  color: var(--navy);
  font: bold clamp(30px, 3.2vw, 42px) / 1.16 Georgia, "Songti SC", STSong, serif;
  letter-spacing: -0.02em;
}

.service-story-copy p {
  margin: 0 0 17px;
  color: #536a7d;
  font-size: 15px;
  line-height: 1.95;
}

.service-story-copy p:first-of-type {
  color: #38546d;
  font-size: 15.5px;
}

.service-story-copy p:last-child {
  margin-bottom: 0;
}

/* Burial plots editorial page */
.page-hero-media--burial img {
  object-position: center 56%;
}

.service-story-media--burial img {
  object-position: center 54%;
}

.burial-types-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(213, 180, 108, 0.1), transparent 24%),
    #fff;
}

.burial-section-heading {
  max-width: 790px;
}

.burial-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #a8751f;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.burial-section-kicker::before,
.burial-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

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

.burial-type-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(17, 55, 92, 0.09);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.burial-type-media {
  min-height: 302px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #ded7cb;
}

.burial-type-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(0, 31, 67, 0.02), rgba(0, 31, 67, 0.22));
  pointer-events: none;
}

.burial-type-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.burial-type-card:nth-child(1) .burial-type-media img {
  object-position: center 56%;
}

.burial-type-card:nth-child(2) .burial-type-media img {
  object-position: 54% 52%;
}

.burial-type-card:nth-child(3) .burial-type-media img {
  object-position: 47% 55%;
}

.burial-type-card:nth-child(4) .burial-type-media img {
  object-position: center 48%;
}

.burial-type-media > span {
  width: 39px;
  height: 39px;
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(0, 38, 79, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 18px rgba(0, 25, 54, 0.2);
  backdrop-filter: blur(5px);
}

.burial-type-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
}

.burial-type-zh {
  margin: 0 0 9px;
  color: #a8751f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.burial-type-copy h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font: bold 22px/1.2 Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}

.burial-type-copy > p:last-child {
  margin: 0;
  color: #5f7181;
  font-size: 13.5px;
  line-height: 1.76;
}

.burial-availability-note {
  margin: 22px 0 0;
  color: #78838c;
  font-size: 11.5px;
  line-height: 1.65;
  text-align: center;
}

.burial-considerations-section {
  border-top: 1px solid rgba(184, 138, 56, 0.09);
  border-bottom: 1px solid rgba(184, 138, 56, 0.09);
}

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

.burial-consideration-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 138, 56, 0.16);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(85, 67, 37, 0.055);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.burial-consideration-card > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a8751f;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.32);
  border-radius: 50%;
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.burial-consideration-card h3 {
  margin: 1px 0 7px;
  color: var(--navy);
  font: bold 18px/1.3 Georgia, "Times New Roman", serif;
}

.burial-consideration-card p {
  margin: 0;
  color: #627383;
  font-size: 13px;
  line-height: 1.68;
}

.burial-comparison-section {
  overflow: hidden;
  background: #fff;
}

.burial-comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.burial-comparison-copy h2 {
  margin: 15px 0 20px;
  color: var(--navy);
  font: bold clamp(30px, 3.2vw, 42px) / 1.12 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.burial-comparison-copy > p {
  margin: 0 0 16px;
  color: #536a7d;
  font-size: 14.5px;
  line-height: 1.86;
}

.burial-comparison-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: #e8e2d7;
  border: 7px solid #fff;
  border-radius: 16px 16px 62px 16px;
  box-shadow: 0 24px 54px rgba(11, 48, 83, 0.14);
  isolation: isolate;
}

.burial-comparison-media::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 28, 59, 0.76));
  pointer-events: none;
}

.burial-comparison-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.burial-comparison-media figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.45);
}

.burial-comparison-media figcaption strong {
  max-width: 280px;
  font: bold 17px/1.25 Georgia, "Times New Roman", serif;
}

.burial-comparison-media figcaption span {
  flex: 0 0 auto;
  color: #f0d79f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* Funeral services editorial page */
.page-hero-media--funeral img {
  object-position: center 55%;
  filter: saturate(0.9) contrast(0.98);
}

.service-story-media--funeral img {
  object-position: center 47%;
  filter: saturate(0.92) contrast(0.98);
}

.funeral-section-heading {
  max-width: 790px;
}

.funeral-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #a8751f;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.funeral-section-kicker::before,
.funeral-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

.funeral-section-note {
  max-width: 820px;
  margin: 22px auto 0;
  color: #78838c;
  font-size: 11.5px;
  line-height: 1.7;
  text-align: center;
}

.funeral-inclusions-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 6%, rgba(213, 180, 108, 0.09), transparent 23%),
    #fff;
}

.funeral-inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.funeral-inclusion-card {
  min-width: 0;
  position: relative;
  padding: 28px 26px 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(17, 55, 92, 0.07);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.funeral-inclusion-card::after {
  position: absolute;
  top: 0;
  right: 25px;
  left: 25px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 240ms ease, transform 240ms ease;
}

.funeral-inclusion-card > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a8751f;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.3);
  border-radius: 50%;
  font: 10px/1 Georgia, serif;
  letter-spacing: 0.05em;
}

.funeral-inclusion-card h3 {
  margin: 17px 0 10px;
  color: var(--navy);
  font: bold 19px/1.28 Georgia, "Times New Roman", serif;
}

.funeral-inclusion-card p {
  margin: 0;
  color: #607283;
  font-size: 13px;
  line-height: 1.72;
}

.funeral-process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0, rgba(213, 180, 108, 0.16), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(84, 144, 190, 0.15), transparent 31%),
    linear-gradient(125deg, #001e40, #06396b);
  border-top: 3px solid var(--gold);
}

.funeral-process-section::after {
  width: 280px;
  height: 280px;
  position: absolute;
  right: -145px;
  bottom: -170px;
  content: "";
  border: 1px solid rgba(213, 180, 108, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(213, 180, 108, 0.025);
  pointer-events: none;
}

.funeral-process-heading {
  position: relative;
  z-index: 1;
}

.funeral-process-heading h2 {
  color: #fff;
}

.funeral-process-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.funeral-process-heading .funeral-section-kicker {
  color: var(--gold-light);
}

.funeral-process-heading .funeral-section-kicker::before,
.funeral-process-heading .funeral-section-kicker::after {
  background: rgba(213, 180, 108, 0.68);
}

.funeral-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.funeral-process-step {
  min-width: 0;
  padding: 27px 23px 25px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.funeral-process-step > span {
  display: inline-block;
  color: var(--gold-light);
  font: 13px/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.funeral-process-step h3 {
  margin: 14px 0 9px;
  color: #fff;
  font: bold 20px/1.25 Georgia, "Times New Roman", serif;
}

.funeral-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
  line-height: 1.72;
}

.funeral-process-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10.5px;
  line-height: 1.65;
  text-align: center;
}

.funeral-spaces-section {
  overflow: hidden;
  background: #fff;
}

.funeral-space-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(185px, 17vw, 225px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.funeral-space {
  min-width: 0;
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  margin: 0;
  background: #ded7cb;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 13px 30px rgba(17, 55, 92, 0.1);
  isolation: isolate;
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.funeral-space--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.funeral-space--wide {
  grid-column: span 12;
  grid-row: span 3;
}

.funeral-space::after {
  position: absolute;
  z-index: 1;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 28, 59, 0.78));
  pointer-events: none;
}

.funeral-space img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.funeral-space--feature img {
  object-position: 45% 55%;
}

.funeral-space:nth-child(2) img {
  object-position: center 52%;
}

.funeral-space:nth-child(3) img {
  object-position: 52% 52%;
}

.funeral-space--wide img {
  object-position: 58% 50%;
}

.funeral-space figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.42);
}

.funeral-space figcaption strong {
  font: bold 17px/1.2 Georgia, "Times New Roman", serif;
}

.funeral-space figcaption span {
  flex: 0 0 auto;
  color: #f0d79f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.funeral-products-section {
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 56, 0.09);
  border-bottom: 1px solid rgba(184, 138, 56, 0.09);
}

.funeral-product-group + .funeral-product-group {
  margin-top: 52px;
  padding-top: 45px;
  border-top: 1px solid rgba(184, 138, 56, 0.23);
}

.funeral-product-group-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.funeral-product-group-heading > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.funeral-product-group-heading span {
  width: 39px;
  height: 39px;
  display: inline-flex;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  color: #a8751f;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(184, 138, 56, 0.32);
  border-radius: 50%;
  font: 10px/1 Georgia, serif;
}

.funeral-product-group-heading h3 {
  margin: 0;
  color: var(--navy);
  font: bold 25px/1.2 Georgia, "Times New Roman", serif;
}

.funeral-product-group-heading > p {
  max-width: 430px;
  margin: 0;
  color: #77828c;
  font-size: 11.5px;
  line-height: 1.6;
  text-align: right;
}

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

.funeral-product-card {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 48, 83, 0.08);
  border-radius: 13px;
  box-shadow: 0 11px 26px rgba(74, 61, 39, 0.07);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.funeral-product-card > div {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 16px 8px;
  background:
    radial-gradient(circle at 50% 58%, rgba(213, 180, 108, 0.19), transparent 43%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 245, 236, 0.64));
}

.funeral-product-card img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 11px 12px rgba(42, 30, 15, 0.14));
  transition: transform 320ms ease;
}

.funeral-product-grid--caskets .funeral-product-card:nth-child(3) img {
  transform: scale(1.2);
}

.funeral-product-grid--urns .funeral-product-card > div {
  padding: 18px 26px 7px;
}

.funeral-product-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 15px 17px 16px;
  color: var(--navy);
  border-top: 1px solid rgba(11, 48, 83, 0.07);
  font: bold 15px/1.25 Georgia, "Times New Roman", serif;
}

.funeral-product-card figcaption span {
  flex: 0 0 auto;
  color: #a8751f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.funeral-special-care-section {
  overflow: hidden;
  background: #fff;
}

.funeral-special-care-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(220px, 0.75fr));
  gap: 16px;
  padding: clamp(29px, 4.5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 0 0, rgba(213, 180, 108, 0.18), transparent 32%),
    linear-gradient(125deg, #002550, #063b6e);
  border-radius: 18px 18px 74px 18px;
  box-shadow: 0 25px 56px rgba(11, 48, 83, 0.18);
}

.funeral-special-care-intro {
  padding-right: clamp(10px, 2vw, 27px);
}

.funeral-special-care-intro .funeral-section-kicker {
  color: var(--gold-light);
}

.funeral-special-care-intro .funeral-section-kicker::before,
.funeral-special-care-intro .funeral-section-kicker::after {
  background: rgba(213, 180, 108, 0.66);
}

.funeral-special-care-intro h2 {
  max-width: 530px;
  margin: 14px 0 18px;
  color: #fff;
  font: bold clamp(29px, 3.15vw, 41px) / 1.12 Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
}

.funeral-special-care-intro p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.78;
}

.funeral-special-care-panel > article {
  align-self: stretch;
  padding: 26px 23px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.funeral-special-care-panel > article > span {
  color: var(--gold-light);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.07em;
}

.funeral-special-care-panel > article h3 {
  margin: 14px 0 10px;
  color: #fff;
  font: bold 19px/1.28 Georgia, "Times New Roman", serif;
}

.funeral-special-care-panel > article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  line-height: 1.72;
}

.funeral-provider-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 8%, rgba(213, 180, 108, 0.09), transparent 23%),
    #fff;
}

.funeral-provider-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.funeral-provider-card {
  min-width: 0;
  padding: 25px 21px;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 11px;
  box-shadow: 0 11px 27px rgba(17, 55, 92, 0.065);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.funeral-provider-card > span {
  color: #a8751f;
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.07em;
}

.funeral-provider-card h3 {
  margin: 15px 0 9px;
  color: var(--navy);
  font: bold 18px/1.28 Georgia, "Times New Roman", serif;
}

.funeral-provider-card p {
  margin: 0;
  color: #617282;
  font-size: 12.5px;
  line-height: 1.7;
}

.funeral-page-disclaimer {
  max-width: 920px;
  margin: 26px auto 0;
  padding: 15px 19px;
  color: #6c7781;
  background: #fffbf4;
  border: 1px solid rgba(184, 138, 56, 0.2);
  border-radius: 9px;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}

/* Christian funeral editorial page */
.christian-funeral-page .page-kicker {
  color: #8f6118;
  font-size: 10.5px;
}

.christian-funeral-page .breadcrumb {
  color: #596b7a;
}

.christian-funeral-page .breadcrumb a {
  color: #875b13;
}

.page-hero-media--christian img {
  object-position: center 48%;
  filter: saturate(0.9) contrast(0.98);
}

.service-story-media--christian img {
  object-position: center 48%;
  filter: saturate(0.92) contrast(0.99);
}

.christian-story-note {
  margin-top: 22px !important;
  padding: 15px 17px;
  color: #435d73 !important;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 138, 56, 0.2);
  border-left: 3px solid rgba(184, 138, 56, 0.72);
  border-radius: 7px;
  font-size: 13px !important;
  line-height: 1.78 !important;
}

.christian-section-heading {
  max-width: 820px;
}

.christian-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #8f6118;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.christian-section-kicker::before,
.christian-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

.christian-roles-section,
.christian-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 8%, rgba(213, 180, 108, 0.09), transparent 24%),
    #fff;
}

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

.christian-role-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 30px 28px 29px;
  background: linear-gradient(180deg, #fff, #fffdf9);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 13px 32px rgba(17, 55, 92, 0.085);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.christian-role-card::after {
  width: 72px;
  height: 3px;
  position: absolute;
  right: -17px;
  bottom: 0;
  content: "";
  background: linear-gradient(90deg, rgba(184, 138, 56, 0.18), #c99841);
  transform: skewX(-32deg);
}

.christian-role-card > span,
.christian-checklist-grid article > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f6118;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.31);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.christian-role-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font: bold 20px/1.25 Georgia, "Times New Roman", serif;
}

.christian-role-card p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.76;
}

.christian-inline-note {
  max-width: 880px;
  margin: 23px auto 0;
  color: #5f7180;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

.christian-inline-note a {
  color: #875b13;
  border-bottom: 1px solid rgba(135, 91, 19, 0.3);
}

.christian-journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 93% 7%, rgba(73, 125, 174, 0.09), transparent 25%),
    linear-gradient(180deg, #f3f8fb, #edf4f8);
  border-top: 1px solid rgba(11, 48, 83, 0.045);
  border-bottom: 1px solid rgba(11, 48, 83, 0.055);
}

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

.christian-journey-grid .funeral-inclusion-card {
  background: rgba(255, 255, 255, 0.9);
}

.christian-traditions-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 6% 0, rgba(213, 180, 108, 0.2), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(97, 149, 196, 0.15), transparent 31%),
    linear-gradient(126deg, #00234c, #063a6d);
}

.christian-traditions-section::after {
  width: 330px;
  height: 330px;
  position: absolute;
  right: -200px;
  bottom: -215px;
  content: "";
  border: 1px solid rgba(213, 180, 108, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(213, 180, 108, 0.026);
  pointer-events: none;
}

.christian-traditions-heading {
  max-width: 820px;
}

.christian-traditions-heading .christian-section-kicker {
  color: var(--gold-light);
}

.christian-traditions-heading .christian-section-kicker::before,
.christian-traditions-heading .christian-section-kicker::after {
  background: rgba(213, 180, 108, 0.65);
}

.christian-traditions-heading h2 {
  color: #fff;
}

.christian-traditions-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.christian-tradition-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.christian-tradition-grid article {
  min-width: 0;
  padding: 29px 27px 28px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.christian-tradition-grid article > span {
  color: var(--gold-light);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.christian-tradition-grid h3 {
  margin: 19px 0 11px;
  color: #fff;
  font: bold 21px/1.25 Georgia, "Times New Roman", serif;
}

.christian-tradition-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.76;
}

.christian-traditions-note {
  max-width: 830px;
  position: relative;
  z-index: 1;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.christian-memorial-section {
  border-top: 1px solid rgba(184, 138, 56, 0.08);
  border-bottom: 1px solid rgba(184, 138, 56, 0.08);
}

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

.christian-memorial-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 15px;
  box-shadow: 0 15px 37px rgba(17, 55, 92, 0.095);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.christian-memorial-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #d9d9d5;
}

.christian-memorial-card figure::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 31, 67, 0.34));
  pointer-events: none;
}

.christian-memorial-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.christian-memorial-card:first-child figure img {
  object-position: center 52%;
}

.christian-memorial-card:last-child figure img {
  object-position: center 54%;
}

.christian-memorial-card figure > span {
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 38, 79, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(0, 25, 54, 0.2);
  backdrop-filter: blur(5px);
}

.christian-memorial-card > div {
  padding: 29px 29px 31px;
}

.christian-card-eyebrow {
  color: #8f6118;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.christian-memorial-card h3 {
  margin: 12px 0 12px;
  color: var(--navy);
  font: bold 25px/1.18 Georgia, "Times New Roman", serif;
}

.christian-memorial-card p {
  margin: 0;
  color: #5b6f80;
  font-size: 13.5px;
  line-height: 1.78;
}

.christian-memorial-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #875b13;
  font-size: 12px;
  font-weight: 800;
}

.christian-memorial-card a > span {
  font-size: 17px;
  line-height: 1;
  transition: transform 200ms ease;
}

.christian-gallery-grid {
  display: grid;
  grid-auto-rows: clamp(225px, 20vw, 275px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.christian-gallery-photo {
  min-width: 0;
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  margin: 0;
  background: #e2e3e2;
  border: 1px solid rgba(11, 48, 83, 0.1);
  border-radius: 13px;
  box-shadow: 0 13px 31px rgba(17, 55, 92, 0.105);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.christian-gallery-photo--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.christian-gallery-photo::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 29, 62, 0.82));
  pointer-events: none;
}

.christian-gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.christian-gallery-photo:first-child img {
  object-position: center 48%;
}

.christian-gallery-photo:nth-child(2) img {
  object-position: 43% 52%;
}

.christian-gallery-photo:nth-child(3) img {
  object-position: 68% 50%;
}

.christian-gallery-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 17px;
  left: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.44);
}

.christian-gallery-photo figcaption strong {
  font: bold 16px/1.2 Georgia, "Times New Roman", serif;
}

.christian-gallery-photo figcaption span {
  flex: 0 0 auto;
  color: #f2dca8;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.christian-gallery-note {
  max-width: 830px;
  margin: 23px auto 0;
  color: #63727e;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

.christian-checklist-section {
  border-top: 1px solid rgba(184, 138, 56, 0.08);
}

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

.christian-checklist-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 23px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 138, 56, 0.17);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(85, 67, 37, 0.05);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.christian-checklist-grid h3 {
  margin: 1px 0 7px;
  color: var(--navy);
  font: bold 18px/1.3 Georgia, "Times New Roman", serif;
}

.christian-checklist-grid p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.68;
}

.christian-faq-section {
  border-top-color: rgba(11, 48, 83, 0.06);
}

.christian-faq-section .faq-list summary small {
  color: #657581;
}

.christian-faq-section .faq-guide li small {
  color: rgba(255, 255, 255, 0.72);
}

.christian-page-disclaimer {
  max-width: 980px;
  margin: 26px auto 0;
  padding: 16px 20px;
  color: #647381;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 9px;
  font-size: 11.5px;
  line-height: 1.75;
  text-align: center;
}

/* Columbarium editorial page */
.columbarium-page .page-kicker {
  color: #8f6118;
  font-size: 10.5px;
}

.page-hero-media--columbarium img {
  object-position: center 45%;
  filter: saturate(0.94) contrast(0.99);
}

.service-story-media--columbarium img {
  object-position: center 52%;
  filter: saturate(0.94) contrast(0.99);
}

.columbarium-chinese-summary {
  margin-top: 22px !important;
  padding: 15px 17px;
  color: #465f73 !important;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 138, 56, 0.2);
  border-left: 3px solid rgba(184, 138, 56, 0.72);
  border-radius: 7px;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 13px !important;
  line-height: 1.85 !important;
}

.columbarium-types-section,
.columbarium-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 6%, rgba(213, 180, 108, 0.09), transparent 23%),
    #fff;
}

.columbarium-section-heading {
  max-width: 810px;
}

.columbarium-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #8f6118;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.columbarium-section-kicker::before,
.columbarium-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

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

.columbarium-type-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fffdf9);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 15px;
  box-shadow: 0 14px 35px rgba(17, 55, 92, 0.095);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.columbarium-type-media {
  min-height: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #ded7cb;
}

.columbarium-type-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, rgba(0, 31, 67, 0.01), rgba(0, 31, 67, 0.28));
  pointer-events: none;
}

.columbarium-type-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.columbarium-type-card:nth-child(1) img {
  object-position: center 55%;
}

.columbarium-type-card:nth-child(2) img {
  object-position: center 48%;
}

.columbarium-type-card:nth-child(3) img {
  object-position: center 52%;
}

.columbarium-type-card:nth-child(4) img {
  object-position: center 52%;
}

.columbarium-type-media > span,
.columbarium-signature figure > span {
  width: 42px;
  height: 42px;
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(0, 38, 79, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 18px rgba(0, 25, 54, 0.2);
  backdrop-filter: blur(5px);
}

.columbarium-type-copy {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 31px 29px;
}

.columbarium-type-copy > span,
.columbarium-signature-eyebrow {
  color: #8f6118;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.13em;
}

.columbarium-type-copy h3,
.columbarium-signature h3 {
  margin: 12px 0 7px;
  color: var(--navy);
  font: bold 23px/1.18 Georgia, "Times New Roman", serif;
  letter-spacing: -0.018em;
}

.columbarium-type-zh,
.columbarium-signature-zh {
  margin: 0 0 15px;
  color: #8f6118;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 12px;
  letter-spacing: 0.07em;
}

.columbarium-type-copy > p:last-child,
.columbarium-signature > div > p:not(.columbarium-signature-zh) {
  margin: 0;
  color: #5b6f80;
  font-size: 13.5px;
  line-height: 1.78;
}

.columbarium-signatures-section {
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 56, 0.08);
  border-bottom: 1px solid rgba(184, 138, 56, 0.08);
}

.columbarium-signature-list {
  display: grid;
  gap: 24px;
}

.columbarium-signature {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 16px;
  box-shadow: 0 16px 39px rgba(17, 55, 92, 0.1);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.columbarium-signature figure {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #ddd6ca;
}

.columbarium-signature figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(150deg, transparent 55%, rgba(0, 31, 67, 0.25));
  pointer-events: none;
}

.columbarium-signature figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.columbarium-signature:first-child figure img {
  object-position: center 51%;
}

.columbarium-signature--reverse figure img {
  object-position: center 52%;
}

.columbarium-signature > div {
  min-width: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(33px, 4vw, 52px);
}

.columbarium-signature--reverse figure {
  grid-column: 2;
}

.columbarium-signature--reverse > div {
  grid-column: 1;
  grid-row: 1;
}

.columbarium-signature h3 {
  margin-top: 13px;
  font-size: clamp(27px, 2.8vw, 36px);
}

.columbarium-signature small {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  color: #63727e;
  border-top: 1px solid rgba(184, 138, 56, 0.2);
  font-size: 12px;
  line-height: 1.65;
}

.columbarium-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(225px, 20vw, 270px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.columbarium-gallery-photo {
  min-width: 0;
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  margin: 0;
  background: #ded8cd;
  border: 1px solid rgba(11, 48, 83, 0.1);
  border-radius: 13px;
  box-shadow: 0 13px 31px rgba(17, 55, 92, 0.105);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.columbarium-gallery-photo--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.columbarium-gallery-photo--third {
  grid-column: span 4;
}

.columbarium-gallery-photo--half {
  grid-column: span 6;
}

.columbarium-gallery-photo--seven {
  grid-column: span 7;
}

.columbarium-gallery-photo--five {
  grid-column: span 5;
}

.columbarium-gallery-photo::after {
  position: absolute;
  z-index: 1;
  inset: 40% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 29, 62, 0.84));
  pointer-events: none;
}

.columbarium-gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.columbarium-gallery-photo:nth-child(1) img {
  object-position: center 32%;
}

.columbarium-gallery-photo:nth-child(2) img {
  object-position: center 50%;
}

.columbarium-gallery-photo:nth-child(3) img {
  object-position: center 48%;
}

.columbarium-gallery-photo:nth-child(4) img {
  object-position: center 52%;
}

.columbarium-gallery-photo:nth-child(5) img {
  object-position: center 48%;
}

.columbarium-gallery-photo:nth-child(6) img {
  object-position: center 55%;
}

.columbarium-gallery-photo:nth-child(8) img {
  object-position: center 50%;
}

.columbarium-gallery-photo:nth-child(7) img {
  object-position: 70% 50%;
}

.columbarium-gallery-photo:nth-child(9) img,
.columbarium-gallery-photo:nth-child(10) img {
  object-position: center 58%;
}

.columbarium-gallery-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 17px;
  left: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.44);
}

.columbarium-gallery-photo figcaption strong {
  font: bold 16px/1.2 Georgia, "Times New Roman", serif;
}

.columbarium-gallery-photo figcaption span {
  flex: 0 0 auto;
  color: #f2dca8;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.columbarium-gallery-note {
  max-width: 820px;
  margin: 23px auto 0;
  color: #63727e;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

.columbarium-guide-section {
  border-top: 1px solid rgba(184, 138, 56, 0.08);
}

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

.columbarium-guide-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 23px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 138, 56, 0.17);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(85, 67, 37, 0.055);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.columbarium-guide-grid article > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f6118;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.31);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.columbarium-guide-grid h3 {
  margin: 1px 0 7px;
  color: var(--navy);
  font: bold 18px/1.3 Georgia, "Times New Roman", serif;
}

.columbarium-guide-grid p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.7;
}

.columbarium-process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 7% 0, rgba(213, 180, 108, 0.19), transparent 29%),
    radial-gradient(circle at 96% 100%, rgba(89, 135, 177, 0.15), transparent 30%),
    linear-gradient(125deg, #00234c, #063b6e);
}

.columbarium-process-section::after {
  width: 310px;
  height: 310px;
  position: absolute;
  right: -175px;
  bottom: -210px;
  content: "";
  border: 1px solid rgba(213, 180, 108, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(213, 180, 108, 0.025);
  pointer-events: none;
}

.columbarium-process-heading {
  max-width: 750px;
}

.columbarium-process-heading .columbarium-section-kicker {
  color: var(--gold-light);
}

.columbarium-process-heading .columbarium-section-kicker::before,
.columbarium-process-heading .columbarium-section-kicker::after {
  background: rgba(213, 180, 108, 0.65);
}

.columbarium-process-heading h2 {
  color: #fff;
}

.columbarium-process-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.columbarium-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.columbarium-process-grid article {
  min-width: 0;
  padding: 27px 24px 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.columbarium-process-grid article > span {
  color: var(--gold-light);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.columbarium-process-grid h3 {
  margin: 18px 0 10px;
  color: #fff;
  font: bold 19px/1.3 Georgia, "Times New Roman", serif;
}

.columbarium-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.72;
}

.columbarium-page-disclaimer {
  max-width: 980px;
  position: relative;
  z-index: 1;
  margin: 27px auto 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

/* Pet memorial editorial page */
.pet-memorial-page .page-kicker {
  color: #8f6118;
  font-size: 10.5px;
}

.page-hero-media--pet img {
  object-position: 57% 45%;
  filter: saturate(0.92) contrast(0.98);
}

.service-story-media--pet img {
  object-position: 50% 52%;
  filter: saturate(0.94) contrast(0.99);
}

.pet-choices-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(213, 180, 108, 0.1), transparent 24%),
    #fff;
}

.pet-section-heading {
  max-width: 790px;
}

.pet-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #8f6118;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.pet-section-kicker::before,
.pet-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

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

.pet-choice-card {
  min-width: 0;
  min-height: 355px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 31px 28px 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fffdf9);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(17, 55, 92, 0.085);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.pet-choice-card::after {
  position: absolute;
  top: 0;
  right: 27px;
  left: 27px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(184, 138, 56, 0.85), transparent);
  opacity: 0.55;
  transform: scaleX(0.72);
  transition: opacity 260ms ease, transform 260ms ease;
}

.pet-choice-card > span {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f6118;
  background: #fff9ee;
  border: 1px solid rgba(184, 138, 56, 0.35);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.07em;
}

.pet-choice-zh {
  margin: 23px 0 7px;
  color: #8f6118;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 12.5px;
  letter-spacing: 0.09em;
}

.pet-choice-card h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font: bold 22px/1.22 Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}

.pet-choice-card > p:not(.pet-choice-zh) {
  margin: 0;
  color: #5c7081;
  font-size: 13.5px;
  line-height: 1.75;
}

.pet-choice-card small {
  width: 100%;
  display: block;
  margin-top: auto;
  padding-top: 17px;
  color: #63727e;
  border-top: 1px solid rgba(184, 138, 56, 0.17);
  font-size: 12px;
  line-height: 1.65;
}

.pet-process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 0, rgba(213, 180, 108, 0.19), transparent 29%),
    radial-gradient(circle at 95% 100%, rgba(89, 135, 177, 0.16), transparent 30%),
    linear-gradient(125deg, #00234c, #063b6e);
}

.pet-process-section::after {
  width: 310px;
  height: 310px;
  position: absolute;
  right: -175px;
  bottom: -210px;
  content: "";
  border: 1px solid rgba(213, 180, 108, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(213, 180, 108, 0.025);
  pointer-events: none;
}

.pet-process-heading {
  max-width: 760px;
}

.pet-process-heading .pet-section-kicker {
  color: var(--gold-light);
}

.pet-process-heading .pet-section-kicker::before,
.pet-process-heading .pet-section-kicker::after {
  background: rgba(213, 180, 108, 0.65);
}

.pet-process-heading h2 {
  color: #fff;
}

.pet-process-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.pet-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pet-process-step {
  min-width: 0;
  padding: 27px 24px 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.pet-process-step > span {
  color: var(--gold-light);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.pet-process-step h3 {
  margin: 18px 0 10px;
  color: #fff;
  font: bold 19px/1.3 Georgia, "Times New Roman", serif;
}

.pet-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.72;
}

.pet-gallery-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 95%, rgba(213, 180, 108, 0.08), transparent 24%),
    #fff;
}

.pet-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(260px, 25vw, 320px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.pet-gallery-photo {
  min-width: 0;
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  margin: 0;
  background: #ded8cd;
  border: 1px solid rgba(11, 48, 83, 0.1);
  border-radius: 13px;
  box-shadow: 0 13px 31px rgba(17, 55, 92, 0.105);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.pet-gallery-photo--feature {
  grid-column: span 7;
  grid-row: span 2;
}

.pet-gallery-photo--companions {
  grid-column: span 12;
}

.pet-gallery-photo--detail {
  grid-column: span 4;
}

.pet-gallery-photo::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 30, 64, 0.82));
  pointer-events: none;
}

.pet-gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pet-gallery-photo--feature img {
  object-position: 50% 52%;
}

.pet-gallery-photo:nth-child(2) img {
  object-position: center 48%;
}

.pet-gallery-photo:nth-child(3) img {
  object-position: 58% 50%;
}

.pet-gallery-photo--companions img {
  object-fit: contain;
  object-position: 50% 100%;
  background: #fff;
}

.pet-gallery-photo--detail img {
  object-position: center 50%;
}

.pet-gallery-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 19px;
  bottom: 17px;
  left: 19px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.42);
}

.pet-gallery-photo figcaption strong {
  font: bold 16px/1.2 Georgia, "Times New Roman", serif;
}

.pet-gallery-photo figcaption span {
  flex: 0 0 auto;
  color: #f0d79f;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 11.5px;
  letter-spacing: 0.05em;
}

.pet-section-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: #63727e;
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

.pet-checklist-section {
  border-top: 1px solid rgba(184, 138, 56, 0.08);
}

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

.pet-checklist-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 19px 21px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(184, 138, 56, 0.17);
  border-radius: 11px;
  box-shadow: 0 9px 23px rgba(85, 67, 37, 0.05);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.pet-checklist-grid article > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8f6118;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.3);
  border-radius: 50%;
  font: 10.5px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.pet-checklist-grid article p {
  margin: 0;
  color: #536b7e;
  font-size: 13px;
  line-height: 1.6;
}

.pet-page-disclaimer {
  max-width: 950px;
  margin: 28px auto 0;
  padding: 16px 20px;
  color: #63727e;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 138, 56, 0.2);
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

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

.info-card {
  position: relative;
  min-height: 190px;
  padding: 29px 27px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(11, 48, 83, 0.08);
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(17, 55, 92, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.info-card::after {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.info-card > span {
  display: inline-block;
  color: var(--gold);
  font: 13px/1 Georgia, serif;
  letter-spacing: 0.08em;
  transition: color 0.24s ease, transform 0.24s ease;
}

.info-card h3 {
  margin: 13px 0 9px;
  color: var(--navy);
  font: bold 20px/1.25 Georgia, serif;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
  .faq-guide-actions a:hover {
    transform: translateY(-2px);
  }

  .location-photo:hover {
    border-color: rgba(184, 138, 56, 0.42);
    box-shadow: 0 21px 42px rgba(17, 55, 92, 0.16);
    transform: translateY(-4px);
  }

  .location-photo:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .info-card:hover {
    background: linear-gradient(180deg, #fff, #fffbf4);
    border-color: rgba(198, 151, 62, 0.38);
    box-shadow: 0 20px 42px rgba(17, 55, 92, 0.13);
    transform: translateY(-6px);
  }

  .info-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .info-card:hover > span {
    color: #a8751f;
    transform: translateY(-1px);
  }

  .burial-type-card:hover {
    border-color: rgba(184, 138, 56, 0.34);
    box-shadow: 0 22px 46px rgba(17, 55, 92, 0.15);
    transform: translateY(-5px);
  }

  .burial-type-card:hover .burial-type-media img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .burial-consideration-card:hover {
    background: #fff;
    border-color: rgba(184, 138, 56, 0.36);
    box-shadow: 0 17px 36px rgba(85, 67, 37, 0.1);
    transform: translateY(-4px);
  }

  .funeral-inclusion-card:hover,
  .funeral-provider-card:hover {
    background: linear-gradient(180deg, #fff, #fffbf4);
    border-color: rgba(184, 138, 56, 0.35);
    box-shadow: 0 19px 40px rgba(17, 55, 92, 0.12);
    transform: translateY(-5px);
  }

  .funeral-inclusion-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .funeral-process-step:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.42);
    transform: translateY(-4px);
  }

  .funeral-space:hover {
    border-color: rgba(184, 138, 56, 0.42);
    box-shadow: 0 21px 42px rgba(17, 55, 92, 0.16);
    transform: translateY(-4px);
  }

  .funeral-space:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .funeral-product-card:hover {
    background: #fff;
    border-color: rgba(184, 138, 56, 0.34);
    box-shadow: 0 18px 38px rgba(74, 61, 39, 0.12);
    transform: translateY(-5px);
  }

  .funeral-product-card:hover img {
    transform: scale(1.045);
  }

  .funeral-product-grid--caskets .funeral-product-card:nth-child(3):hover img {
    transform: scale(1.24);
  }

  .funeral-special-care-panel > article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.38);
    transform: translateY(-4px);
  }

  .christian-role-card:hover {
    border-color: rgba(184, 138, 56, 0.37);
    box-shadow: 0 20px 42px rgba(17, 55, 92, 0.13);
    transform: translateY(-5px);
  }

  .christian-tradition-grid article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.4);
    transform: translateY(-4px);
  }

  .christian-memorial-card:hover {
    border-color: rgba(184, 138, 56, 0.38);
    box-shadow: 0 22px 46px rgba(17, 55, 92, 0.145);
    transform: translateY(-5px);
  }

  .christian-memorial-card:hover figure img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .christian-memorial-card:hover a > span {
    transform: translateX(3px);
  }

  .christian-gallery-photo:hover {
    border-color: rgba(184, 138, 56, 0.42);
    box-shadow: 0 21px 42px rgba(17, 55, 92, 0.16);
    transform: translateY(-4px);
  }

  .christian-gallery-photo:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .christian-checklist-grid article:hover {
    background: #fff;
    border-color: rgba(184, 138, 56, 0.37);
    box-shadow: 0 17px 35px rgba(85, 67, 37, 0.095);
    transform: translateY(-4px);
  }

  .columbarium-type-card:hover,
  .columbarium-signature:hover {
    border-color: rgba(184, 138, 56, 0.38);
    box-shadow: 0 22px 46px rgba(17, 55, 92, 0.145);
    transform: translateY(-5px);
  }

  .columbarium-type-card:hover .columbarium-type-media img,
  .columbarium-signature:hover figure img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .columbarium-gallery-photo:hover {
    border-color: rgba(184, 138, 56, 0.42);
    box-shadow: 0 21px 42px rgba(17, 55, 92, 0.16);
    transform: translateY(-4px);
  }

  .columbarium-gallery-photo:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .columbarium-guide-grid article:hover {
    background: #fff;
    border-color: rgba(184, 138, 56, 0.37);
    box-shadow: 0 17px 35px rgba(85, 67, 37, 0.095);
    transform: translateY(-4px);
  }

  .columbarium-process-grid article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.42);
    transform: translateY(-4px);
  }

  .pet-choice-card:hover {
    border-color: rgba(184, 138, 56, 0.36);
    box-shadow: 0 21px 44px rgba(17, 55, 92, 0.135);
    transform: translateY(-5px);
  }

  .pet-choice-card:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .pet-process-step:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.42);
    transform: translateY(-4px);
  }

  .pet-gallery-photo:hover {
    border-color: rgba(184, 138, 56, 0.42);
    box-shadow: 0 21px 42px rgba(17, 55, 92, 0.16);
    transform: translateY(-4px);
  }

  .pet-gallery-photo:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }

  .pet-checklist-grid article:hover {
    background: #fff;
    border-color: rgba(184, 138, 56, 0.37);
    box-shadow: 0 16px 34px rgba(85, 67, 37, 0.09);
    transform: translateY(-3px);
  }
}

.page-cta {
  padding: 48px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 0, rgba(213, 180, 108, 0.16), transparent 32%),
    linear-gradient(110deg, #001f43, #06396d);
  border-top: 3px solid var(--gold);
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-cta h2 {
  margin: 0;
  font: bold clamp(27px, 3vw, 37px) / 1.15 Georgia, serif;
}

.page-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.page-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.page-cta-actions .button {
  min-height: 50px;
  box-shadow: none;
}

.page-cta-actions .secondary {
  color: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 31px;
  background: white;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-card .contact-number {
  color: var(--gold);
  font: 12px/1 Georgia, serif;
}

.contact-card h2 {
  margin: 14px 0 8px;
  color: var(--navy);
  font: bold 23px/1.2 Georgia, serif;
}

.contact-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.contact-card a {
  margin-top: auto;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-card a:hover {
  color: var(--gold);
}

.page-service-grid .service-card,
.page-location-grid .location {
  height: 100%;
}

.page-service-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-location-grid .location {
  min-height: 315px;
}

@media (max-width: 1050px) {
  .header-whatsapp {
    display: none;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 11px;
  }

  .hero-copy {
    width: 56%;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    align-items: center;
    column-gap: 38px;
  }

  .footer-contact h3 {
    grid-column: 1 / -1;
  }

  .footer-contact small {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 580px);
  }

  .topbar {
    height: 34px;
    font-size: 11.5px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > span:first-child {
    display: none;
  }

  .topbar-contact {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 7px;
  }

  .header {
    height: 66px;
  }

  .header-inner {
    justify-content: space-between;
  }

  .logo {
    min-width: 152px;
  }

  .header .brand-logo {
    width: 148px;
  }

  .footer-logo {
    min-width: 0;
  }

  .footer-logo .brand-logo {
    width: 172px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 5px;
    background: linear-gradient(145deg, #fff, #fffaf0);
    border: 1px solid rgba(184, 138, 56, 0.32);
    border-radius: 11px;
    box-shadow: 0 6px 16px rgba(5, 42, 79, 0.08);
    cursor: pointer;
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--navy);
    border-radius: 999px;
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.18s ease, background 0.24s ease;
  }

  .menu-button[aria-expanded="true"] {
    background: linear-gradient(145deg, #0a3c70, var(--navy-dark));
    border-color: var(--navy-dark);
    box-shadow: 0 9px 20px rgba(0, 35, 74, 0.2);
  }

  .menu-button[aria-expanded="true"] span {
    background: white;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    width: min(420px, calc(100vw - 28px));
    height: auto;
    position: absolute;
    top: 74px;
    right: 14px;
    z-index: 2;
    display: grid;
    gap: 3px;
    max-height: calc(100dvh - 118px);
    overflow-y: auto;
    padding: 9px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 48, 83, 0.1);
    border-radius: 14px;
    box-shadow: 0 22px 52px rgba(0, 35, 74, 0.2);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top right;
    pointer-events: none;
    backdrop-filter: blur(18px);
    transition: opacity 0.2s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 0;
    border-radius: 9px;
    font-size: 13px;
    transition: color 0.18s ease, background 0.18s ease, padding 0.18s ease;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--navy);
    background: #f4f7fa;
  }

  .nav a.active {
    padding-left: 19px;
    color: var(--navy);
    background: linear-gradient(90deg, #fff7e8, #fffdf8);
  }

  .nav a.active::before {
    width: 3px;
    height: 20px;
    position: absolute;
    left: 8px;
    content: "";
    background: var(--gold);
    border-radius: 999px;
  }

  .nav a.active::after {
    display: none;
  }

  .nav-item {
    height: auto;
    display: block;
    padding-right: 0;
    border-radius: 9px;
  }

  .nav-item > a {
    width: 100%;
    padding-right: 52px;
  }

  .nav-submenu-toggle {
    width: 38px;
    height: 38px;
    top: 5px;
    right: 5px;
    color: var(--navy);
    background: rgba(11, 48, 83, 0.045);
    border: 1px solid rgba(11, 48, 83, 0.07);
    transform: none;
  }

  .nav-item.open .nav-submenu-toggle {
    color: #966f28;
    background: #fff5df;
    border-color: rgba(184, 138, 56, 0.18);
  }

  .nav-submenu,
  .nav-submenu--locations {
    width: auto;
    position: static;
    display: none;
    gap: 3px;
    margin: 0 7px 7px 17px;
    padding: 4px 0 4px 10px;
    visibility: visible;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(184, 138, 56, 0.28);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none;
    transition: none;
  }

  .nav-item.open .nav-submenu {
    display: grid;
    transform: none;
  }

  .nav .nav-submenu a {
    min-height: 42px;
    padding: 8px 12px;
    background: #f6f8fa;
    border: 1px solid rgba(11, 48, 83, 0.045);
    font-size: 12px;
  }

  .nav .nav-submenu a:hover,
  .nav .nav-submenu a:focus-visible {
    background: #fff8e9;
  }

  .hero {
    min-height: 630px;
    position: relative;
    background-position: 88% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.88) 58%, rgba(255, 253, 248, 0.2));
  }

  .hero::after {
    width: 100%;
    right: 0;
    left: 0;
  }

  .hero-inner {
    min-height: 630px;
    position: relative;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    padding: 52px 4px;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 41px);
    line-height: 1.04;
  }

  .chinese {
    font-size: 20px;
  }

  .intro {
    max-width: 350px;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    min-width: 205px;
  }

  .section {
    padding: 58px 0 64px;
  }

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

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

  .value:nth-child(even),
  .value:last-child {
    border-right: 0;
  }

  .value:last-child {
    max-width: 50%;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .service-grid {
    display: flex;
    overflow-x: auto;
    padding: 4px 2px 18px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .service-grid::-webkit-scrollbar,
  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    min-width: min(72vw, 270px);
    scroll-snap-align: start;
  }

  .card-content a {
    min-height: 44px;
    padding-right: 19px;
    padding-left: 19px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location {
    height: 240px;
  }

  .review-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .review-grid figure {
    min-width: 86%;
    scroll-snap-align: center;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-guide {
    position: static;
    padding: 26px 24px 24px;
  }

  .faq-guide::after {
    right: 24px;
  }

  .faq-guide h3 {
    font-size: 26px;
  }

  .faq-guide ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
  }

  .faq-guide li {
    align-items: flex-start;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 7px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 15px 56px 15px 50px;
  }

  .faq-list summary::before {
    left: 17px;
  }

  .faq-list summary strong {
    font-size: 15px;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
    right: 16px;
  }

  .faq-answer {
    margin: 0 18px 0 50px;
    padding: 0 28px 18px 0;
  }

  .faq-answer p {
    margin-top: 15px;
    font-size: 13px;
  }

  .faq-answer .faq-answer-zh {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 12.5px;
  }

  .careline-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding: 28px 0;
  }

  .place {
    display: none;
  }

  .phone-block strong {
    font-size: 32px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 26px;
    padding-top: 45px;
    padding-bottom: 38px;
  }

  footer::before {
    right: 64px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin-top: 18px;
  }

  .footer-contact {
    display: flex;
    align-items: flex-start;
  }

  .footer-contact h3 {
    grid-column: auto;
  }

  .footer-contact small {
    margin-left: 33px;
  }

  .footer-bottom .container {
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .floating-whatsapp-label {
    min-height: 40px;
    margin-right: -9px;
    padding: 6px 21px 6px 12px;
  }

  .floating-whatsapp-label strong {
    gap: 6px;
    font-size: 10.5px;
  }

  .floating-whatsapp-label strong::before {
    width: 6px;
    height: 6px;
  }

  .floating-whatsapp-label small {
    margin-left: 12px;
    font-size: 8px;
  }

  .floating-whatsapp-icon {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp-icon img {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

  .info-card:hover {
    transform: none;
  }

  .location-photo:hover,
  .location-photo:hover img,
  .faq-guide-actions a:hover,
  .burial-type-card:hover,
  .burial-type-card:hover .burial-type-media img,
  .burial-consideration-card:hover,
  .funeral-inclusion-card:hover,
  .funeral-provider-card:hover,
  .funeral-process-step:hover,
  .funeral-space:hover,
  .funeral-space:hover img,
  .funeral-product-card:hover,
  .funeral-special-care-panel > article:hover,
  .christian-role-card:hover,
  .christian-tradition-grid article:hover,
  .christian-memorial-card:hover,
  .christian-memorial-card:hover figure img,
  .christian-memorial-card:hover a > span,
  .christian-gallery-photo:hover,
  .christian-gallery-photo:hover img,
  .christian-checklist-grid article:hover,
  .columbarium-type-card:hover,
  .columbarium-type-card:hover .columbarium-type-media img,
  .columbarium-signature:hover,
  .columbarium-signature:hover figure img,
  .columbarium-gallery-photo:hover,
  .columbarium-gallery-photo:hover img,
  .columbarium-guide-grid article:hover,
  .columbarium-process-grid article:hover,
  .pet-choice-card:hover,
  .pet-process-step:hover,
  .pet-gallery-photo:hover,
  .pet-gallery-photo:hover img,
  .pet-checklist-grid article:hover {
    transform: none;
  }

  .funeral-product-card:hover img {
    transform: none;
  }

  .funeral-product-grid--caskets .funeral-product-card:nth-child(3) img,
  .funeral-product-grid--caskets .funeral-product-card:nth-child(3):hover img {
    transform: scale(1.2);
  }

  .floating-whatsapp-icon::before {
    opacity: 0.28;
    animation: none !important;
    transform: scale(1.18);
  }
}

@media (max-width: 1100px) {
  .funeral-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .columbarium-type-grid {
    grid-template-columns: 1fr;
  }

  .columbarium-type-card {
    grid-template-columns: minmax(330px, 0.95fr) minmax(0, 1.05fr);
  }

  .columbarium-type-media {
    min-height: 350px;
    aspect-ratio: auto;
  }
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 34px;
  }

  .content-split {
    gap: 42px;
  }

  .service-story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-story-media {
    aspect-ratio: 16 / 9;
  }

  .burial-type-grid,
  .burial-comparison-grid {
    grid-template-columns: 1fr;
  }

  .burial-type-card {
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  }

  .burial-type-media {
    min-height: 280px;
  }

  .burial-comparison-media {
    max-width: 680px;
    aspect-ratio: 16 / 9;
  }

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

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

  .funeral-space-grid {
    grid-auto-rows: clamp(170px, 23vw, 205px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .funeral-space--feature,
  .funeral-space--wide {
    grid-column: span 6;
  }

  .funeral-space--wide {
    grid-row: span 2;
  }

  .funeral-space:not(.funeral-space--feature):not(.funeral-space--wide) {
    grid-column: span 3;
  }

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

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

  .funeral-special-care-intro {
    grid-column: 1 / -1;
    padding: 0 0 8px;
  }

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

  .christian-role-grid,
  .christian-tradition-grid,
  .christian-memorial-grid {
    grid-template-columns: 1fr;
  }

  .christian-gallery-grid {
    grid-auto-rows: clamp(190px, 27vw, 240px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .christian-gallery-photo {
    grid-column: span 3;
  }

  .christian-gallery-photo--feature {
    grid-column: span 6;
    grid-row: span 2;
  }

  .columbarium-type-card {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .columbarium-type-media {
    min-height: 330px;
  }

  .columbarium-signature {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

  .columbarium-gallery-grid {
    grid-auto-rows: clamp(190px, 27vw, 240px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .columbarium-gallery-photo {
    grid-column: span 3;
  }

  .columbarium-gallery-photo--feature {
    grid-column: span 6;
    grid-row: span 2;
  }

  .columbarium-gallery-photo--third {
    grid-column: span 2;
  }

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

  .pet-choice-grid {
    grid-template-columns: 1fr;
  }

  .pet-choice-card {
    min-height: 0;
  }

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

  .pet-gallery-grid {
    grid-auto-rows: clamp(210px, 30vw, 260px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pet-gallery-photo--feature {
    grid-column: span 6;
    grid-row: span 2;
  }

  .pet-gallery-photo:not(.pet-gallery-photo--feature):not(.pet-gallery-photo--companions):not(.pet-gallery-photo--detail) {
    grid-column: span 3;
  }

  .pet-gallery-photo--companions {
    grid-column: span 6;
  }

  .pet-gallery-photo--detail {
    grid-column: span 2;
  }

  .location-photo-grid {
    grid-auto-rows: clamp(170px, 23vw, 205px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .location-photo--feature,
  .location-photo--wide {
    grid-column: span 6;
  }

  .location-photo-grid--compact {
    grid-auto-rows: clamp(175px, 29vw, 215px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-photo-grid--compact .location-photo {
    grid-column: span 1;
  }

  .info-grid,
  .contact-grid,
  .page-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 42px 0 40px;
  }

  .legal-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .legal-section {
    padding: 42px 0 64px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .legal-nav > span {
    grid-column: 1 / -1;
  }

  .legal-nav a {
    text-align: center;
  }

  .legal-document {
    padding: 26px 20px;
    border-radius: 11px;
  }

  .legal-text h2 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .legal-text h3 {
    margin-top: 31px;
    font-size: 16px;
  }

  .legal-text p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.85;
  }

  .legal-text .legal-emphasis {
    padding: 17px 16px;
    font-size: 12.5px;
  }

  .page-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 37px;
    padding-bottom: 46px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .page-title-zh {
    font-size: 16px;
  }

  .page-lead {
    font-size: 15px;
  }

  .page-hero-media {
    height: min(72vw, 320px);
    grid-row: 1;
    border-width: 5px;
    border-radius: 12px 12px 54px 12px;
  }

  .page-hero-media--pet img {
    object-position: 56% 50%;
  }

  .page-hero-copy {
    grid-row: 2;
  }

  .page-section {
    padding: 58px 0 64px;
  }

  .service-story-grid {
    gap: 27px;
  }

  .service-story-media {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 12px 12px 48px 12px;
  }

  .service-story-media--pet img {
    object-position: 58% 50%;
  }

  .service-story-media figcaption {
    right: 17px;
    bottom: 15px;
    left: 17px;
  }

  .service-story-media figcaption strong {
    font-size: 15px;
  }

  .service-story-media figcaption span {
    font-size: 9.5px;
  }

  .service-story-kicker {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .service-story-copy h2 {
    margin: 13px 0 18px;
    font-size: 30px;
  }

  .service-story-copy p,
  .service-story-copy p:first-of-type {
    font-size: 14px;
    line-height: 1.9;
  }

  .burial-section-kicker {
    max-width: 100%;
    display: block;
    font-size: 8.5px;
    line-height: 1.65;
    letter-spacing: 0.11em;
  }

  .burial-section-kicker::before,
  .burial-section-kicker::after {
    display: none;
  }

  .burial-type-grid {
    gap: 16px;
  }

  .burial-type-card {
    grid-template-columns: 1fr;
  }

  .burial-type-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .burial-type-copy {
    padding: 25px 22px 27px;
  }

  .burial-type-copy h3 {
    font-size: 21px;
  }

  .burial-consideration-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .burial-consideration-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    padding: 21px 19px;
  }

  .burial-consideration-card > span {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .burial-consideration-card h3 {
    font-size: 17px;
  }

  .burial-comparison-grid {
    gap: 31px;
  }

  .burial-comparison-copy h2 {
    margin-top: 13px;
    font-size: 30px;
  }

  .burial-comparison-copy > p {
    font-size: 14px;
    line-height: 1.8;
  }

  .burial-comparison-media {
    aspect-ratio: 4 / 3;
    border-width: 5px;
    border-radius: 12px 12px 48px 12px;
  }

  .burial-comparison-media figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .burial-comparison-media figcaption strong {
    font-size: 15px;
  }

  .burial-comparison-media figcaption span {
    font-size: 9px;
  }

  .funeral-section-kicker {
    max-width: 100%;
    display: block;
    font-size: 8.5px;
    line-height: 1.65;
    letter-spacing: 0.11em;
  }

  .funeral-section-kicker::before,
  .funeral-section-kicker::after {
    display: none;
  }

  .funeral-inclusion-grid,
  .funeral-process-grid,
  .funeral-provider-grid {
    grid-template-columns: 1fr;
  }

  .funeral-inclusion-card {
    padding: 24px 22px;
  }

  .funeral-process-step {
    padding: 23px 21px;
  }

  .funeral-space-grid {
    grid-auto-rows: clamp(145px, 39vw, 180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .funeral-space,
  .funeral-space:not(.funeral-space--feature):not(.funeral-space--wide) {
    grid-column: span 1;
    border-radius: 11px;
  }

  .funeral-space--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .funeral-space--wide {
    grid-column: span 2;
  }

  .funeral-space figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .funeral-space figcaption strong {
    font-size: 14px;
  }

  .funeral-space figcaption span {
    font-size: 9px;
  }

  .funeral-product-group + .funeral-product-group {
    margin-top: 40px;
    padding-top: 35px;
  }

  .funeral-product-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .funeral-product-group-heading h3 {
    font-size: 22px;
  }

  .funeral-product-group-heading > p {
    max-width: 100%;
    text-align: left;
  }

  .funeral-product-grid {
    gap: 10px;
  }

  .funeral-product-card > div {
    padding: 12px 9px 5px;
  }

  .funeral-product-grid--urns .funeral-product-card > div {
    padding: 12px 16px 5px;
  }

  .funeral-product-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 12px 12px 13px;
    font-size: 13px;
  }

  .funeral-product-card figcaption span {
    font-size: 7.5px;
  }

  .funeral-special-care-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 14px 14px 52px 14px;
  }

  .funeral-special-care-intro {
    grid-column: auto;
  }

  .funeral-special-care-intro h2 {
    margin-top: 11px;
    font-size: 30px;
  }

  .page-hero-media--christian img,
  .service-story-media--christian img {
    object-position: center 50%;
  }

  .christian-section-kicker {
    max-width: 100%;
    display: block;
    font-size: 9px;
    line-height: 1.65;
    letter-spacing: 0.11em;
  }

  .christian-section-kicker::before,
  .christian-section-kicker::after {
    display: none;
  }

  .christian-role-grid,
  .christian-tradition-grid,
  .christian-memorial-grid {
    gap: 13px;
  }

  .christian-role-card,
  .christian-tradition-grid article {
    padding: 25px 22px 24px;
  }

  .christian-memorial-card figure {
    aspect-ratio: 4 / 3;
  }

  .christian-memorial-card > div {
    padding: 25px 22px 27px;
  }

  .christian-memorial-card h3 {
    font-size: 22px;
  }

  .christian-gallery-grid {
    grid-auto-rows: clamp(145px, 39vw, 180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .christian-gallery-photo {
    grid-column: span 1;
    border-radius: 11px;
  }

  .christian-gallery-photo--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .christian-gallery-photo figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .christian-gallery-photo figcaption strong {
    font-size: 14px;
  }

  .christian-gallery-photo figcaption span {
    font-size: 9.5px;
  }

  .christian-checklist-grid {
    grid-template-columns: 1fr;
  }

  .christian-checklist-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 17px;
  }

  .christian-checklist-grid article > span {
    width: 40px;
    height: 40px;
    font-size: 9.5px;
  }

  .christian-inline-note,
  .christian-traditions-note,
  .christian-gallery-note,
  .christian-page-disclaimer {
    font-size: 12px;
  }

  .page-hero-media--columbarium img {
    object-position: center 48%;
  }

  .service-story-media--columbarium img {
    object-position: center 52%;
  }

  .columbarium-section-kicker {
    max-width: 100%;
    display: block;
    font-size: 9.5px;
    line-height: 1.65;
    letter-spacing: 0.11em;
  }

  .columbarium-section-kicker::before,
  .columbarium-section-kicker::after {
    display: none;
  }

  .columbarium-type-grid {
    gap: 15px;
  }

  .columbarium-type-card {
    grid-template-columns: 1fr;
  }

  .columbarium-type-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .columbarium-type-copy {
    padding: 25px 22px 27px;
  }

  .columbarium-signature {
    grid-template-columns: 1fr;
  }

  .columbarium-signature figure,
  .columbarium-signature--reverse figure {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .columbarium-signature--reverse > div {
    grid-column: auto;
    grid-row: auto;
  }

  .columbarium-signature > div {
    padding: 28px 23px 30px;
  }

  .columbarium-gallery-grid {
    grid-auto-rows: clamp(145px, 39vw, 180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .columbarium-gallery-photo,
  .columbarium-gallery-photo--third,
  .columbarium-gallery-photo--half,
  .columbarium-gallery-photo--seven,
  .columbarium-gallery-photo--five {
    grid-column: span 1;
    border-radius: 11px;
  }

  .columbarium-gallery-photo--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .columbarium-gallery-photo.columbarium-gallery-photo--five {
    grid-column: span 2;
  }

  .columbarium-gallery-photo figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .columbarium-gallery-photo figcaption strong {
    font-size: 14px;
  }

  .columbarium-gallery-photo figcaption span {
    font-size: 9.5px;
  }

  .columbarium-guide-grid,
  .columbarium-process-grid {
    grid-template-columns: 1fr;
  }

  .columbarium-guide-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .columbarium-guide-grid article > span {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }

  .columbarium-process-grid article {
    padding: 23px 21px;
  }

  .columbarium-gallery-note,
  .columbarium-page-disclaimer {
    font-size: 12px;
  }

  .pet-section-kicker {
    max-width: 100%;
    display: block;
    font-size: 9.5px;
    line-height: 1.65;
    letter-spacing: 0.11em;
  }

  .pet-section-kicker::before,
  .pet-section-kicker::after {
    display: none;
  }

  .pet-choice-grid {
    gap: 14px;
  }

  .pet-choice-card {
    padding: 26px 22px 24px;
  }

  .pet-choice-card small {
    margin-top: 19px;
  }

  .pet-process-grid,
  .pet-checklist-grid {
    grid-template-columns: 1fr;
  }

  .pet-process-step {
    padding: 23px 21px;
  }

  .pet-gallery-grid {
    grid-auto-rows: clamp(145px, 39vw, 180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pet-gallery-photo,
  .pet-gallery-photo:not(.pet-gallery-photo--feature):not(.pet-gallery-photo--companions):not(.pet-gallery-photo--detail) {
    grid-column: span 1;
    border-radius: 11px;
  }

  .pet-gallery-photo--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .pet-gallery-photo--companions {
    grid-column: span 2;
  }

  .pet-gallery-photo--detail {
    grid-column: span 2;
    grid-row: span 2;
  }

  .pet-gallery-photo figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .pet-gallery-photo figcaption strong {
    font-size: 14px;
  }

  .pet-gallery-photo figcaption span {
    font-size: 9px;
  }

  .pet-checklist-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 17px;
  }

  .pet-checklist-grid article > span {
    width: 40px;
    height: 40px;
    font-size: 9.5px;
  }

  .pet-section-note,
  .pet-page-disclaimer {
    font-size: 12px;
  }

  .location-gallery-heading {
    margin-bottom: 28px;
  }

  .location-gallery-group-heading {
    gap: 13px;
    margin-bottom: 18px;
  }

  .location-gallery-group-heading > span {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 10px;
  }

  .location-gallery-group-heading h3 {
    margin-top: 0;
    font-size: 21px;
  }

  .location-gallery-group-heading p {
    font-size: 11.5px;
  }

  .location-gallery-group--secondary {
    margin-top: 42px;
    padding-top: 36px;
  }

  .location-photo-grid {
    grid-auto-rows: clamp(140px, 38vw, 175px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .location-photo {
    grid-column: span 1;
    border-radius: 11px;
  }

  .location-photo--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .location-photo--wide {
    grid-column: span 2;
  }

  .location-photo-grid--compact {
    grid-auto-rows: clamp(140px, 38vw, 175px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-photo figcaption {
    right: 13px;
    bottom: 12px;
    left: 13px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .location-photo figcaption strong {
    font-size: 14px;
  }

  .location-photo figcaption span {
    font-size: 9.5px;
  }

  .location-gallery-note {
    margin-top: 18px;
    font-size: 10.5px;
  }

  .content-split,
  .info-grid,
  .contact-grid,
  .page-service-grid {
    grid-template-columns: 1fr;
  }

  .page-service-grid {
    display: grid;
    overflow: visible;
    padding: 0;
  }

  .page-service-grid .service-card {
    min-width: 0;
  }

  .content-split {
    gap: 32px;
  }

  .detail-panel {
    padding: 26px 24px;
  }

  .info-card,
  .contact-card {
    min-height: 0;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .page-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-cta-actions .button {
    min-width: 215px;
  }

  .page-location-grid .location {
    min-height: 250px;
  }
}

@media (max-width: 460px) {
  .christian-faq-section .faq-guide ul {
    grid-template-columns: 1fr;
  }

  .christian-faq-section .faq-guide li,
  .christian-faq-section .faq-guide li > div {
    min-width: 0;
  }

  .christian-faq-section .faq-guide li small {
    overflow-wrap: anywhere;
  }
}

/* Sea ash scattering editorial page */
.sea-ash-page .page-kicker {
  color: #7a622f;
  font-size: 10.5px;
}

.sea-ash-page .breadcrumb {
  color: #5d707f;
}

.sea-ash-page .breadcrumb a {
  color: #765b27;
}

.page-hero-media--sea img {
  object-position: center 52%;
  filter: saturate(0.84) contrast(0.98);
}

.service-story-media--sea img {
  object-position: 68% 50%;
  filter: saturate(0.9) contrast(0.99);
}

.sea-story-note {
  margin-top: 22px !important;
  padding: 15px 17px;
  color: #435d73 !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(184, 138, 56, 0.2);
  border-left: 3px solid rgba(184, 138, 56, 0.72);
  border-radius: 7px;
  font-size: 13px !important;
  line-height: 1.78 !important;
}

.sea-story-note strong {
  color: var(--navy);
}

.sea-section-heading {
  max-width: 840px;
}

.sea-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
  color: #795d25;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.sea-section-kicker::before,
.sea-section-kicker::after {
  width: 28px;
  height: 1px;
  content: "";
  background: rgba(184, 138, 56, 0.68);
}

.sea-section-note,
.sea-gallery-note,
.sea-faith-note {
  max-width: 880px;
  margin: 23px auto 0;
  color: #62727f;
  font-size: 12px;
  line-height: 1.72;
  text-align: center;
}

.sea-section-note a {
  color: #765b27;
  border-bottom: 1px solid rgba(118, 91, 39, 0.3);
}

.sea-meaning-section,
.sea-gallery-section,
.sea-options-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 7%, rgba(112, 170, 196, 0.08), transparent 24%),
    #fff;
}

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

.sea-meaning-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 31px 28px 29px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 14px;
  box-shadow: 0 13px 32px rgba(17, 55, 92, 0.08);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.sea-meaning-card::after {
  width: 76px;
  height: 3px;
  position: absolute;
  right: -18px;
  bottom: 0;
  content: "";
  background: linear-gradient(90deg, rgba(65, 129, 160, 0.14), #6e9fb5);
  transform: skewX(-32deg);
}

.sea-meaning-card > span,
.sea-checklist-grid article > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #496f83;
  background: #f2f8fa;
  border: 1px solid rgba(70, 125, 151, 0.27);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.sea-meaning-card h3 {
  margin: 20px 0 10px;
  color: var(--navy);
  font: bold 20px/1.25 Georgia, "Times New Roman", serif;
}

.sea-meaning-card p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.76;
}

.sea-journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 6%, rgba(213, 180, 108, 0.11), transparent 24%),
    linear-gradient(180deg, #f2f8fa, #ebf4f7);
  border-top: 1px solid rgba(11, 48, 83, 0.05);
  border-bottom: 1px solid rgba(11, 48, 83, 0.06);
}

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

.sea-journey-grid .funeral-inclusion-card {
  background: rgba(255, 255, 255, 0.9);
}

.sea-journey-grid .funeral-inclusion-card > span {
  color: #496f83;
  background: #f2f8fa;
  border-color: rgba(70, 125, 151, 0.27);
}

.sea-conditions-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 7% 0, rgba(213, 180, 108, 0.18), transparent 29%),
    radial-gradient(circle at 100% 100%, rgba(94, 166, 194, 0.18), transparent 32%),
    linear-gradient(126deg, #001f42, #06436b);
  border-top: 3px solid var(--gold);
}

.sea-conditions-section::after {
  width: 330px;
  height: 330px;
  position: absolute;
  right: -195px;
  bottom: -210px;
  content: "";
  border: 1px solid rgba(213, 180, 108, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(213, 180, 108, 0.025);
  pointer-events: none;
}

.sea-conditions-heading {
  max-width: 830px;
  position: relative;
  z-index: 1;
}

.sea-conditions-heading .sea-section-kicker {
  color: var(--gold-light);
}

.sea-conditions-heading .sea-section-kicker::before,
.sea-conditions-heading .sea-section-kicker::after {
  background: rgba(213, 180, 108, 0.65);
}

.sea-conditions-heading h2 {
  color: #fff;
}

.sea-conditions-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.sea-conditions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.sea-conditions-grid article {
  min-width: 0;
  padding: 28px 24px 26px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  backdrop-filter: blur(5px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.sea-conditions-grid article > span {
  color: var(--gold-light);
  font: 12px/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.sea-conditions-grid h3 {
  margin: 17px 0 10px;
  color: #fff;
  font: bold 20px/1.25 Georgia, "Times New Roman", serif;
}

.sea-conditions-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.74;
}

.sea-conditions-note {
  max-width: 850px;
  position: relative;
  z-index: 1;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11.5px;
  line-height: 1.7;
  text-align: center;
}

.sea-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 18px;
}

.sea-gallery-photo {
  min-width: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #dce7ea;
  border: 1px solid rgba(11, 48, 83, 0.1);
  border-radius: 14px;
  box-shadow: 0 15px 34px rgba(17, 55, 92, 0.105);
  isolation: isolate;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.sea-gallery-photo--feature {
  aspect-ratio: 1 / 1;
}

.sea-gallery-photo::after {
  position: absolute;
  z-index: 1;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 35, 61, 0.82));
  pointer-events: none;
}

.sea-gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.99);
  transition: filter 420ms ease, transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.sea-gallery-photo--feature img {
  object-position: center 61%;
}

.sea-gallery-photo:not(.sea-gallery-photo--feature) img {
  object-position: 38% 50%;
}

.sea-gallery-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 13px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 21, 45, 0.45);
}

.sea-gallery-photo figcaption strong {
  font: bold 17px/1.2 Georgia, "Times New Roman", serif;
}

.sea-gallery-photo figcaption span {
  flex: 0 0 auto;
  color: #f2dca8;
  font-family: "Songti SC", STSong, "Noto Serif SC", serif;
  font-size: 10.5px;
  letter-spacing: 0.05em;
}

.sea-faith-section {
  overflow: hidden;
  border-top: 1px solid rgba(184, 138, 56, 0.08);
  border-bottom: 1px solid rgba(184, 138, 56, 0.08);
}

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

.sea-faith-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: 17px;
  padding: 25px 25px 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(184, 138, 56, 0.17);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(85, 67, 37, 0.05);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.sea-faith-grid article > span {
  width: 46px;
  height: 46px;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #795d25;
  background: #fffaf0;
  border: 1px solid rgba(184, 138, 56, 0.31);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.sea-faith-grid h3 {
  margin: 1px 0 8px;
  color: var(--navy);
  font: bold 18px/1.3 Georgia, "Times New Roman", serif;
}

.sea-faith-grid p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.72;
}

.sea-faith-grid .sea-faith-card--caution {
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(248, 244, 234, 0.9));
  border-color: rgba(184, 138, 56, 0.29);
}

.sea-faith-note {
  max-width: 920px;
  padding: 14px 18px;
  color: #5b6d7c;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(184, 138, 56, 0.16);
  border-radius: 8px;
}

.sea-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.sea-option-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  align-items: start;
  gap: 17px;
  padding: 28px 25px;
  background: #fff;
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 13px;
  box-shadow: 0 12px 29px rgba(17, 55, 92, 0.075);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.sea-option-card > span {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #496f83;
  background: #f2f8fa;
  border: 1px solid rgba(70, 125, 151, 0.27);
  border-radius: 50%;
  font: 11px/1 Georgia, serif;
  letter-spacing: 0.06em;
}

.sea-option-card small {
  color: #795d25;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.sea-option-card h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font: bold 22px/1.22 Georgia, "Times New Roman", serif;
}

.sea-option-card p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.73;
}

.sea-option-card a,
.sea-option-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #765b27;
  font-size: 11.5px;
  font-weight: 800;
}

.sea-option-card a > span {
  font-size: 17px;
  line-height: 1;
  transition: transform 200ms ease;
}

.sea-option-card--current {
  background: linear-gradient(145deg, #073862, #075172);
  border-color: rgba(7, 75, 106, 0.7);
  box-shadow: 0 17px 35px rgba(0, 45, 74, 0.16);
}

.sea-option-card--current > span {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.sea-option-card--current small,
.sea-option-card--current strong {
  color: var(--gold-light);
}

.sea-option-card--current h3 {
  color: #fff;
}

.sea-option-card--current p {
  color: rgba(255, 255, 255, 0.72);
}

.sea-checklist-section {
  border-top: 1px solid rgba(184, 138, 56, 0.08);
}

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

.sea-checklist-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 22px 23px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(70, 125, 151, 0.16);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(68, 90, 100, 0.05);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.sea-checklist-grid h3 {
  margin: 1px 0 7px;
  color: var(--navy);
  font: bold 18px/1.3 Georgia, "Times New Roman", serif;
}

.sea-checklist-grid p {
  margin: 0;
  color: #5b6f80;
  font-size: 13px;
  line-height: 1.68;
}

.sea-faq-section {
  border-top-color: rgba(11, 48, 83, 0.06);
}

.sea-faq-section .faq-list summary small {
  color: #657581;
}

.sea-faq-section .faq-guide li small {
  color: rgba(255, 255, 255, 0.72);
}

.sea-page-disclaimer {
  max-width: 1020px;
  margin: 27px auto 0;
  padding: 17px 21px;
  color: #647381;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 9px;
  font-size: 11.5px;
  line-height: 1.76;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .sea-meaning-card:hover,
  .sea-faith-grid article:hover,
  .sea-option-card:hover,
  .sea-checklist-grid article:hover {
    border-color: rgba(77, 131, 156, 0.28);
    box-shadow: 0 18px 38px rgba(17, 55, 92, 0.12);
    transform: translateY(-5px);
  }

  .sea-conditions-grid article:hover {
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(213, 180, 108, 0.38);
    transform: translateY(-4px);
  }

  .sea-gallery-photo:hover {
    border-color: rgba(77, 131, 156, 0.3);
    box-shadow: 0 21px 44px rgba(17, 55, 92, 0.15);
    transform: translateY(-4px);
  }

  .sea-gallery-photo:hover img {
    filter: saturate(0.96) contrast(1);
    transform: scale(1.035);
  }

  .sea-option-card a:hover > span {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sea-meaning-card,
  .sea-conditions-grid article,
  .sea-gallery-photo,
  .sea-gallery-photo img,
  .sea-faith-grid article,
  .sea-option-card,
  .sea-option-card a > span,
  .sea-checklist-grid article {
    transition: none;
  }

  .sea-meaning-card:hover,
  .sea-conditions-grid article:hover,
  .sea-gallery-photo:hover,
  .sea-faith-grid article:hover,
  .sea-option-card:hover,
  .sea-checklist-grid article:hover,
  .sea-gallery-photo:hover img,
  .sea-option-card a:hover > span {
    transform: none;
  }

  .sea-gallery-photo:hover img {
    filter: saturate(0.86) contrast(0.99);
  }
}

@media (max-width: 1100px) {
  .sea-conditions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sea-gallery-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

  .sea-option-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .sea-meaning-grid,
  .sea-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sea-meaning-card:last-child,
  .sea-option-card:last-child {
    grid-column: 1 / -1;
  }

  .sea-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sea-gallery-photo--feature {
    aspect-ratio: 4 / 3;
  }

  .sea-gallery-photo:not(.sea-gallery-photo--feature) {
    width: min(100%, 640px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .sea-ash-page .page-kicker {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 8.5px;
    line-height: 1.5;
    letter-spacing: 0.11em;
  }

  .sea-ash-page .page-kicker::before {
    width: 20px;
    flex: 0 0 20px;
  }

  .page-hero-media--sea img {
    object-position: 62% 50%;
  }

  .service-story-media--sea img {
    object-position: 70% 50%;
  }

  .sea-section-kicker {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 8.5px;
    line-height: 1.55;
    text-align: center;
  }

  .sea-section-kicker::before,
  .sea-section-kicker::after {
    width: 19px;
    flex: 0 0 19px;
  }

  .sea-meaning-grid,
  .sea-conditions-grid,
  .sea-faith-grid,
  .sea-option-grid,
  .sea-checklist-grid {
    grid-template-columns: 1fr;
  }

  .sea-meaning-card:last-child,
  .sea-option-card:last-child {
    grid-column: auto;
  }

  .sea-meaning-card {
    padding: 26px 23px 25px;
  }

  .sea-conditions-grid article {
    padding: 25px 22px 24px;
  }

  .sea-gallery-photo--feature {
    aspect-ratio: 1 / 1;
  }

  .sea-gallery-photo:not(.sea-gallery-photo--feature) {
    aspect-ratio: 16 / 10;
  }

  .sea-gallery-photo figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .sea-gallery-photo figcaption strong {
    font-size: 15px;
  }

  .sea-faith-grid article {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    padding: 22px 20px;
  }

  .sea-faith-grid article > span {
    width: 42px;
    height: 42px;
  }

  .sea-option-card {
    grid-template-columns: 43px minmax(0, 1fr);
    padding: 24px 21px;
  }

  .sea-checklist-grid article {
    padding: 21px 19px;
  }

  .sea-section-note,
  .sea-gallery-note,
  .sea-faith-note,
  .sea-conditions-note,
  .sea-page-disclaimer {
    font-size: 10.5px;
  }
}

@media (max-width: 460px) {
  .sea-faq-section .faq-guide ul {
    grid-template-columns: 1fr;
  }

  .sea-faq-section .faq-guide li,
  .sea-faq-section .faq-guide li > div {
    min-width: 0;
  }

  .sea-faq-section .faq-guide li small {
    overflow-wrap: anywhere;
  }

  .sea-option-card {
    grid-template-columns: 1fr;
  }

  .sea-faith-grid article {
    grid-template-columns: 1fr;
  }

  .sea-faith-grid article > span {
    grid-row: auto;
  }
}

/* Shared service-page finishing details */
.service-detail-faq .faq-list summary small {
  color: #657581;
}

.service-detail-faq .faq-guide li small {
  color: rgba(255, 255, 255, 0.72);
}

.service-page-disclaimer {
  max-width: 980px;
  margin: 27px auto 0;
  padding: 16px 20px;
  color: #647381;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 48, 83, 0.09);
  border-radius: 9px;
  font-size: 11.5px;
  line-height: 1.76;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .about-photo-card:hover {
    border-color: rgba(184, 138, 56, 0.28);
    box-shadow: 0 20px 42px rgba(17, 55, 92, 0.15);
    transform: translateY(-5px);
  }

  .about-photo-card:hover img {
    filter: saturate(0.98) contrast(1);
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-photo-card,
  .about-photo-card img {
    transition: none;
  }

  .about-photo-card:hover,
  .about-photo-card:hover img {
    transform: none;
  }
}

@media (max-width: 900px) {
  .christian-journey-grid,
  .sea-journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-photo-pair {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 27px;
  }

  .about-photo-card figcaption {
    right: 16px;
    bottom: 14px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .about-photo-card figcaption strong {
    font-size: 15px;
  }

  .christian-journey-grid,
  .sea-journey-grid {
    grid-template-columns: 1fr;
  }

  .service-page-disclaimer {
    padding: 15px 16px;
    font-size: 10.5px;
  }
}

@media (max-width: 460px) {
  .service-detail-faq .faq-guide ul {
    grid-template-columns: 1fr;
  }

  .service-detail-faq .faq-guide li,
  .service-detail-faq .faq-guide li > div {
    min-width: 0;
  }

  .service-detail-faq .faq-guide li small {
    overflow-wrap: anywhere;
  }
}
