:root {
  --paper: #f6f2e9;
  --paper-cool: #eef5f4;
  --warm-paper: #eadfcf;
  --surface: #fffdf8;
  --surface-soft: #fbf7ef;
  --ink: #31302d;
  --ink-deep: #252522;
  --muted: #6f6b64;
  --line: #d8c7ad;
  --line-soft: rgba(216, 199, 173, .62);
  --gold: #c99a51;
  --gold-soft: #f6c89a;
  --clay: #b9755c;
  --sage: #789983;
  --stone: #7f7692;
  --sky: #78aeb7;
  --mist: #e4eef0;
  --wash: #ebe0cf;
  --shadow: 0 22px 70px rgba(49, 48, 45, 0.14);
  --shadow-card: 0 18px 46px rgba(49, 48, 45, .085);
  --shadow-soft: 0 10px 30px rgba(49, 48, 45, .06);
  color-scheme: light;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f6f2e9 0%, #fbf8f1 48%, #eef5f4 100%);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  color: var(--ink-deep);
  background: rgba(246, 200, 154, .52);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: rgba(250, 247, 240, 0.86);
  border-bottom: 1px solid rgba(216, 199, 173, 0.64);
  backdrop-filter: blur(18px);
}

.site-header[data-scrolled] {
  background: rgba(250, 247, 240, 0.96);
  box-shadow: 0 12px 36px rgba(49, 48, 45, .09);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  transition: opacity .18s ease, transform .18s ease;
}

.brand-link:hover,
.brand-link:focus-visible {
  opacity: .9;
  transform: translateY(-1px);
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(49, 48, 45, .1));
}

.brand-word {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.brand-word strong {
  color: var(--ink-deep);
  font-size: 17px;
  font-weight: 750;
}

.brand-word small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 15px;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  overflow-wrap: anywhere;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  opacity: 0;
  transform: scaleX(.55);
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  font-weight: 700;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
  min-width: 96px;
  padding: 3px;
  border: 1px solid rgba(222, 208, 186, .9);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 8px 24px rgba(49, 48, 45, .05);
}

.language-switch button {
  min-width: 0;
  min-height: 34px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #fffaf1;
  background: var(--ink-deep);
  box-shadow: 0 8px 20px rgba(49, 48, 45, .16);
}

.language-switch button:focus-visible {
  outline: 2px solid rgba(201, 154, 81, .68);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(216, 199, 173, .92);
  border-radius: 50%;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 8px 24px rgba(49, 48, 45, .06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-deep);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(201, 154, 81, .68);
  outline-offset: 2px;
}

.nav-short {
  display: none;
}

.app-bottom-nav {
  display: none;
}

.site-link-hidden {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 760px;
  min-height: min(76svh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(80px, 9svh, 96px) clamp(22px, 6vw, 88px) clamp(28px, 4svh, 42px);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 242, 233, .98) 0%, rgba(246, 242, 233, .86) 34%, rgba(228, 238, 240, .58) 66%, rgba(255, 253, 248, .18) 100%),
    linear-gradient(180deg, rgba(120, 153, 131, .12), rgba(185, 117, 92, .08) 54%, rgba(246, 242, 233, .12)),
    url("./assets/hero-dawn-inkscape.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(247, 245, 239, 0), var(--paper));
}

.hero-content {
  position: relative;
  width: min(690px, 100%);
  padding-top: 18px;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
}

.hero-brandline {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--ink-deep);
  font-weight: 750;
  line-height: 1.12;
}

.hero-mark {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0;
  filter: drop-shadow(0 16px 26px rgba(49, 48, 45, .1));
}

.hero-brandline span {
  grid-column: 2;
  font-size: 20px;
}

.hero-brandline small {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2 {
  font-family: "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif;
  font-weight: 500;
}

h1 {
  font-size: 70px;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink-deep);
}

.hero h1 {
  font-family: "Segoe UI", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 68px;
  font-weight: 720;
  line-height: 1;
  word-break: normal;
  text-shadow: 0 1px 0 rgba(255, 253, 248, .52);
}

.hero-name {
  margin-top: 10px;
  color: #a96f3e;
  font-size: 23px;
  letter-spacing: 0;
}

.hero-line {
  margin-top: 18px;
  color: var(--ink-deep);
  font-family: "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif;
  font-size: 23px;
  letter-spacing: 0;
}

.hero-copy {
  width: min(590px, 100%);
  margin-top: 14px;
  color: #5f5b54;
  font-size: 18px;
  line-height: 1.74;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: auto;
}

.hero-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  width: min(610px, 100%);
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 199, 173, .78);
  border-left: 3px solid rgba(120, 153, 131, .76);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, .62);
  font-size: 15px;
  box-shadow: 0 12px 32px rgba(49, 48, 45, .055);
}

.hero-focus span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-focus span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.hero-focus span:nth-child(2)::before {
  background: var(--gold);
}

.hero-focus span:nth-child(3)::before {
  background: var(--stone);
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  box-shadow: 0 10px 26px rgba(49, 48, 45, .055);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(49, 48, 45, .09);
}

.button:focus-visible {
  outline: 2px solid rgba(120, 174, 183, .58);
  outline-offset: 3px;
}

.button.primary {
  color: #fffaf1;
  background: linear-gradient(135deg, var(--ink-deep), #3b3a34);
  border-color: rgba(37, 37, 34, .94);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, #1f201d, #3f483d);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, .82);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(201, 154, 81, .62);
  background: rgba(255, 253, 248, .96);
}

.contact-actions .button.primary {
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 22px;
  color: var(--ink-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(201, 154, 81, .6);
  transition: color .18s ease, border-color .18s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

.section-band {
  position: relative;
  padding: clamp(70px, 8vw, 118px) clamp(22px, 6vw, 88px);
  border-top: 1px solid rgba(216, 199, 173, .34);
}

.section-band.light {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .94), rgba(242, 247, 246, .94)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.section-band.ink {
  color: #f9f3e9;
  background:
    linear-gradient(135deg, rgba(37, 37, 34, .98), rgba(48, 55, 49, .96) 52%, rgba(50, 46, 62, .94)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, rgba(201, 154, 81, .65), rgba(120, 174, 183, 0));
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 42px;
}

.section-heading p:not(.section-kicker) {
  width: min(660px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section-heading.narrow {
  width: min(680px, 100%);
}

.section-link {
  margin-top: 28px;
}

h2 {
  max-width: 820px;
  font-size: 50px;
  line-height: 1.25;
  letter-spacing: 0;
}

h2 span {
  display: block;
}

.belief h2 {
  max-width: 760px;
  color: var(--ink-deep);
  font-size: 46px;
  font-weight: 430;
  line-height: 1.48;
  text-wrap: balance;
}

.belief h2 span + span {
  margin-top: .08em;
}

.belief .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(201, 154, 81, .46);
}

.belief .section-kicker::after {
  content: none;
}

.belief-grid,
.launch-care-grid,
.contact-grid,
.audience-grid,
.faq-grid,
.page-hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.belief-grid > *,
.launch-care-grid > *,
.contact-grid > *,
.audience-grid > *,
.faq-grid > *,
.page-hero-grid > *,
.split-grid > * {
  min-width: 0;
}

.page-hero {
  position: relative;
  min-height: 560px;
  min-height: min(58svh, 620px);
  display: grid;
  align-items: end;
  padding-top: 150px;
  background:
    linear-gradient(90deg, rgba(246, 242, 233, .98), rgba(246, 242, 233, .83), rgba(228, 238, 240, .56)),
    linear-gradient(180deg, rgba(120, 153, 131, .1), rgba(255, 253, 248, .06)),
    url("./assets/hero-dawn-inkscape.png") center / cover no-repeat;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 96px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(246, 242, 233, 0), var(--paper));
  pointer-events: none;
}

.page-hero > .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
}

.page-lead {
  display: grid;
  gap: 18px;
  align-self: end;
  padding-left: 24px;
  border-left: 2px solid rgba(120, 153, 131, .55);
  color: var(--muted);
  font-size: 19px;
  line-height: 1.86;
}

.page-lead .button {
  justify-self: start;
  margin-top: 8px;
}

.page-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 2px;
}

.page-lead-actions .button {
  margin-top: 0;
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-assurance span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding-left: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.contact-assurance span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.contact-assurance span:nth-child(2)::before {
  background: var(--gold);
}

.contact-assurance span:nth-child(3)::before {
  background: var(--stone);
}

#enquiry-builder {
  scroll-margin-top: 98px;
}

#method-details {
  scroll-margin-top: 98px;
}

.sticky-heading {
  position: sticky;
  top: 110px;
}

.belief-copy {
  display: grid;
  gap: 18px;
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 2px solid rgba(120, 153, 131, .42);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.belief {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .98), rgba(239, 247, 246, .82)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.standards {
  background:
    linear-gradient(180deg, rgba(247, 244, 236, .97), rgba(237, 246, 245, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.standards-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.standards-grid > * {
  min-width: 0;
}

.standard-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(246, 200, 154, .26);
  border-radius: 8px;
  color: rgba(249, 243, 233, .78);
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 200, 154, .16), transparent 30%),
    radial-gradient(circle at 90% 14%, rgba(120, 174, 183, .16), transparent 28%),
    linear-gradient(135deg, #252522, #30372f 58%, #322e3e);
  box-shadow: 0 24px 70px rgba(49, 48, 45, .16);
}

.standard-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .78), rgba(127, 118, 146, .52));
}

.standard-board article {
  position: relative;
  min-height: 210px;
  padding: clamp(24px, 3vw, 32px);
  border-right: 1px solid rgba(246, 200, 154, .14);
  border-bottom: 1px solid rgba(246, 200, 154, .14);
}

.standard-board article:nth-child(2n) {
  border-right: 0;
}

.standard-board article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.standard-board span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 750;
}

.standard-board h3 {
  color: rgba(255, 250, 241, .94);
}

.standard-board p {
  margin-top: 12px;
  color: rgba(249, 243, 233, .72);
  font-size: 15px;
  line-height: 1.74;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 32px 30px 34px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(244, 239, 231, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .72), rgba(127, 118, 146, .34));
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--sage), var(--sky), rgba(201, 154, 81, .34));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--stone), rgba(246, 200, 154, .82), rgba(120, 174, 183, .44));
}

.service-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 92px;
  height: 18px;
  border-bottom: 2px solid rgba(201, 154, 81, .28);
  transform: rotate(-4deg);
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(201, 154, 81, .56);
  box-shadow: 0 24px 58px rgba(49, 48, 45, .12);
}

.service-card img {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 98px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 18px rgba(49, 48, 45, .08));
}

h3 {
  position: relative;
  z-index: 1;
  color: var(--ink-deep);
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: 0;
}

.service-card p,
.launch-care-copy,
.contact-actions p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.service-points,
.contact-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-points li,
.contact-list li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(120, 174, 183, .35);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(228, 238, 240, .58);
  font-size: 13px;
  line-height: 1.3;
}

.contact-list {
  flex-basis: 100%;
  margin-top: 12px;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(239, 247, 246, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.business-focus {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(238, 246, 244, .92)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

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

.business-focus-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(216, 199, 173, .82);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow-card);
}

.business-focus-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}

.business-focus-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), var(--sky));
}

.business-focus-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--stone), rgba(120, 174, 183, .74));
}

.business-focus-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.business-focus-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.business-focus-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.business-focus-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.business-focus-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.outcome-strip {
  background:
    linear-gradient(180deg, rgba(250, 246, 239, .98), rgba(255, 253, 248, .94)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.outcome-grid,
.service-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 199, 173, .82);
  border-radius: 8px;
  background: rgba(216, 199, 173, .82);
  box-shadow: var(--shadow-card);
}

.outcome-grid article,
.service-use-grid article {
  position: relative;
  min-height: 270px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.outcome-grid article::before,
.service-use-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .72));
}

.outcome-grid article:nth-child(2)::before,
.service-use-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--sage), var(--sky));
}

.outcome-grid article:nth-child(3)::before,
.service-use-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--stone), rgba(246, 200, 154, .82));
}

.outcome-grid article:nth-child(4)::before,
.service-use-grid article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--clay), rgba(120, 174, 183, .62));
}

.outcome-grid span,
.service-use-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 26px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 154, 81, .24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 253, 248, .72);
  font-size: 13px;
  font-weight: 760;
}

.outcome-grid p,
.service-use-grid p,
.service-use-grid dd {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.outcome-grid p,
.service-use-grid p {
  margin-top: 14px;
}

.service-use-grid dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.service-use-grid div {
  padding-top: 14px;
  border-top: 1px solid rgba(216, 199, 173, .68);
}

.service-use-grid dt {
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 760;
}

.service-use-grid dd {
  margin: 6px 0 0;
}

.decision {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .98), rgba(250, 246, 239, .92)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(216, 199, 173, .82);
  border-radius: 8px;
  background: rgba(216, 199, 173, .82);
  box-shadow: var(--shadow-card);
}

.decision-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.decision-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .68));
}

.decision-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--sage), var(--sky));
}

.decision-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--stone), rgba(246, 200, 154, .82));
}

.decision-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--clay), rgba(120, 174, 183, .62));
}

.decision-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 750;
}

.decision-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

.decision-card .text-link {
  margin-top: 18px;
}

.audience {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .98), rgba(250, 246, 239, .96)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.readiness {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(235, 245, 244, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.readiness-grid > * {
  min-width: 0;
}

.readiness-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.audience-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-card);
}

.audience-list article {
  position: relative;
  min-height: 160px;
  padding: 28px 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .92)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  transition: background .18s ease;
}

.audience-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sage), rgba(201, 154, 81, .54));
}

.audience-list article:hover {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(239, 247, 246, .86)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.audience-list span,
.starter-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.audience-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

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

.status-list article {
  position: relative;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.status-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 153, 131, .46);
  box-shadow: var(--shadow-card);
}

.status-list.compact article {
  min-height: 150px;
}

.status-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--sky), rgba(201, 154, 81, .58));
}

.status-list span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.status-list p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

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

.starter-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.starter-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 81, .52);
  box-shadow: 0 24px 58px rgba(49, 48, 45, .11);
}

.starter-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 154, 81, .55), rgba(120, 174, 183, 0));
}

.starter-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.starter-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.starter-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.starter-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

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

.stack-list article,
.note-grid article,
.method-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.stack-list article:hover,
.note-grid article:hover,
.method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 174, 183, .42);
  box-shadow: var(--shadow-card);
}

.stack-list p,
.note-grid p,
.method-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

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

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

.method-overview {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .98), rgba(235, 245, 244, .88)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.method-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.method-status-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 200, 154, .24);
  border-radius: 8px;
  color: rgba(249, 243, 233, .76);
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 200, 154, .15), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(120, 174, 183, .15), transparent 28%),
    linear-gradient(135deg, #252522, #30372f 58%, #322e3e);
  box-shadow: 0 24px 70px rgba(49, 48, 45, .16);
}

.method-status-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .78), rgba(127, 118, 146, .52));
}

.method-status-panel article {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(24px, 3.2vw, 34px);
  border-bottom: 1px solid rgba(246, 200, 154, .13);
}

.method-status-panel article:last-child {
  border-bottom: 0;
}

.method-status-panel span {
  align-self: start;
  display: inline-flex;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(246, 200, 154, .22);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 253, 248, .06);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.method-status-panel h3 {
  color: rgba(255, 250, 241, .94);
}

.method-status-panel p {
  margin-top: 10px;
  color: rgba(249, 243, 233, .7);
  font-size: 15px;
  line-height: 1.78;
}

.method-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.method-card {
  overflow: hidden;
  min-height: 250px;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .72), rgba(127, 118, 146, .34));
}

.method-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--sage), var(--sky), rgba(201, 154, 81, .38));
}

.method-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--stone), rgba(246, 200, 154, .82), rgba(120, 174, 183, .48));
}

.method-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: end;
  min-height: 300px;
  border-color: rgba(246, 200, 154, .24);
  color: rgba(249, 243, 233, .76);
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 200, 154, .14), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(120, 174, 183, .14), transparent 26%),
    linear-gradient(135deg, #252522, #30372f 58%, #322e3e);
  box-shadow: 0 24px 70px rgba(49, 48, 45, .16);
}

.method-card-featured h3 {
  color: rgba(255, 250, 241, .94);
}

.method-card-featured p {
  color: rgba(249, 243, 233, .72);
}

.method-card-featured .text-link {
  color: rgba(255, 250, 241, .92);
  border-color: rgba(246, 200, 154, .55);
}

.method-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.method-card-featured .method-points {
  align-self: end;
  justify-content: flex-start;
  margin-top: 0;
}

.method-points li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(120, 174, 183, .35);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(228, 238, 240, .58);
  font-size: 13px;
  line-height: 1.3;
}

.method-card-featured .method-points li {
  color: rgba(255, 250, 241, .82);
  border-color: rgba(246, 200, 154, .22);
  background: rgba(255, 253, 248, .07);
}

.brief-box {
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-card);
}

.email-outline {
  display: grid;
  gap: 20px;
  margin: 0;
}

.email-outline div {
  display: grid;
  grid-template-columns: minmax(110px, .34fr) minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(222, 208, 186, .8);
}

.email-outline div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.email-outline dt {
  color: var(--ink-deep);
  font-weight: 700;
  line-height: 1.5;
}

.email-outline dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.inquiry-form {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-card);
}

.inquiry-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--sky), rgba(201, 154, 81, .78));
}

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

.inquiry-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.inquiry-form label span {
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(216, 199, 173, .92);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 253, 248, .9);
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .54);
}

.inquiry-form input,
.inquiry-form select {
  min-height: 46px;
  padding: 0 13px;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 12px 13px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(120, 174, 183, .46);
  outline-offset: 2px;
  border-color: rgba(120, 153, 131, .76);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.inquiry-form .button {
  margin-top: 20px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 56px);
}

.page-cta > div {
  min-width: 0;
}

.page-cta h2 {
  max-width: 850px;
}

.page-cta p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.page-cta .button {
  flex: 0 0 auto;
  min-width: 190px;
}

.service-detail-list {
  display: grid;
  gap: 22px;
}

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

.service-snapshot-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-snapshot-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .72), rgba(127, 118, 146, .34));
}

.service-snapshot-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--sage), var(--sky), rgba(201, 154, 81, .38));
}

.service-snapshot-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--stone), rgba(246, 200, 154, .82), rgba(120, 174, 183, .48));
}

.service-snapshot-card:hover,
.service-snapshot-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(120, 153, 131, .5);
  box-shadow: var(--shadow-card);
}

.service-snapshot-card > span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 154, 81, .24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 253, 248, .72);
  font-size: 13px;
  font-weight: 700;
}

.service-snapshot-card dl {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
}

.service-snapshot-card div {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(216, 199, 173, .68);
}

.service-snapshot-card dt {
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 750;
}

.service-snapshot-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-detail {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .88)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-card);
}

.service-detail img {
  width: 150px;
  height: 110px;
  object-fit: contain;
}

.service-detail p:not(.section-kicker) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.process .section-kicker {
  color: var(--gold-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
  border: 1px solid rgba(246, 200, 154, .24);
  border-radius: 8px;
  background: rgba(246, 200, 154, .24);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(44, 44, 39, .82), rgba(37, 37, 34, .74)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.process-list li::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(246, 200, 154, .55), rgba(142, 185, 189, 0));
}

.process-list span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold-soft);
  font-size: 14px;
  letter-spacing: 0;
}

.process-list strong {
  display: block;
  font-size: 24px;
  letter-spacing: 0;
}

.process-list p {
  margin-top: 16px;
  color: rgba(249, 243, 233, .72);
  font-size: 16px;
  line-height: 1.72;
}

.launch-care {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .96), rgba(235, 245, 244, .74)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.launch-care-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow-card);
}

.launch-care-panel div {
  position: relative;
  min-height: 190px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.launch-care-panel div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(120, 174, 183, .58));
}

.launch-care-panel span {
  display: block;
  color: var(--gold);
  font-family: "Noto Serif TC", "Source Han Serif TC", "PMingLiU", serif;
  font-size: 36px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.launch-care-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-grid {
  align-items: center;
}

.contact {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .95), rgba(244, 239, 231, .86)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

.faq {
  background:
    linear-gradient(180deg, rgba(246, 242, 233, .98), rgba(235, 245, 244, .88)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
}

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

.faq-list.wide {
  width: min(980px, 100%);
}

.faq-list details {
  border: 1px solid rgba(216, 199, 173, .86);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow-soft);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.faq-list details:hover,
.faq-list details:focus-within,
.faq-list details[open] {
  border-color: rgba(120, 153, 131, .48);
  background: rgba(255, 253, 248, .98);
  box-shadow: var(--shadow-card);
}

.faq-list details:hover,
.faq-list details:focus-within {
  transform: translateY(-1px);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink-deep);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.faq-list summary::marker {
  content: "";
}

.faq-list summary::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border: 1px solid rgba(201, 154, 81, .34);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 253, 248, .72);
  font-family: "Segoe UI", "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::before {
  content: "-";
  color: #fffaf1;
  border-color: rgba(37, 37, 34, .9);
  background: var(--ink-deep);
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.contact-actions {
  margin-top: 0;
  align-content: start;
}

.contact-actions p {
  flex-basis: 100%;
  margin-top: 4px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 34px clamp(22px, 6vw, 88px);
  color: rgba(249, 243, 233, .76);
  background:
    radial-gradient(circle at 16% 0%, rgba(246, 200, 154, .16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(120, 174, 183, .14), transparent 24%),
    linear-gradient(135deg, #252522, #30372f 58%, #322e3e);
  border-top: 1px solid rgba(246, 200, 154, .18);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(120, 174, 183, .82), rgba(127, 118, 146, .55));
}

.footer-inner {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(2.3) opacity(.86);
}

.footer-brand span {
  display: grid;
  gap: 2px;
  line-height: 1.14;
}

.footer-brand strong {
  color: rgba(249, 243, 233, .9);
  font-size: 16px;
}

.footer-brand small {
  color: rgba(249, 243, 233, .62);
  font-size: 12px;
}

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

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 200, 154, .24);
  border-radius: 999px;
  color: rgba(249, 243, 233, .72);
  background: rgba(255, 253, 248, .045);
  font-size: 13px;
  line-height: 1.25;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  transform: translateY(-1px);
  color: #fffaf1;
  border-color: rgba(246, 200, 154, .48);
  background: rgba(255, 253, 248, .1);
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(120, 174, 183, .56);
  outline-offset: 3px;
}

.footer-inner p {
  justify-self: end;
  max-width: 560px;
  color: rgba(249, 243, 233, .66);
  font-size: 14px;
  line-height: 1.62;
  text-align: right;
}

.admin-page {
  background: var(--paper);
}

.admin-main {
  padding-top: 72px;
}

.admin-mini-nav {
  justify-content: flex-end;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-locked [data-admin-protected],
.admin-denied [data-admin-protected],
.admin-authorized [data-admin-gate] {
  display: none !important;
}

.admin-access-panel {
  max-width: 820px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow-soft);
}

.admin-access-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.admin-access-panel p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.admin-panel {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(246, 242, 233, .9)),
    url("./assets/brand-texture.svg") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.admin-panel h2,
.admin-setup-note h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.admin-panel p,
.admin-setup-note p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

.admin-panel .button {
  margin-top: 22px;
}

.admin-panel-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.admin-action-stack .button {
  min-width: 126px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(222, 208, 186, .74);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.admin-table strong,
.admin-table small {
  display: block;
}

.admin-table small {
  max-width: 320px;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-table input[type="text"] {
  width: min(180px, 100%);
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 8px;
  background: rgba(255, 253, 248, .88);
  color: var(--ink);
  font: inherit;
}

.admin-checkbox {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  cursor: pointer;
}

.admin-checkbox input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.admin-checkbox span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 999px;
  background: rgba(222, 208, 186, .52);
  transition: background .18s ease, border-color .18s ease;
}

.admin-checkbox span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fffaf1;
  box-shadow: 0 4px 12px rgba(49, 48, 45, .14);
  transition: transform .18s ease;
}

.admin-checkbox input:checked + span {
  border-color: rgba(37, 37, 34, .88);
  background: var(--ink-deep);
}

.admin-checkbox input:checked + span::after {
  transform: translateX(20px);
}

.admin-checkbox input:disabled + span {
  opacity: .46;
  cursor: not-allowed;
}

.admin-delete-link {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(185, 117, 92, .3);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(185, 117, 92, .08);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.admin-status {
  min-height: 28px;
}

.admin-status[data-tone="success"] {
  color: var(--sage);
}

.admin-status[data-tone="error"] {
  color: #9b4d3d;
}

.site-section-hidden {
  display: none !important;
}

.admin-field-block {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: var(--ink);
  font-weight: 760;
}

.admin-field-block select {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font: inherit;
}

.admin-save-hint,
.admin-draft-status,
.admin-empty-state,
.admin-warning {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-draft-status {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 199, 173, .76);
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
  line-height: 1.58;
}

.admin-draft-status[data-state="draft"] {
  border-color: rgba(155, 113, 47, .42);
  color: var(--ink);
}

.admin-diff-summary {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 199, 173, .76);
  border-radius: 8px;
  background: rgba(255, 253, 248, .74);
}

.admin-diff-summary[data-state="changed"] {
  border-color: rgba(155, 113, 47, .42);
  background: rgba(246, 242, 233, .6);
}

.admin-diff-summary h3 {
  font-size: 16px;
}

.admin-diff-summary ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.admin-diff-summary li,
.admin-diff-summary p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.admin-diff-summary[data-state="changed"] li {
  color: var(--ink);
}

.admin-draft-impact {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 199, 173, .76);
  border-radius: 8px;
  background: rgba(255, 253, 248, .68);
}

.admin-draft-impact[data-state="changed"] {
  border-color: rgba(120, 153, 131, .36);
  background: rgba(237, 246, 245, .5);
}

.admin-draft-impact h3 {
  font-size: 16px;
}

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

.admin-impact-item {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(216, 199, 173, .62);
  border-radius: 8px;
  background: rgba(255, 253, 248, .78);
}

.admin-impact-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.admin-impact-item strong {
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.admin-impact-preview.button {
  flex: 0 0 auto;
  min-height: 32px;
  min-width: auto;
  margin-top: 0;
  padding: 7px 12px;
  font-size: 13px;
}

.admin-impact-item p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.admin-impact-item span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border: 1px solid rgba(120, 153, 131, .22);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(120, 153, 131, .08);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
}

.site-preview-banner {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 80;
  max-width: min(320px, calc(100vw - 36px));
  padding: 10px 14px;
  border: 1px solid rgba(155, 113, 47, .4);
  border-radius: 8px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 16px 38px rgba(56, 39, 20, .16);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.admin-warning {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(185, 117, 92, .22);
  border-radius: 8px;
  background: rgba(185, 117, 92, .08);
  color: #8a493a;
}

.admin-content-list {
  display: grid;
  gap: 16px;
}

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

.admin-history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(222, 208, 186, .78);
  border-radius: 8px;
  background: rgba(255, 253, 248, .84);
}

.admin-history-item span,
.admin-history-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.admin-history-item h3 {
  margin-top: 4px;
  font-size: 18px;
}

.admin-history-item p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.admin-history-item .button {
  margin-top: 0;
  min-width: 128px;
}

.admin-edit-block {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(222, 208, 186, .78);
  border-radius: 8px;
  background: rgba(255, 253, 248, .72);
}

.admin-edit-block-heading h3 {
  font-size: 20px;
}

.admin-edit-block-heading p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

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

.admin-meta-language {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(216, 199, 173, .76);
  border-radius: 8px;
  background: rgba(246, 242, 233, .42);
}

.admin-meta-language legend {
  padding: 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.admin-meta-language label,
.admin-link-field label {
  display: grid;
  gap: 6px;
}

.admin-meta-language label span,
.admin-link-field label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.admin-meta-language textarea,
.admin-link-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 8px;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.admin-meta-language textarea {
  resize: vertical;
}

.admin-link-editor {
  display: grid;
  gap: 10px;
}

.admin-link-field {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 199, 173, .66);
  border-radius: 8px;
  background: rgba(255, 253, 248, .64);
}

.admin-link-field p {
  margin: 6px 0 0;
}

.admin-link-field p span,
.admin-link-field p small {
  display: block;
}

.admin-link-field p span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.admin-link-field p small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-media-editor,
.admin-form-editor {
  display: grid;
  gap: 12px;
}

.admin-media-field {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 199, 173, .66);
  border-radius: 8px;
  background: rgba(255, 253, 248, .64);
}

.admin-media-preview {
  display: grid;
  place-items: center;
  min-height: 112px;
  border: 1px solid rgba(120, 153, 131, .18);
  border-radius: 8px;
  background: rgba(246, 242, 233, .58);
}

.admin-media-preview img {
  max-width: 108px;
  max-height: 84px;
  object-fit: contain;
}

.admin-media-fields,
.admin-option-list {
  display: grid;
  gap: 10px;
}

.admin-media-fields p,
.admin-option-editor p {
  margin: 0;
}

.admin-media-fields p span,
.admin-media-fields p small,
.admin-form-field summary span,
.admin-form-field summary small,
.admin-option-editor p span,
.admin-option-editor p small {
  display: block;
}

.admin-media-fields p span,
.admin-form-field summary span,
.admin-option-editor p span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.admin-media-fields p small,
.admin-form-field summary small,
.admin-option-editor p small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-media-fields label,
.admin-option-editor label {
  display: grid;
  gap: 6px;
}

.admin-media-fields label span,
.admin-option-editor label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.admin-media-fields input,
.admin-option-editor input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 8px;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.admin-form-field {
  border: 1px solid rgba(216, 199, 173, .66);
  border-radius: 8px;
  background: rgba(255, 253, 248, .64);
  overflow: hidden;
}

.admin-form-field summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(216, 199, 173, .58);
  cursor: pointer;
  list-style: none;
}

.admin-form-field summary::-webkit-details-marker {
  display: none;
}

.admin-form-field summary::marker {
  content: "";
}

.admin-option-list {
  padding: 12px;
}

.admin-option-editor {
  display: grid;
  grid-template-columns: minmax(140px, .3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 199, 173, .46);
  border-radius: 8px;
  background: rgba(246, 242, 233, .34);
}

.admin-content-card {
  border: 1px solid rgba(222, 208, 186, .78);
  border-radius: 8px;
  background: rgba(255, 253, 248, .84);
  overflow: hidden;
}

.admin-content-card summary::-webkit-details-marker {
  display: none;
}

.admin-content-card summary::marker {
  content: "";
}

.admin-content-card-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(222, 208, 186, .72);
  cursor: pointer;
  list-style: none;
}

.admin-content-card-heading::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 154, 81, .28);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 253, 248, .78);
  font-size: 18px;
  line-height: 1;
}

.admin-content-card[open] .admin-content-card-heading::after {
  content: "-";
  color: #fffaf1;
  border-color: rgba(37, 37, 34, .9);
  background: var(--ink-deep);
}

.admin-content-card-heading h3 {
  font-size: 20px;
}

.admin-content-card-heading small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.admin-section-meta {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 5px 9px;
  border: 1px solid rgba(120, 153, 131, .2);
  border-radius: 999px;
  color: var(--sage);
  background: rgba(120, 153, 131, .08);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.admin-content-card-tools {
  display: flex;
  justify-content: flex-end;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(222, 208, 186, .58);
  background: rgba(246, 242, 233, .5);
}

.admin-toggle-line {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.admin-content-fields {
  display: grid;
  gap: 14px;
  padding: 16px 18px 18px;
}

.admin-field-editor {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-field-editor > p {
  display: grid;
  gap: 6px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-field-editor > p span {
  color: var(--ink);
}

.admin-field-editor > p small {
  display: -webkit-box;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.admin-field-editor label {
  display: grid;
  gap: 6px;
}

.admin-field-editor label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.admin-field-editor textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 10px 12px;
  border: 1px solid rgba(216, 199, 173, .9);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 74px;
  }

  .brand-link {
    min-width: 190px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-word strong {
    font-size: 15px;
  }

  .brand-word small {
    font-size: 11px;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .language-switch {
    min-width: 88px;
  }

  .language-switch button {
    min-height: 32px;
    padding-inline: 9px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    min-height: min(82svh, 820px);
    padding-top: 102px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 40px;
  }

  .belief h2 {
    font-size: 34px;
    line-height: 1.5;
  }

  .hero-name {
    font-size: 23px;
  }

  .hero-line {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(247, 244, 236, .94) 0%, rgba(247, 244, 236, .76) 50%, rgba(228, 238, 240, .44) 100%),
      url("./assets/hero-dawn-inkscape.png") 60% center / cover no-repeat;
  }

  .belief-grid,
  .business-focus-grid,
  .launch-care-grid,
  .contact-grid,
  .audience-grid,
  .readiness-grid,
  .faq-grid,
  .page-hero-grid,
  .split-grid,
  .standards-grid,
  .admin-grid,
  .method-overview-grid,
  .method-status-panel article,
  .service-grid,
  .outcome-grid,
  .decision-grid,
  .service-snapshot-grid,
  .service-use-grid,
  .starter-grid,
  .process-list,
  .note-grid,
  .method-grid,
  .method-card-featured,
  .service-detail,
  .check-list {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .belief-copy {
    padding-left: 22px;
  }

  .process-list li {
    min-height: 0;
  }

  .standard-board article {
    min-height: 0;
  }

  .method-card-featured {
    min-height: 0;
  }

  .method-card-featured .method-points {
    margin-top: 6px;
  }

  .launch-care-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-inner p {
    justify-self: start;
    text-align: left;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-content-card-heading,
  .admin-history-item,
  .admin-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-content-card-heading {
    flex-direction: row;
  }

  .admin-action-stack,
  .admin-action-stack .button {
    width: 100%;
  }

  .admin-action-stack {
    align-items: stretch;
    justify-content: flex-start;
  }

  .admin-section-meta {
    white-space: normal;
  }

  .admin-impact-grid {
    grid-template-columns: 1fr;
  }

  .admin-impact-heading {
    align-items: flex-start;
  }

  .admin-history-item {
    grid-template-columns: 1fr;
  }

  .admin-history-item .button {
    width: 100%;
  }

  .admin-meta-editor,
  .admin-link-field,
  .admin-media-field,
  .admin-option-editor {
    grid-template-columns: 1fr;
  }

  .admin-field-editor {
    grid-template-columns: 1fr;
  }

  .admin-field-editor > p {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand language menu"
      "nav nav nav";
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
    background: rgba(250, 247, 240, .97);
    box-shadow: 0 12px 34px rgba(49, 48, 45, .08);
  }

  .brand-link {
    grid-area: brand;
    min-width: 0;
    gap: 10px;
  }

  .site-nav {
    grid-area: nav;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    max-height: 0;
    gap: 8px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-top: 0 solid transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: max-height .22s ease, opacity .18s ease, padding .18s ease, border-color .18s ease, transform .18s ease;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 42px;
    padding: 10px 8px;
    border: 1px solid rgba(216, 199, 173, .7);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 253, 248, .78);
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav a:last-child {
    display: flex;
    grid-column: 1 / -1;
    min-height: 46px;
    color: #fffaf1;
    border-color: rgba(37, 37, 34, .88);
    background: linear-gradient(135deg, var(--ink-deep), #3d4439);
    box-shadow: 0 12px 26px rgba(49, 48, 45, .14);
  }

  .site-nav a[aria-current="page"] {
    border-color: rgba(120, 153, 131, .56);
    background: rgba(228, 238, 240, .58);
  }

  .site-nav a:last-child[aria-current="page"] {
    color: #fffaf1;
    border-color: rgba(37, 37, 34, .88);
    background: linear-gradient(135deg, var(--ink-deep), #3d4439);
  }

  .site-header[data-menu-open] .site-nav {
    max-height: 400px;
    padding: 12px 0 6px;
    border-top-width: 1px;
    border-top-color: rgba(216, 199, 173, .62);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header[data-menu-open] .menu-toggle {
    border-color: rgba(37, 37, 34, .86);
    background: var(--ink-deep);
  }

  .site-header[data-menu-open] .menu-toggle span {
    background: #fffaf1;
  }

  .site-header[data-menu-open] ~ .app-bottom-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .app-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 8px;
    z-index: 22;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    padding: 7px 7px calc(7px + env(safe-area-inset-bottom));
    border: 1px solid rgba(216, 199, 173, .82);
    border-radius: 24px;
    color: var(--muted);
    background: rgba(255, 253, 248, .92);
    box-shadow: 0 16px 44px rgba(49, 48, 45, .18);
    backdrop-filter: blur(20px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .app-bottom-nav a {
    display: grid;
    grid-template-rows: 24px auto;
    place-items: center;
    min-width: 0;
    min-height: 56px;
    padding: 6px 3px 5px;
    border: 1px solid transparent;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  }

  .app-bottom-nav a:hover,
  .app-bottom-nav a:focus-visible {
    color: var(--ink-deep);
    background: rgba(228, 238, 240, .58);
  }

  .app-bottom-nav a:focus-visible {
    outline: 2px solid rgba(120, 174, 183, .58);
    outline-offset: 2px;
  }

  .app-bottom-nav a[aria-current="page"] {
    color: #fffaf1;
    border-color: rgba(37, 37, 34, .88);
    background: linear-gradient(145deg, var(--ink-deep), #3b443b);
    box-shadow: 0 10px 22px rgba(49, 48, 45, .18);
    transform: translateY(-2px);
  }

  .app-nav-icon {
    position: relative;
    width: 24px;
    height: 24px;
    color: currentColor;
  }

  .app-nav-icon::before,
  .app-nav-icon::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
  }

  .app-nav-home::before {
    left: 5px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    border-radius: 3px 0 0 0;
    transform: rotate(45deg);
  }

  .app-nav-home::after {
    left: 7px;
    top: 12px;
    width: 10px;
    height: 8px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 3px 3px;
  }

  .app-nav-services::before,
  .app-nav-services::after {
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 3px;
  }

  .app-nav-services::before {
    left: 4px;
    top: 4px;
    box-shadow: 10px 0 0 -2px currentColor, 0 10px 0 -2px currentColor, 10px 10px 0 -2px currentColor;
  }

  .app-nav-services::after {
    left: 14px;
    top: 14px;
  }

  .app-nav-projects::before {
    left: 5px;
    top: 4px;
    width: 14px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 4px;
  }

  .app-nav-projects::after {
    left: 8px;
    top: 9px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 5px 0 currentColor;
  }

  .app-nav-start::before {
    left: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
  }

  .app-nav-start::after {
    left: 10px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 -7px 0 -1px currentColor, 0 7px 0 -1px currentColor, -7px 0 0 -1px currentColor, 7px 0 0 -1px currentColor;
  }

  .app-nav-faq::before {
    left: 4px;
    top: 5px;
    width: 16px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 6px;
  }

  .app-nav-faq::after {
    left: 8px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: skew(-18deg) rotate(-12deg);
  }

  .app-nav-contact::before {
    left: 4px;
    top: 6px;
    width: 16px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 4px;
  }

  .app-nav-contact::after {
    left: 7px;
    top: 8px;
    width: 10px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
  }

  .language-switch {
    position: static;
    grid-area: language;
    min-width: 84px;
    align-self: center;
  }

  .menu-toggle {
    grid-area: menu;
    display: grid;
    flex: 0 0 auto;
  }

  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: 30px 18px 18px;
  }

  .business-focus.section-band {
    padding-top: 30px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 58px;
  }

  .readiness-actions {
    gap: 10px;
  }

  .page-lead {
    font-size: 16px;
  }

  .hero-brandline {
    display: none;
  }

  h1 {
    font-size: 41px;
    letter-spacing: 0;
  }

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

  .hero-name {
    font-size: 19px;
    letter-spacing: 0;
  }

  .hero-line {
    margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0;
  }

  .hero-copy {
    width: 100%;
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.68;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    line-break: auto;
  }

  .hero-focus {
    gap: 10px 14px;
    margin-top: 16px;
    padding: 12px 14px;
    font-size: 14px;
    background: rgba(255, 253, 248, .76);
  }

  .belief-copy p,
  .service-card p,
  .launch-care-copy,
  .contact-actions p {
    word-break: normal;
    line-break: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-content {
    padding-top: 16px;
  }

  .button {
    width: 100%;
  }

  .page-lead {
    gap: 16px;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(120, 153, 131, .42);
    border-left: 0;
    line-height: 1.72;
  }

  .page-lead-actions {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .contact-assurance {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-assurance span {
    justify-content: flex-start;
    min-height: 24px;
  }

  #enquiry-builder {
    scroll-margin-top: 118px;
  }

  .section-band {
    padding: 62px 18px;
  }

  h2 {
    font-size: 32px;
  }

  .belief h2 {
    font-size: 26px;
    line-height: 1.62;
    text-wrap: pretty;
  }

  .section-heading p:not(.section-kicker) {
    font-size: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .standard-board {
    grid-template-columns: 1fr;
  }

  .standard-board article,
  .standard-board article:nth-child(2n),
  .standard-board article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(246, 200, 154, .14);
  }

  .standard-board article:last-child {
    border-bottom: 0;
  }

  .standard-board span {
    margin-bottom: 18px;
  }

  .audience-list article,
  .decision-card,
  .starter-card,
  .stack-list article,
  .note-grid article,
  .method-card,
  .method-status-panel article,
  .service-detail {
    min-height: auto;
    padding: 24px;
  }

  .service-detail img {
    width: 120px;
    height: 88px;
  }

  .service-card img {
    width: 120px;
    height: 88px;
  }

  .faq-list summary {
    padding: 20px;
    font-size: 17px;
  }

  .faq-list p {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .launch-care-panel span {
    font-size: 30px;
  }

  .contact-actions .button.primary {
    font-size: 14px;
  }

  .status-list article,
  .brief-box,
  .inquiry-form {
    padding: 24px;
  }

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

  .email-outline div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-links a {
    min-height: 38px;
  }
}
