:root {
  --oat:#f7f1e8; --warm-white:#fffaf2; --milk-tea:#eadbcb;
  --cocoa:#332722; --clay:#b85f43; --clay-text:#8f3f2c; --clay-deep:#a44e35;
  --sage:#78806c; --cta:#176f45;
  --line:#c9a996; --header-height:72px;
  --brand-light: #6F3F2B;
  --brand-dark: #FFF8E8;
  --brand-accent: #DF806F;
  --container: 1180px;
  --serif: "Songti TC", "Noto Serif TC", "PMingLiU", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-height) + 16px);
  font-size: 100%;
}

section[id],
aside[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin:0;
  color:var(--cocoa);
  background:var(--oat);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-color: var(--clay);
}

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

:focus-visible {
  outline:3px solid #176f45;
  outline-offset:4px;
}

.section--dark :focus-visible,
.final-cta :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--warm-white);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: .015em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.2vw, 5.4rem);
  letter-spacing: -.025em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  letter-spacing: -.015em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

[hidden] {
  display: none !important;
}

.container,
.header-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 9px 16px;
  color: var(--warm-white);
  background: var(--cta);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(51, 39, 34, .16);
  background: rgba(247, 241, 232, .95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--brand-light);
  text-decoration: none;
  white-space: nowrap;
}

.brand__mark {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
}

.brand__wordmark {
  font-family: ui-rounded, "SF Pro Rounded", "PingFang TC", "Noto Sans TC", sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .07em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .91rem;
  text-decoration: none;
}

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

.cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--cta);
  color: #fff;
  background: var(--cta);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cta:hover {
  color: var(--cta);
  background: transparent;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta:active {
  transform: translateY(0) scale(.98);
}

.cta--compact {
  min-height: 44px;
  padding: 8px 18px;
  font-size: .92rem;
}

.cta--outline {
  color: var(--cta);
  background: transparent;
}

.cta--outline:hover {
  color: #fff;
  background: var(--cta);
}

.cta--light {
  border-color: var(--warm-white);
  color: var(--cocoa);
  background: var(--warm-white);
}

.cta--light:hover {
  color: var(--warm-white);
  background: transparent;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--clay-text);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(72px, 9vw, 132px);
}

.section--tight {
  padding-block: clamp(54px, 6.5vw, 88px);
}

.section--milk {
  background: var(--milk-tea);
}

.section-heading {
  position: relative;
  max-width: 680px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 70px;
  margin-top: 25px;
  border-top: 1px solid var(--clay);
  transform: rotate(-6deg);
  transform-origin: left center;
}

.section-heading--wide {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading--wide > p:last-child {
  max-width: 620px;
  color: rgba(51, 39, 34, .72);
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}

.section-heading--row::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 22%;
  margin: 0;
}

.section-heading--row h2,
.section-heading--row .eyebrow {
  margin-bottom: 0;
}

.section-note {
  margin-top: 28px;
  padding: 17px 0 0 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: rgba(51, 39, 34, .72);
  font-size: .92rem;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(60px, 7vw, 104px);
  background:
    linear-gradient(118deg, transparent 0 73%, rgba(184, 95, 67, .08) 73% 73.12%, transparent 73.12%),
    var(--warm-white);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 11vw;
  height: 80px;
  border-top: 1px solid var(--clay);
  border-left: 1px solid var(--clay);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  grid-template-areas:
    "copy media"
    "message media";
  align-items: center;
  column-gap: clamp(52px, 7vw, 110px);
  row-gap: 30px;
}

.hero__copy {
  grid-area: copy;
  position: relative;
  padding-left: clamp(22px, 3vw, 48px);
}

.hero__copy::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 17px;
  border-top: 1px solid var(--clay);
  border-left: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
}

.hero__lead {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(51, 39, 34, .76);
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin: 0 0 34px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .91rem;
  white-space: nowrap;
}

.feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--sage);
  transform: rotate(45deg);
}

.hero__media {
  grid-area: media;
}

.hero__media img {
  min-height: 520px;
  object-fit: cover;
  object-position: 84% center;
}

.first-message {
  grid-area: message;
  width: min(500px, calc(100% - 28px));
  margin: 0 0 0 28px;
  padding: 16px 20px;
  border-top: 1px solid var(--cocoa);
  border-right: 1px solid var(--cocoa);
  background: var(--oat);
  font-size: .88rem;
}

.first-message span {
  display: block;
  margin-bottom: 3px;
  color: rgba(51, 39, 34, .66);
}

.first-message q {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.scenario-frame {
  border:1px solid var(--clay);
  border-radius:2px;
  box-shadow:10px 10px 0 rgba(184,95,67,.16);
}

.scenario-figure {
  position: relative;
  margin: 0 0 10px;
  background: var(--milk-tea);
}

.scenario-figure img {
  border-radius: 1px;
  object-fit: cover;
}

.scenario-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 11px;
  color: var(--warm-white);
  background: rgba(51, 39, 34, .84);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.quick-answers {
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.quick-grid > div {
  position: relative;
  min-width: 0;
  padding: 28px clamp(18px, 2.5vw, 32px) 10px;
  border-right: 1px solid var(--line);
}

.quick-grid > div:first-child {
  padding-left: 0;
}

.quick-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-grid dt {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
}

.quick-grid dd {
  margin: 0;
  color: rgba(51, 39, 34, .7);
  font-size: .9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .93fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, .93fr) minmax(0, 1fr);
}

.split-layout--reverse .split-layout__content {
  order: 1;
}

.split-layout--reverse .scenario-figure {
  order: 2;
}

.roles .scenario-figure img,
.arrival .scenario-figure img {
  aspect-ratio: 4 / 3;
}

.roles-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.roles-layout > .scenario-figure {
  margin-bottom: 0;
}

.role-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}

.role-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--warm-white);
}

.role-list article p {
  margin-bottom: 0;
  color: rgba(51, 39, 34, .72);
}

.roles__note {
  grid-column: 1 / -1;
  margin-top: 0;
}

.item-number {
  color: var(--clay-text) !important;
  font-family: var(--serif);
  font-size: .78rem !important;
  font-weight: 700;
  letter-spacing: .12em;
}

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

.support-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-steps::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  border-top: 1px solid var(--clay);
}

.support-steps li {
  position: relative;
  min-width: 0;
  padding: 36px clamp(18px, 2.6vw, 36px) 0 0;
}

.support-steps .diamond {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 2px solid var(--clay);
  background: var(--warm-white);
  transform: rotate(45deg);
}

.support-steps h3 {
  margin-bottom: 8px;
}

.support-steps p:last-child {
  color: rgba(51, 39, 34, .68);
}

.editorial-banner,
.preparation-banner,
.trust-strip {
  position: relative;
  margin-block: clamp(60px, 8vw, 110px);
}

.editorial-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .85fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-block: 38px;
  border-top: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
}

.editorial-banner::before,
.editorial-banner::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 24px;
  border-color: var(--clay);
}

.editorial-banner::before {
  top: -9px;
  left: 22px;
  border-top: 1px solid;
  transform: rotate(-8deg);
}

.editorial-banner::after {
  right: 22px;
  bottom: -9px;
  border-bottom: 1px solid;
  transform: rotate(-8deg);
}

.editorial-banner h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.editorial-banner > p {
  margin-bottom: 0;
  color: rgba(51, 39, 34, .7);
}

.section--dark {
  color: var(--warm-white);
  background: var(--cocoa);
}

.section--dark .eyebrow {
  color: #e8a78f;
}

.section--dark .section-heading::after {
  border-color: #e8a78f;
}

.confirmation .container {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
}

.confirmation-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 250, 242, .3);
  list-style: none;
}

.confirmation-list li {
  display: grid;
  grid-template-columns: minmax(100px, .6fr) 1.4fr;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 250, 242, .3);
}

.confirmation-list strong {
  color: #e8a78f;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.confirmation-list span {
  color: rgba(255, 250, 242, .78);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-width: 0;
  padding: 31px 22px 20px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-steps li:nth-child(even) {
  margin-top: 32px;
}

.process-steps li::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 24px;
  border-top: 1px solid var(--clay);
  transform: rotate(-45deg);
  transform-origin: right;
}

.process-steps li > span {
  display: block;
  margin-bottom: 26px;
  color: var(--clay-text);
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 700;
}

.process-steps strong {
  display: block;
  min-height: 58px;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.45;
}

.process-steps p {
  margin-bottom: 0;
  color: rgba(51, 39, 34, .68);
  font-size: .88rem;
}

.process-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.process-action p {
  margin-bottom: 0;
}

.process-action q {
  font-family: var(--serif);
  font-weight: 700;
}

.preparation-banner {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(44px, 8vw, 110px);
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid var(--clay);
  background: var(--milk-tea);
  box-shadow: 12px 12px 0 var(--warm-white), 13px 13px 0 var(--line);
}

.preparation-banner::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 18%;
  width: 90px;
  border-top: 1px solid var(--clay);
  transform: rotate(-10deg);
}

.preparation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(51, 39, 34, .4);
  list-style: none;
}

.preparation-list li {
  min-width: 0;
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid rgba(51, 39, 34, .4);
}

.preparation-list li:nth-child(odd) {
  border-right: 1px solid rgba(51, 39, 34, .4);
}

.preparation-list li:nth-child(even) {
  padding-left: 20px;
}

.preparation-list strong,
.preparation-list span,
.arrival-steps strong,
.arrival-steps span {
  display: block;
}

.preparation-list strong,
.arrival-steps strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.preparation-list span {
  color: rgba(51, 39, 34, .72);
  font-size: .9rem;
}

.arrival {
  background: var(--warm-white);
}

.arrival-steps {
  counter-reset: arrival;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.arrival-steps li {
  counter-increment: arrival;
  position: relative;
  display: grid;
  grid-template-columns: minmax(85px, .6fr) 1.4fr;
  gap: 20px;
  padding: 18px 0 18px 32px;
  border-bottom: 1px solid var(--line);
}

.arrival-steps li::before {
  content: counter(arrival, decimal-leading-zero);
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--clay-text);
  font-family: var(--serif);
  font-size: .7rem;
}

.arrival-steps strong,
.arrival-steps span {
  margin-bottom: 0;
}

.arrival-steps span {
  color: rgba(51, 39, 34, .68);
  font-size: .9rem;
}

.line-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(min(280px,100%),1fr));
  border-top: 1px solid rgba(51, 39, 34, .35);
}

.line-grid article {
  min-width: 0;
  min-height: 240px;
  padding: 34px clamp(22px, 3vw, 42px) 28px;
  border-right: 1px solid rgba(51, 39, 34, .35);
}

.line-grid article:first-child {
  padding-left: 0;
}

.line-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.line-grid h3 {
  min-height: 70px;
}

.line-grid article > p:last-child {
  color: rgba(51, 39, 34, .7);
}

.faq {
  background: var(--warm-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  border-top: 1px solid var(--line);
}

.faq details {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 42px 14px 0;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--clay-text);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 600px;
  padding: 0 42px 20px 0;
  color: rgba(51, 39, 34, .72);
}

.trust-strip {
  display: grid;
  grid-template-columns: auto minmax(180px, .8fr) minmax(280px, 1.4fr) auto;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid var(--sage);
  border-bottom: 1px solid var(--sage);
  color: rgba(51, 39, 34, .78);
  font-size: .85rem;
}

.trust-strip p {
  margin-bottom: 0;
}

.trust-strip strong {
  color: var(--cocoa);
}

.trust-strip a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

.final-cta {
  position: relative;
  padding-block: clamp(82px, 11vw, 150px);
  overflow: hidden;
  color: var(--warm-white);
  background: var(--clay-deep);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 25vw;
  height: 140px;
  border-color: rgba(255, 250, 242, .4);
}

.final-cta::before {
  top: 22px;
  left: -3vw;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: skewX(-25deg);
}

.final-cta::after {
  right: -3vw;
  bottom: 22px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  transform: skewX(-25deg);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  color: var(--warm-white);
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--warm-white);
}

.mobile-dock {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 16px;
  padding-bottom:calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 -10px 30px rgba(51, 39, 34, .12);
}

.mobile-dock.is-visible {
  animation: mobile-dock-enter 180ms ease-out;
}

.mobile-dock.is-measuring {
  visibility: hidden;
  animation: none;
}

@keyframes mobile-dock-enter {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.mobile-dock .cta {
  width: 100%;
}

.site-footer {
  padding-block: 46px;
  color: rgba(255, 250, 242, .76);
  background: var(--cocoa);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.brand--footer {
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--warm-white);
}

/* Privacy page */
.privacy-page .site-header {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-page main {
  width: min(860px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(64px, 9vw, 120px);
}

.privacy-page main > h1 {
  margin-bottom: 24px;
}

.privacy-page main > h1 + p {
  max-width: 680px;
  margin-bottom: 62px;
  color: rgba(51, 39, 34, .72);
  font-size: 1.08rem;
}

.privacy-page main section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.privacy-page main section h2,
.release-warning h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.privacy-page main section p,
.privacy-page main section li {
  color: rgba(51, 39, 34, .76);
}

.privacy-page main section li + li {
  margin-top: 7px;
}

.privacy-page main .cta {
  margin-top: 14px;
}

.release-warning {
  margin-top: 48px;
  padding: 30px;
  border-top: 1px solid var(--clay);
  border-left: 1px solid var(--clay);
  background: var(--milk-tea);
}

.privacy-page > .site-footer {
  padding-inline: max(24px, calc((100% - var(--container)) / 2));
}

.footer-home-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* Reserved presentation for the non-modal consent control added in the tracking task. */
body.has-consent-panel {
  padding-bottom: calc(var(--consent-panel-reserve, 0px) + env(safe-area-inset-bottom));
}

.consent-panel {
  --consent-panel-bottom: calc(18px + env(safe-area-inset-bottom));
  --consent-panel-top-gap: 18px;
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: var(--consent-panel-bottom);
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  max-height: calc(100vh - var(--consent-panel-bottom) - var(--consent-panel-top-gap));
  max-block-size: calc(100dvh - var(--consent-panel-bottom) - var(--consent-panel-top-gap));
  margin-inline: auto;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--cocoa);
  background: var(--warm-white);
  box-shadow: 8px 8px 0 rgba(51, 39, 34, .15);
}

body:has(.mobile-dock:not([hidden])) .consent-panel {
  --consent-panel-bottom: var(--mobile-dock-height, 92px);
}

body.has-consent-panel:has(.mobile-dock:not([hidden])) {
  padding-bottom: calc(var(--consent-panel-reserve, 0px) + var(--mobile-dock-height, 92px));
}

.consent-panel button,
.consent-panel a {
  min-height: 44px;
}

@media (max-width: 1023px) {
  .site-nav {
    gap: 16px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    column-gap: 42px;
  }

  .hero__media img {
    min-height: 460px;
  }

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

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

  .quick-grid > div:nth-child(2) {
    border-right: 0;
  }

  .quick-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .quick-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .support-steps::before {
    display: none;
  }

  .support-steps li {
    padding: 26px 26px 26px 0;
    border-top: 1px solid var(--line);
  }

  .support-steps .diamond {
    top: -7px;
  }

  .editorial-banner {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-banner .cta {
    grid-column: 2;
    justify-self: start;
  }

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

  .process-steps li:nth-child(even) {
    margin-top: 0;
  }

  .process-steps li:nth-child(2),
  .process-steps li:nth-child(5) {
    margin-top: 28px;
  }

  .line-grid {
    grid-template-columns: repeat(2, minmax(min(280px, 100%), 1fr));
  }

  .line-grid article:nth-child(2) {
    border-right: 0;
  }

  .line-grid article:last-child {
    border-top: 1px solid rgba(51, 39, 34, .35);
  }

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

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  body {
    font-size: .98rem;
  }

  .container,
  .header-inner,
  .footer-inner,
  .privacy-page .site-header,
  .privacy-page main {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .site-nav {
    display: none;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__wordmark {
    font-size: 17px;
  }

  .cta--compact {
    padding-inline: 14px;
  }

  h1 br,
  h2 br {
    display: none;
  }

  .section {
    padding-block: 70px;
  }

  .section--tight {
    padding-block: 52px;
  }

  .section-heading--row {
    display: block;
  }

  .section-heading--row .eyebrow {
    margin-bottom: 12px;
  }

  .section-heading--row::after {
    position: static;
    width: 64px;
    margin-top: 22px;
  }

  .hero {
    min-height: 0;
    padding-block: 50px 68px;
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "media"
      "message";
    gap: 34px;
  }

  .hero__copy {
    padding-left: 19px;
  }

  .hero__copy::before {
    width: 10px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.55rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__copy .cta {
    width: 100%;
  }

  .hero__media img {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
    object-position: 53% center;
  }

  .first-message {
    width: calc(100% - 14px);
    margin-left: 14px;
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-grid,
  .support-steps,
  .process-steps,
  .preparation-list,
  .faq-grid,
  .trust-strip,
  .consent-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-grid > div,
  .quick-grid > div:first-child,
  .quick-grid > div:nth-child(3),
  .quick-grid > div:last-child {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .quick-grid > div:first-child {
    border-top: 0;
  }

  .split-layout,
  .split-layout--reverse,
  .confirmation .container,
  .preparation-banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .split-layout--reverse .split-layout__content,
  .split-layout--reverse .scenario-figure {
    order: initial;
  }

  .roles-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .role-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .roles .scenario-figure,
  .arrival .scenario-figure {
    width: calc(100% - 10px);
  }

  .roles .scenario-figure img,
  .arrival .scenario-figure img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .editorial-banner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .editorial-banner .cta {
    grid-column: auto;
    justify-self: stretch;
  }

  .confirmation-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .process-steps {
    gap: 0;
  }

  .process-steps li,
  .process-steps li:nth-child(2),
  .process-steps li:nth-child(5) {
    margin-top: 0;
    padding: 21px 18px 21px 46px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps li:first-child {
    border-top: 1px solid var(--line);
  }

  .process-steps li::after {
    top: 27px;
    right: auto;
    left: 15px;
    width: 13px;
    height: 13px;
    border: 1px solid var(--clay);
    transform: rotate(45deg);
  }

  .process-steps li > span {
    position: absolute;
    top: 23px;
    right: 0;
    margin: 0;
  }

  .process-steps strong {
    min-height: 0;
    margin-bottom: 4px;
  }

  .process-action,
  .footer-inner,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .process-action .cta {
    width: 100%;
  }

  .preparation-banner {
    width: min(100% - 32px, var(--container));
    padding: 30px 24px;
    box-shadow: 7px 7px 0 var(--warm-white), 8px 8px 0 var(--line);
  }

  .preparation-list li,
  .preparation-list li:nth-child(even),
  .preparation-list li:nth-child(odd) {
    padding: 17px 0;
    border-right: 0;
  }

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

  .line-grid article,
  .line-grid article:first-child,
  .line-grid article:last-child {
    min-height: 0;
    padding: 27px 0;
    border-top: 1px solid rgba(51, 39, 34, .35);
    border-right: 0;
  }

  .line-grid article:first-child {
    border-top: 0;
  }

  .line-grid h3 {
    min-height: 0;
  }

  .faq-grid {
    gap: 0;
  }

  .trust-strip {
    gap: 0;
  }

  .trust-strip p,
  .trust-strip a {
    padding-block: 11px;
    border-bottom: 1px solid rgba(120, 128, 108, .35);
  }

  .trust-strip a {
    border-bottom: 0;
  }

  .final-cta::before,
  .final-cta::after {
    width: 38vw;
  }

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

  .privacy-page .site-header {
    padding-block: 9px;
  }

  .privacy-page .site-header .site-nav {
    display: flex;
  }

  .privacy-page main {
    padding-block: 54px 76px;
  }

  .privacy-page main > h1 + p {
    margin-bottom: 44px;
  }

  .privacy-page main section {
    padding-block: 28px;
  }

  .release-warning {
    padding: 24px 20px;
  }

  .consent-panel {
    --consent-panel-bottom: calc(10px + env(safe-area-inset-bottom));
    --consent-panel-top-gap: 10px;
    right: 10px;
    left: 10px;
    padding: 14px;
  }
}

@media (max-width: 359px) {
  .container,
  .header-inner,
  .footer-inner,
  .privacy-page .site-header,
  .privacy-page main {
    width: min(100% - 24px, var(--container));
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__wordmark {
    font-size: 16px;
  }

  .cta--compact {
    padding-inline: 10px;
    font-size: .84rem;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero__copy {
    padding-left: 15px;
  }

  .role-list article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .arrival-steps li {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }

  .mobile-dock {
    padding-inline: 12px;
  }
}

@media (min-width: 768px) {
  .mobile-dock {
    display: none !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation:none!important; transition:none!important; }
}

@media print {
  :root {
    --oat: #fff;
    --warm-white: #fff;
    --cocoa: #111;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .skip-link,
  .mobile-dock,
  .consent-panel,
  .privacy-page main .cta {
    display: none !important;
  }

  .privacy-page main {
    width: 100%;
    padding: 0;
  }

  .privacy-page main section,
  .release-warning {
    break-inside: avoid;
    color: #111;
    background: #fff;
    box-shadow: none;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: .85em;
    overflow-wrap: anywhere;
  }
}
