﻿:root {
  /* Background */
  --color-bg-page: #FBF7F0;
  --color-bg-surface: #FFFFFF;
  --color-bg-charcoal: #222222;
  --color-bg-black: var(--color-bg-page);
  --color-bg-ivory: #FBF7F0;

  /* Brand */
  --color-jade-dark: #174A3F;
  --color-jade-deep: #174A3F;

  /* Supporting */
  --color-gold-light: #DAB96B;
  --color-gold-main: #DAB96B;
  --color-gold-dark: #DAB96B;
  --color-gold-muted: rgba(218, 185, 107, 0.72);

  /* Text */
  --color-text-main: #222222;
  --color-text-dark: #222222;
  --color-text-muted: rgba(34, 34, 34, 0.72);
  --color-text-weak: rgba(34, 34, 34, 0.58);

  /* Accent */
  --color-seal-red: #E62129;

  /* Border */
  --border-gold-main: rgba(218, 185, 107, 0.42);
  --border-gold-soft: rgba(218, 185, 107, 0.18);
  --border-jade-soft: rgba(23, 74, 63, 0.25);

  /* Shadow */
  --shadow-luxury: 0 24px 64px rgba(23, 74, 63, 0.14);
  --shadow-card: 0 16px 42px rgba(23, 74, 63, 0.1);

  /* Legacy aliases */
  --jade: var(--color-jade-dark);
  --jade-deep: var(--color-jade-deep);
  --charcoal: var(--color-bg-charcoal);
  --seal: var(--color-seal-red);
  --gold: var(--color-gold-main);
  --ivory: var(--color-bg-ivory);
  --ivory-strong: var(--color-bg-surface);
  --ink: var(--color-text-dark);
  --muted: var(--color-text-weak);
  --line: var(--border-gold-soft);
  --white: #ffffff;
  --shadow: var(--shadow-card);
  --serif: "Source Han Serif SC", "思源宋体", "Noto Serif SC", "Songti SC", "SimSun", serif;
  --sans: "Alibaba PuHuiTi", "Alibaba PuHuiTi 2.0", "阿里巴巴普惠体", "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --latin: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg-black);
}

body {
  margin: 0;
  color: var(--color-text-main);
  background: var(--color-bg-black);
  font-family: var(--sans);
  line-height: 1.68;
  padding-bottom: 74px;
}

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-bg-black);
  border-bottom: 1px solid var(--border-gold-main);
  box-shadow: 0 10px 30px rgba(8, 10, 9, 0.28);
}

.header-inner {
  width: min(100% - 28px, 1240px);
  max-width: 1240px;
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  position: relative;
}

.brand-logo {
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  min-height: 62px;
}

.brand-image {
  width: 156px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--border-gold-soft);
}

.site-header .brand-image {
  display: none;
}

.site-header .brand::before {
  content: "\81FB\4E16\7965";
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
}

.site-header .brand::after {
  content: "ZSX Jade";
  position: absolute;
  left: 0;
  top: calc(50% + 14px);
  color: var(--color-gold-main);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  white-space: nowrap;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-gold-main);
  border-radius: 6px;
  background: rgba(245, 240, 230, 0.08);
  color: var(--color-text-main);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 68px 0 auto;
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--color-bg-black);
  border-bottom: 1px solid var(--border-gold-main);
  box-shadow: 0 18px 40px rgba(8, 10, 9, 0.32);
  transform: translateY(-120%);
  transition: transform 0.22s ease;
}

.site-nav.open {
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--color-text-main);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-gold-light);
  background: rgba(214, 170, 85, 0.12);
}

.site-nav .nav-cta {
  justify-content: center;
  color: var(--color-bg-black);
  background: var(--color-gold-main);
}

.site-nav .nav-cta:hover {
  color: var(--color-bg-black);
  background: var(--color-gold-light);
}

.nav-lotus {
  display: none;
  width: 142px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.28;
  filter: grayscale(1);
  pointer-events: none;
}

body[data-page="home"] .site-header {
  background: var(--color-bg-black);
  border-bottom-color: var(--border-gold-main);
}

body[data-page="home"] .site-header.is-scrolled {
  background: rgba(8, 10, 9, 0.96);
  border-bottom-color: var(--border-gold-main);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-bg-black);
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold-main));
  border-color: var(--color-gold-light);
  box-shadow: 0 14px 34px rgba(214, 170, 85, 0.26);
}

.button-primary:hover {
  background: linear-gradient(180deg, #DAB96B, var(--color-gold-main));
}

.button-outline {
  color: var(--gold);
  border-color: var(--border-gold-main);
  background: rgba(8, 10, 9, 0.24);
}

.button-outline-dark {
  color: var(--color-gold-main);
  border-color: var(--border-gold-main);
  background: transparent;
}

.button-light {
  color: var(--color-bg-black);
  background: var(--color-gold-light);
  border-color: var(--color-gold-main);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.22;
}

p {
  margin: 0;
}

.section {
  padding: 54px 0;
}

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

.section-heading h2,
.section-copy h2,
.service-band h2,
.contact-cta h2,
.contact-info h2,
.contact-form h2 {
  color: var(--color-gold-light);
  font-size: clamp(28px, 6vw, 44px);
}

.section-heading p:not(.eyebrow),
.section-copy p,
.service-band p,
.contact-cta p,
.page-hero p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.home-hero {
  position: relative;
  min-height: min(100svh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--color-bg-black) url("assets/home-hero.jpg") center center / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.98) 0%, rgba(8, 10, 9, 0.98) 36%, rgba(8, 10, 9, 0.74) 52%, rgba(8, 10, 9, 0.08) 74%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.9) 0%, rgba(8, 10, 9, 0.16) 34%, rgba(8, 10, 9, 0) 64%);
  pointer-events: none;
}

.home-hero::after {
  content: none;
}

.image-hero {
  aspect-ratio: 2048 / 768;
  min-height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}

.hero-kicker {
  margin-bottom: 16px;
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  max-width: 560px;
  color: var(--color-gold-light);
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1.15;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.46);
}

.hero-summary {
  max-width: 470px;
  margin-top: 18px;
  color: rgba(245, 240, 230, 0.88);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-badges {
  gap: 12px 16px;
  max-width: 640px;
  margin-top: 26px;
}

.hero-badges span {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--color-gold-light);
  border: 1px solid var(--border-gold-main);
  border-radius: 5px;
  background: rgba(8, 10, 9, 0.34);
  font-size: 13px;
}

.mobile-hero-actions {
  position: relative;
  z-index: 2;
  display: none;
  width: min(100% - 28px, 420px);
  margin: 0 auto 22px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-hero-actions .button {
  min-width: 0;
  padding: 0 12px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 96px 0 34px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 640px;
  color: var(--color-gold-light);
  font-size: clamp(48px, 14vw, 92px);
  line-height: 1.24;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.46);
}

.hero-copy h1::after {
  content: "臻选印";
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: 12px;
  color: var(--seal);
  border: 2px solid currentColor;
  border-radius: 5px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.05;
  vertical-align: 0.12em;
  transform: rotate(-2deg);
}

.hero-copy .eyebrow {
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
}

.hero-lead {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(245, 240, 230, 0.86);
  font-size: clamp(16px, 4vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--color-gold-light);
  background: rgba(8, 10, 9, 0.34);
  border: 1px solid var(--border-gold-main);
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
}

.trust-strip li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-art {
  position: relative;
  display: block;
  align-self: end;
  justify-self: center;
  min-height: 230px;
  width: min(430px, 82vw);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 52% 45%;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-luxury);
  mix-blend-mode: screen;
}

.hero-art::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 2%;
  right: -18%;
  top: -8%;
  bottom: 10%;
  background:
    radial-gradient(circle at 66% 78%, rgba(23, 74, 63, 0.42), transparent 18%),
    linear-gradient(150deg, var(--color-bg-charcoal) 0 28%, var(--color-bg-black) 29% 100%);
  border-radius: 46% 54% 42% 58%;
  transform: rotate(-14deg);
  box-shadow: inset 0 0 70px rgba(245, 240, 230, 0.05), 0 28px 60px rgba(0, 0, 0, 0.54);
}

.hero-art::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: 6%;
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 50% 45%, var(--color-jade-dark) 0 28%, var(--color-jade-deep) 29% 48%, transparent 49%),
    radial-gradient(circle, rgba(245, 240, 230, 0.82) 0 3px, transparent 4px);
  border: 9px solid rgba(245, 240, 230, 0.82);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.56);
}

.seal-mark,
.stamp {
  display: grid;
  place-items: center;
  color: var(--seal);
  border: 2px solid currentColor;
  font-family: var(--serif);
  font-weight: 900;
}

.seal-mark {
  position: absolute;
  right: -12px;
  bottom: 36px;
  width: 68px;
  height: 68px;
  background: rgba(8, 10, 9, 0.88);
  transform: rotate(-8deg);
}

.three-card-grid,
.category-grid,
.proof-panel,
.footer-grid,
.contact-layout {
  display: grid;
  gap: 16px;
}

.trust-card,
.category-card,
.proof-card,
.commitment-paper,
.contact-info,
.contact-form,
.product-detail,
.policy-note {
  border: 1px solid var(--border-gold-main);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(8, 10, 9, 0.96)),
    radial-gradient(circle at top right, rgba(23, 74, 63, 0.18), transparent 32%);
  box-shadow: var(--shadow-luxury);
}

.trust-card {
  padding: 24px;
}

.trust-card strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--color-gold-light);
  background: rgba(8, 10, 9, 0.55);
  border: 3px solid var(--border-gold-main);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 28px;
}

.trust-card h3,
.category-card h3,
.product-detail h2,
.promise-list h3,
.policy-note h3 {
  color: var(--color-gold-light);
}

.trust-card p,
.category-card p,
.product-detail p,
.promise-list p,
.policy-note p,
.info-item p,
.qr-panel p {
  margin-top: 8px;
  color: var(--color-text-muted);
}

.product-preview {
  background: var(--color-bg-black);
}

.category-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 152px;
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 152px;
  object-fit: cover;
}

.category-card div {
  padding: 18px;
}

.category-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--color-gold-main);
  font-weight: 700;
}

.category-card a::after,
.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
}

.process-section {
  color: rgba(245, 240, 230, 0.88);
  background:
    linear-gradient(rgba(8, 10, 9, 0.94), rgba(15, 58, 49, 0.9)),
    url("assets/storefront.jpg") center/cover;
}

.process-section .section-heading h2 {
  color: var(--ivory-strong);
}

.process-line {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-line li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--border-gold-soft);
  border-radius: 8px;
  background: rgba(245, 240, 230, 0.08);
}

.process-line span {
  color: var(--gold);
  font-family: var(--latin);
  font-weight: 700;
}

.split-section {
  display: grid;
  gap: 24px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text-muted);
}

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

.proof-card {
  padding: 24px;
}

.proof-card span,
.product-detail > div > span,
.info-item span,
.site-footer span {
  display: block;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.proof-card strong {
  display: block;
  margin-top: 6px;
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: 28px;
}

.proof-card-dark {
  color: var(--ivory-strong);
  background: var(--jade);
  border-color: var(--border-gold-main);
}

.proof-card-dark strong,
.proof-card-dark p {
  color: var(--ivory-strong);
}

.service-preview {
  padding: 0;
  background: var(--color-bg-black);
}

.service-band,
.contact-cta-inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.service-band {
  padding: 28px 18px;
  color: rgba(245, 240, 230, 0.88);
  background:
    linear-gradient(135deg, rgba(15, 58, 49, 0.88), rgba(8, 10, 9, 0.96));
  border: 1px solid var(--border-gold-main);
  border-radius: 8px;
}

.service-band h2,
.service-band p {
  color: var(--ivory-strong);
}

.about-section {
  background: var(--color-bg-charcoal);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-gold-main);
}

.about-carousel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border-gold-main);
  border-radius: 8px;
  background: rgba(23, 74, 63, 0.08);
}

.about-carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: aboutCarouselFade 8s infinite;
}

.about-carousel-slide:first-child {
  opacity: 1;
}

.about-carousel-slide:nth-child(2) {
  animation-delay: 4s;
}

.about-carousel img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
}

.about-carousel-slide-sign img {
  object-position: 50% 42%;
}

.about-carousel-dots {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  display: flex;
  gap: 6px;
}

.about-carousel-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(247, 241, 230, 0.74);
  box-shadow: 0 0 0 1px rgba(23, 74, 63, 0.32);
}

@keyframes aboutCarouselFade {
  0%,
  44%,
  100% {
    opacity: 1;
  }

  50%,
  94% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-carousel-slide {
    animation: none;
  }

  .about-carousel-slide:first-child {
    opacity: 1;
  }

  .about-carousel-slide:not(:first-child) {
    opacity: 0;
  }
}

.contact-cta {
  padding: 48px 0;
  background: var(--color-bg-black);
}

.contact-cta-inner {
  padding: 24px;
  border: 1px solid var(--border-gold-main);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(8, 10, 9, 0.92), rgba(15, 58, 49, 0.76)),
    url("assets/brand-hero.jpg") center/cover;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  display: flex;
  align-items: end;
  min-height: 310px;
  color: var(--ivory-strong);
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(23, 74, 63, 0.78)),
    url("assets/brand-hero.jpg") center/cover;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(23, 74, 63, 0.78)),
    url("assets/product-bracelet.jpg") center/cover;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(23, 74, 63, 0.8)),
    url("assets/storefront.jpg") center/cover;
}

.service-hero .service-hero-picture {
  display: block;
  width: 100%;
}

.service-hero .service-hero-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(23, 74, 63, 0.76)),
    url("assets/live-room.jpg") center/cover;
}

.page-hero-inner {
  max-width: 760px;
  padding: 56px 0;
}

.page-hero h1 {
  font-size: clamp(36px, 9vw, 64px);
}

.page-hero p:not(.eyebrow) {
  color: rgba(245, 240, 230, 0.84);
}

.product-list {
  display: grid;
  gap: 18px;
}

.product-detail {
  overflow: hidden;
  display: grid;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(8, 10, 9, 0.96));
}

.product-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-detail > div {
  padding: 22px;
}

.product-detail .button {
  margin-top: 20px;
}

.commitment-wrap {
  background:
    radial-gradient(circle at top left, rgba(214, 170, 85, 0.18), transparent 28%),
    var(--color-bg-black);
}

.commitment-paper {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.94), rgba(8, 10, 9, 0.94)),
    url("assets/logo-mark.png") right 24px top 24px/140px auto no-repeat;
}

.paper-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-gold-main);
}

.paper-head h2 {
  color: var(--color-gold-light);
  font-size: clamp(32px, 8vw, 54px);
}

.stamp {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  background: rgba(230, 33, 41, 0.04);
  transform: rotate(-8deg);
}

.promise-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.promise-list article {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-gold-soft);
}

.promise-list article:last-child {
  border-bottom: 0;
}

.promise-list span {
  color: var(--seal);
  font-family: var(--latin);
  font-weight: 700;
}

.policy-note {
  margin-top: 20px;
  padding: 20px;
  background: rgba(15, 58, 49, 0.32);
}

.contact-layout {
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(8, 10, 9, 0.96));
}

.contact-info {
  display: grid;
  gap: 18px;
}

.info-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info-item a {
  display: inline-flex;
  margin-top: 6px;
  color: var(--color-gold-light);
  font-size: 22px;
  font-weight: 800;
}

.qr-panel {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(15, 58, 49, 0.32);
  border-radius: 8px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--color-gold-main);
  background:
    linear-gradient(90deg, currentColor 10%, transparent 10% 20%, currentColor 20% 30%, transparent 30% 40%, currentColor 40% 50%, transparent 50% 60%, currentColor 60% 70%, transparent 70%),
    var(--color-bg-black);
  border: 8px solid var(--color-bg-black);
  box-shadow: inset 0 0 0 1px var(--border-gold-main);
}

.qr-placeholder span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--seal);
  background: var(--color-bg-charcoal);
  border: 1px solid rgba(230, 33, 41, 0.32);
  font-family: var(--latin);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--color-gold-light);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--color-text-main);
  background: var(--color-bg-charcoal);
  border: 1px solid var(--border-gold-soft);
  border-radius: 6px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--border-gold-main);
  border-color: var(--gold);
}

.form-note {
  min-height: 24px;
  color: var(--color-gold-light);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 18px;
  color: rgba(245, 240, 230, 0.76);
  background: var(--charcoal);
}

.footer-grid {
  align-items: start;
}

.footer-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ivory-strong);
  font-family: var(--serif);
  font-size: 22px;
}

.footer-grid p,
.footer-grid a {
  margin-top: 8px;
  color: rgba(245, 240, 230, 0.72);
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.copyright {
  width: min(100% - 32px, 1200px);
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 16px;
  color: rgba(245, 240, 230, 0.48);
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  font-size: 13px;
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  background: rgba(8, 10, 9, 0.94);
  border-top: 1px solid var(--border-gold-soft);
  backdrop-filter: blur(14px);
}

.mobile-action-item {
  display: inline-grid;
  place-items: center;
  gap: 3px;
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 4px 2px;
  color: var(--ivory-strong);
  background: transparent;
  border: 0;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.mobile-action-item + .mobile-action-item {
  border-left: 1px solid rgba(245, 240, 230, 0.16);
}

.mobile-action-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--color-gold-light);
  background: currentColor;
}

.mobile-action-icon-wechat {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.5 4C5.4 4 2 6.8 2 10.2c0 1.9 1.1 3.7 2.8 4.8l-.6 2.1 2.5-1.2c.9.3 1.8.5 2.8.5 4.1 0 7.5-2.8 7.5-6.2S13.6 4 9.5 4Zm-2.6 5.1a.9.9 0 1 1 0-1.8.9.9 0 0 1 0 1.8Zm5.2 0a.9.9 0 1 1 0-1.8.9.9 0 0 1 0 1.8Zm7.9 3.8c0-2.6-2.3-4.7-5.4-5.1.5.7.8 1.6.8 2.5 0 3.3-3.2 6-7.1 6.5 1 1.2 2.8 2 4.8 2 .8 0 1.5-.1 2.2-.4l2.2 1-.5-1.8c1.8-1 3-2.7 3-4.7Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.5 4C5.4 4 2 6.8 2 10.2c0 1.9 1.1 3.7 2.8 4.8l-.6 2.1 2.5-1.2c.9.3 1.8.5 2.8.5 4.1 0 7.5-2.8 7.5-6.2S13.6 4 9.5 4Zm-2.6 5.1a.9.9 0 1 1 0-1.8.9.9 0 0 1 0 1.8Zm5.2 0a.9.9 0 1 1 0-1.8.9.9 0 0 1 0 1.8Zm7.9 3.8c0-2.6-2.3-4.7-5.4-5.1.5.7.8 1.6.8 2.5 0 3.3-3.2 6-7.1 6.5 1 1.2 2.8 2 4.8 2 .8 0 1.5-.1 2.2-.4l2.2 1-.5-1.8c1.8-1 3-2.7 3-4.7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-action-icon-phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 2.8 9.4 6c.5.6.5 1.4 0 2l-1.1 1.2c1.1 2.2 2.8 3.9 5 5l1.2-1.1c.6-.5 1.4-.5 2 0l3.2 2.8c.7.6.8 1.6.2 2.3l-1.4 1.7c-.7.8-1.8 1.2-2.9.9C9.3 19.3 4.7 14.7 3.2 8.4c-.3-1 .1-2.2.9-2.9l1.7-1.4c.7-.6 1.7-.5 2.3.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 2.8 9.4 6c.5.6.5 1.4 0 2l-1.1 1.2c1.1 2.2 2.8 3.9 5 5l1.2-1.1c.6-.5 1.4-.5 2 0l3.2 2.8c.7.6.8 1.6.2 2.3l-1.4 1.7c-.7.8-1.8 1.2-2.9.9C9.3 19.3 4.7 14.7 3.2 8.4c-.3-1 .1-2.2.9-2.9l1.7-1.4c.7-.6 1.7-.5 2.3.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-action-icon-submit {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h10l4 4v14H5V3Zm9 1.8V8h3.2L14 4.8ZM8 10h8v2H8v-2Zm0 4h7v2H8v-2Zm10.7-.3 1.6 1.6-5.4 5.4H13v-1.9l5.7-5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h10l4 4v14H5V3Zm9 1.8V8h3.2L14 4.8ZM8 10h8v2H8v-2Zm0 4h7v2H8v-2Zm10.7-.3 1.6 1.6-5.4 5.4H13v-1.9l5.7-5.1Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-action-icon-ngtc {
  display: grid;
  place-items: center;
  width: 34px;
  height: 22px;
  color: var(--color-gold-light);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--latin);
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.mobile-action-icon-ngtc::before {
  content: "NGTC";
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 80;
  max-width: min(88vw, 320px);
  padding: 10px 18px;
  color: var(--ivory-strong);
  background: rgba(23, 74, 63, 0.96);
  border: 1px solid rgba(218, 185, 107, 0.55);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-toast.is-error {
  background: rgba(120, 28, 28, 0.96);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

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

  .brand-logo {
    min-height: 76px;
  }

  .brand-image {
    width: 178px;
  }

  .image-hero {
    aspect-ratio: 2048 / 768;
    min-height: auto;
    background-size: cover;
    background-position: center center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    padding: 58px 0;
  }

  .hero-art {
    display: block;
    justify-self: end;
  }

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

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

  .process-line {
    grid-template-columns: repeat(7, minmax(90px, 1fr));
    gap: 0;
  }

  .process-line li {
    position: relative;
    display: grid;
    place-items: center;
    gap: 6px;
    min-height: 118px;
    border-radius: 0;
    border-right: 0;
    text-align: center;
  }

  .process-line li:first-child {
    border-radius: 8px 0 0 8px;
  }

  .process-line li:last-child {
    border-radius: 0 8px 8px 0;
    border-right: 1px solid var(--border-gold-soft);
  }

  .split-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    gap: 52px;
  }

  .split-section.reverse {
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  }

  .service-band,
  .contact-cta-inner {
    grid-template-columns: 1fr auto;
    padding: 36px;
  }

  .product-detail {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  }

  .product-detail:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .product-detail:nth-child(even) img {
    order: 2;
  }

  .product-detail img {
    height: 100%;
    min-height: 360px;
  }

  .product-detail > div {
    padding: 42px;
  }

  .contact-layout {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
    gap: 24px;
  }

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

  .contact-form h2,
  .contact-form .eyebrow,
  .contact-form .full-field,
  .contact-form button,
  .contact-form .form-note {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 719px) {
  .brand-logo {
    min-height: 58px;
  }

  .brand-image {
    width: 148px;
  }

  .image-hero {
    min-height: calc(100svh - 68px);
    aspect-ratio: auto;
    background-size: cover;
    background-position: 56% center;
  }

  .mobile-hero-actions {
    display: grid;
  }
}

@media (min-width: 980px) {
  .header-inner {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) 140px;
    justify-content: initial;
    gap: 24px;
  }

  .brand-logo {
    justify-self: start;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 30px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .site-nav a {
    min-height: 82px;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0.12em;
    bottom: 20px;
    height: 2px;
    background: var(--color-gold-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--color-gold-light);
    background: transparent;
  }

  .site-nav a:hover::after,
  .site-nav a.is-active::after {
    transform: scaleX(1);
  }

  .site-nav .nav-cta {
    margin-left: 4px;
    color: var(--color-bg-black);
    padding: 0 16px;
    border-radius: 6px;
    background: var(--color-gold-main);
  }

  .site-nav .nav-cta:hover {
    color: var(--color-bg-black);
    background: var(--color-gold-light);
  }

  .nav-lotus {
    display: block;
    justify-self: end;
    width: 130px;
    height: 64px;
  }

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

  .commitment-paper {
    padding: 42px;
  }

  .promise-list article {
    grid-template-columns: 72px minmax(180px, 0.42fr) minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  .promise-list p {
    margin-top: 0;
  }
}

@media (min-width: 1180px) {
  .header-inner {
    grid-template-columns: 260px minmax(0, 1fr) 180px;
    gap: 36px;
  }

  .site-nav {
    gap: clamp(24px, 2.6vw, 42px);
  }

  .site-nav a {
    font-size: 15px;
  }

  .nav-lotus {
    width: 154px;
    height: 72px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .header-inner {
    width: min(100% - 22px, 1200px);
  }

  .brand-image {
    width: 136px;
  }

  .image-hero {
    min-height: calc(100svh - 68px);
    background-position: 57% center;
  }

  .hero-grid {
    padding: 22px 0;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero-lead {
    font-size: 15px;
  }

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

  .trust-strip {
    gap: 6px;
  }

  .trust-strip li {
    padding: 5px 8px;
    font-size: 12px;
  }

  .category-card {
    grid-template-columns: 96px 1fr;
  }

  .category-card div {
    padding: 14px;
  }

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

/* Light brand theme */
html,
body {
  color: var(--color-text-main);
  background: var(--color-bg-page);
}

.site-header,
body[data-page="home"] .site-header,
body[data-page="home"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 74, 63, 0.14);
  box-shadow: 0 8px 26px rgba(23, 74, 63, 0.08);
}

.site-header .brand-image {
  display: block;
  box-shadow: none;
}

.site-header .brand::before,
.site-header .brand::after {
  content: none;
}

.nav-toggle {
  color: var(--color-jade-dark);
  background: var(--color-bg-surface);
  border-color: var(--border-jade-soft);
}

.site-nav {
  background: var(--color-bg-surface);
  border-bottom-color: rgba(23, 74, 63, 0.14);
  box-shadow: 0 18px 40px rgba(23, 74, 63, 0.12);
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: var(--color-jade-dark);
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--color-jade-dark);
}

.button-primary,
.button-primary:hover {
  color: var(--white);
  background: var(--color-jade-dark);
  border-color: var(--color-jade-dark);
  box-shadow: 0 12px 24px rgba(23, 74, 63, 0.18);
}

.button-outline,
.button-outline-dark,
.button-light {
  color: var(--color-jade-dark);
  background: var(--color-bg-surface);
  border-color: var(--color-jade-dark);
}

.button-outline:hover,
.button-outline-dark:hover,
.button-light:hover {
  color: var(--white);
  background: var(--color-jade-dark);
}

.eyebrow,
.proof-card span,
.product-detail > div > span,
.info-item span,
.site-footer span,
.process-line span {
  color: var(--color-jade-dark);
}

.section,
.product-preview,
.service-preview,
.contact-cta,
.commitment-wrap {
  background: var(--color-bg-page);
}

.about-section {
  background: rgba(23, 74, 63, 0.05);
}

.section-heading h2,
.section-copy h2,
.contact-cta h2,
.contact-info h2,
.contact-form h2 {
  display: inline-block;
  padding: 6px 14px;
  color: var(--white);
  background: var(--color-jade-dark);
  border-radius: 4px;
  font-size: clamp(26px, 5vw, 40px);
}

.section-heading h2.heading-combo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 12px;
  line-height: 1.08;
  text-align: center;
}

.heading-combo-main {
  display: block;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(24px, 4.4vw, 36px);
  font-weight: 700;
  line-height: 1.05;
}

.heading-combo-sub {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--latin);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.12;
}

.section-copy h2.trust-guarantee-title {
  display: inline-flex;
  width: min(100%, 620px);
  flex-direction: column;
  gap: 16px;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.trust-guarantee-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-gold-main);
  font-family: var(--latin);
  font-size: clamp(14px, 1.65vw, 20px);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  white-space: nowrap;
}

.trust-guarantee-eyebrow i {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 108px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold-main), rgba(218, 185, 107, 0.18));
}

.trust-guarantee-eyebrow i::before,
.trust-guarantee-eyebrow i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-gold-main);
  border-radius: 3px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--color-bg-page);
}

.trust-guarantee-eyebrow i::before {
  left: 36%;
}

.trust-guarantee-eyebrow i::after {
  left: calc(36% + 11px);
}

.trust-guarantee-main {
  display: block;
  padding: 18px 34px 20px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--color-jade-dark);
  border: 2px solid rgba(218, 185, 107, 0.78);
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 14px 28px rgba(23, 74, 63, 0.18);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.certificate-section .split-section {
  align-items: center;
}

.certificate-section .section-copy > p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(34, 34, 34, 0.78);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2;
}

.certificate-section .check-list {
  gap: 18px;
  margin-top: 30px;
}

.certificate-section .check-list li {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding-left: 56px;
  color: rgba(34, 34, 34, 0.82);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.certificate-section .check-list li::before {
  content: "\2713";
  top: 50%;
  width: 31px;
  height: 31px;
  color: var(--color-gold-main);
  background: var(--color-jade-dark);
  border: 1px solid rgba(218, 185, 107, 0.8);
  box-shadow: 0 8px 18px rgba(23, 74, 63, 0.16);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 900;
  line-height: 29px;
  text-align: center;
  transform: translateY(-50%);
}

.certificate-section .guarantee-link {
  margin-top: 30px;
  color: var(--color-jade-dark);
  font-size: clamp(17px, 1.8vw, 22px);
}

.certificate-section .guarantee-link::after {
  width: 78px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold-main), rgba(218, 185, 107, 0));
}

.certificate-section .proof-panel {
  gap: 22px;
}

.certificate-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 38%);
  gap: 22px;
  align-items: center;
  min-height: 240px;
  padding: 34px 32px;
  background:
    radial-gradient(circle at 88% 12%, rgba(218, 185, 107, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 233, 0.92));
  border: 1px solid rgba(218, 185, 107, 0.38);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(23, 74, 63, 0.12);
}

.certificate-proof-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(218, 185, 107, 0.14);
  border-radius: 14px;
}

.certificate-proof-copy,
.proof-tags,
.certificate-proof-image {
  position: relative;
  z-index: 1;
}

.certificate-proof-copy span {
  color: var(--color-jade-dark);
  font-size: 15px;
  letter-spacing: 0.16em;
}

.certificate-proof-copy strong {
  margin-top: 14px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.18;
}

.certificate-proof-copy p {
  max-width: 360px;
  margin-top: 12px;
  color: rgba(34, 34, 34, 0.72);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}

.certificate-proof-image {
  justify-self: end;
  width: min(100%, 230px);
  max-height: 210px;
  object-fit: contain;
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(218, 185, 107, 0.22);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(23, 74, 63, 0.12);
}

.proof-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.proof-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #7b5a27;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(218, 185, 107, 0.72);
  border-radius: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.aftercare-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 38px 34px 30px;
  color: rgba(255, 241, 207, 0.88);
  background:
    radial-gradient(circle at 18% 0%, rgba(23, 74, 63, 0.48), transparent 38%),
    radial-gradient(circle at 94% 50%, rgba(23, 74, 63, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0)),
    #303032;
  border: 1px solid rgba(218, 185, 107, 0.76);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(20, 20, 21, 0.24);
}

.aftercare-proof-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(218, 185, 107, 0.28);
  border-radius: 13px;
}

.aftercare-proof-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -30px;
  width: 45%;
  height: 78%;
  opacity: 0.2;
  background:
    radial-gradient(ellipse at 66% 60%, transparent 0 39%, rgba(218, 185, 107, 0.7) 40% 41%, transparent 42%),
    radial-gradient(ellipse at 48% 72%, transparent 0 35%, rgba(218, 185, 107, 0.58) 36% 37%, transparent 38%),
    linear-gradient(145deg, transparent 0 43%, rgba(218, 185, 107, 0.64) 44% 45%, transparent 46%);
}

.aftercare-proof-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.aftercare-shield {
  position: relative;
  display: block;
  width: 78px;
  height: 88px;
  border: 4px solid rgba(244, 207, 142, 0.95);
  border-radius: 18px 18px 30px 30px;
  background: linear-gradient(135deg, rgba(23, 74, 63, 0.94), rgba(23, 74, 63, 0.62));
  box-shadow: inset 0 0 0 2px rgba(255, 244, 214, 0.16), 0 12px 24px rgba(0, 0, 0, 0.22);
  clip-path: polygon(50% 0, 93% 14%, 88% 63%, 50% 100%, 12% 63%, 7% 14%);
}

.aftercare-shield::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 34px;
  width: 28px;
  height: 15px;
  border-left: 5px solid rgba(244, 207, 142, 0.95);
  border-bottom: 5px solid rgba(244, 207, 142, 0.95);
  transform: rotate(-45deg);
}

.aftercare-proof-card strong {
  display: block;
  margin-top: 0;
  color: rgba(255, 232, 184, 0.98);
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.16;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.aftercare-proof-card p {
  max-width: 560px;
  margin-top: 12px;
  color: rgba(255, 241, 207, 0.82);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}

.aftercare-tags {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.aftercare-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(255, 232, 184, 0.96);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(218, 185, 107, 0.72);
  border-radius: 9px;
  font-family: var(--serif);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.contact-cta p,
.page-hero p:not(.eyebrow),
.trust-card p,
.category-card p,
.product-detail p,
.promise-list p,
.policy-note p,
.info-item p,
.qr-panel p,
.check-list li {
  color: var(--color-text-muted);
}

.home-hero {
  color: var(--white);
  background: var(--color-jade-dark) url("assets/home-hero.jpg") center center / cover no-repeat;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(23, 74, 63, 0.9) 0%, rgba(23, 74, 63, 0.82) 36%, rgba(23, 74, 63, 0.48) 56%, rgba(23, 74, 63, 0.08) 76%),
    linear-gradient(180deg, rgba(23, 74, 63, 0.5) 0%, rgba(23, 74, 63, 0.08) 58%);
}

.hero-kicker,
.hero-content h1,
.hero-copy h1,
.hero-copy .eyebrow {
  color: var(--white);
}

.hero-summary,
.hero-lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero-badges span,
.trust-strip li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.trust-card,
.category-card,
.proof-card,
.commitment-paper,
.contact-info,
.contact-form,
.product-detail,
.policy-note {
  color: var(--color-text-main);
  background: var(--color-bg-surface);
  border: 1px solid rgba(23, 74, 63, 0.16);
  box-shadow: var(--shadow-card);
}

.trust-card strong,
.proof-card-dark {
  color: var(--white);
  background: var(--color-jade-dark);
  border-color: var(--color-jade-dark);
}

.trust-card h3,
.category-card h3,
.product-detail h2,
.proof-card strong,
.paper-head h2,
.promise-list h3,
.policy-note h3,
.contact-form label,
.info-item a {
  color: var(--color-jade-dark);
}

.proof-card-dark strong,
.proof-card-dark p {
  color: var(--white);
}

.category-card a,
.text-link {
  color: var(--color-jade-dark);
}

.process-section,
.service-band {
  color: var(--white);
  background: var(--color-jade-dark);
}

.process-section .section-heading h2,
.service-band h2,
.service-band p {
  color: var(--white);
  background: transparent;
}

.process-section .section-heading h2 {
  display: inline-block;
  padding: 6px 14px;
  color: var(--white);
  background: var(--color-jade-dark);
}

.process-line li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
}

.process-line span {
  color: var(--white);
}

.page-hero,
.products-hero,
.service-hero,
.contact-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 74, 63, 0.9), rgba(23, 74, 63, 0.58)),
    url("assets/brand-hero.jpg") center/cover;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(23, 74, 63, 0.9), rgba(23, 74, 63, 0.58)),
    url("assets/product-bracelet.jpg") center/cover;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(23, 74, 63, 0.9), rgba(23, 74, 63, 0.58)),
    url("assets/storefront.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(23, 74, 63, 0.9), rgba(23, 74, 63, 0.58)),
    url("assets/live-room.jpg") center/cover;
}

.contact-cta-inner {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 242, 0.78)),
    url("assets/brand-hero.jpg") center/cover;
  border-color: rgba(23, 74, 63, 0.16);
}

.commitment-paper {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("assets/logo-mark.png") right 24px top 24px/140px auto no-repeat;
}

.paper-head,
.promise-list article,
.info-item {
  border-color: rgba(23, 74, 63, 0.14);
}

.policy-note,
.qr-panel {
  background: rgba(23, 74, 63, 0.06);
}

.qr-placeholder {
  color: var(--color-jade-dark);
  background:
    linear-gradient(90deg, currentColor 10%, transparent 10% 20%, currentColor 20% 30%, transparent 30% 40%, currentColor 40% 50%, transparent 50% 60%, currentColor 60% 70%, transparent 70%),
    var(--white);
  border-color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(23, 74, 63, 0.22);
}

.qr-placeholder span {
  background: var(--white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--color-text-main);
  background: var(--white);
  border-color: rgba(23, 74, 63, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline-color: rgba(23, 74, 63, 0.32);
  border-color: var(--color-jade-dark);
}

.form-note {
  color: var(--color-jade-dark);
}

.site-footer,
.mobile-action-bar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-jade-dark);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-grid strong,
.mobile-action-item {
  color: var(--white);
}

.footer-grid p,
.footer-grid a,
.copyright {
  color: rgba(255, 255, 255, 0.72);
}

.copyright,
.mobile-action-item + .mobile-action-item {
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-wechat-card {
  min-width: 0;
}

.footer-wechat {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  padding: 12px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(218, 185, 107, 0.08));
  border: 1px solid rgba(218, 185, 107, 0.32);
  border-radius: 8px;
}

.footer-wechat img {
  width: 92px;
  height: 92px;
  padding: 6px;
  object-fit: cover;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.footer-grid .footer-wechat-id {
  margin-top: 0;
  color: var(--white);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.25;
}

.footer-wechat-id b {
  color: #DAB96B;
  font-weight: 900;
}

.footer-wechat p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.wechat-id {
  color: var(--color-jade-dark);
  font-size: 22px;
  font-weight: 800;
}

.wechat-id b {
  color: var(--seal);
  font-weight: 900;
}

.qr-panel {
  grid-template-columns: 148px minmax(0, 1fr);
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 232, 0.86));
  border: 1px solid rgba(23, 74, 63, 0.14);
  box-shadow: 0 14px 34px rgba(23, 74, 63, 0.1);
}

.qr-panel img {
  width: 148px;
  height: 148px;
  padding: 8px;
  object-fit: cover;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(23, 74, 63, 0.12);
}

.qr-panel strong {
  display: block;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}

.qr-panel p {
  margin-top: 10px;
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: minmax(240px, 0.9fr) minmax(360px, 1.05fr) minmax(240px, 0.8fr);
  }

  .site-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--color-jade-dark);
    background: transparent;
  }

  .site-nav a::after {
    background: var(--color-jade-dark);
  }

  .site-nav .nav-cta,
  .site-nav .nav-cta:hover {
    color: var(--white);
    background: var(--color-jade-dark);
  }
}

@media (max-width: 720px) {
  .footer-wechat,
  .qr-panel {
    grid-template-columns: 1fr;
  }

  .footer-wechat img,
  .qr-panel img {
    width: min(100%, 220px);
    height: auto;
    justify-self: start;
  }
}

/* Final contact and category polish */
.category-card h3,
.product-detail h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--color-jade-dark);
  background: linear-gradient(180deg, rgba(218, 185, 107, 0.16), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(23, 74, 63, 0.22);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.product-detail .category-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  padding: 42px 0 18px;
}

.footer-grid {
  align-items: center;
  gap: clamp(24px, 5vw, 58px);
}

.footer-brand-block {
  min-width: 0;
}

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

.footer-contact-list p {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  margin: 0;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.footer-contact-list b {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-qr-card {
  justify-self: end;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(218, 185, 107, 0.26);
  border-radius: 8px;
}

.footer-qr-card img {
  width: 142px;
  height: 142px;
  padding: 8px;
  object-fit: contain;
  background: var(--white);
  border-radius: 7px;
}

.footer-qr-card p {
  margin: 0;
  color: #DAB96B;
  font-weight: 800;
  line-height: 1.2;
}

.contact-info .info-item p[data-contact-email],
.contact-info .info-item p[data-contact-phone],
.contact-info .info-item p[data-contact-hours],
.contact-info .info-item p[data-contact-address] {
  color: var(--color-text-main);
  font-weight: 650;
}

.qr-panel {
  grid-template-columns: 160px minmax(0, 1fr);
  background: linear-gradient(135deg, #ffffff, var(--color-bg-page));
}

.qr-panel img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 0.95fr) minmax(390px, 1.15fr) auto;
  }
}

@media (max-width: 720px) {
  .footer-grid,
  .footer-contact-list p,
  .qr-panel {
    grid-template-columns: 1fr;
  }

  .footer-qr-card {
    justify-self: start;
  }

  .footer-qr-card img,
  .qr-panel img {
    width: 180px;
    height: 180px;
  }

  .contact-info .qr-panel img {
    justify-self: center;
    margin-inline: auto;
  }
}

/* Reference-style footer, using the established brand palette */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--color-bg-ivory);
  background:
    radial-gradient(circle at 13% 35%, rgba(218, 185, 107, 0.13), transparent 28%),
    radial-gradient(circle at 92% 28%, rgba(218, 185, 107, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(34, 34, 34, 0.22), rgba(34, 34, 34, 0) 45%),
    var(--color-jade-dark);
  border-top: 1px solid var(--border-gold-main);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 180px;
  pointer-events: none;
  opacity: 0.18;
  border: 1px solid rgba(218, 185, 107, 0.2);
  transform: rotate(-18deg);
}

.site-footer::before {
  left: -150px;
  top: 90px;
  border-radius: 50%;
}

.site-footer::after {
  right: -160px;
  bottom: 70px;
  border-radius: 42%;
}

.footer-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) minmax(420px, 1.18fr) minmax(210px, 0.55fr);
  gap: clamp(32px, 5.2vw, 70px);
  align-items: center;
  padding: clamp(42px, 5.8vw, 66px) 0 clamp(34px, 4.6vw, 52px);
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
}

.footer-brand-block .footer-logo {
  width: 108px;
  height: 108px;
  padding: 10px;
  object-fit: contain;
  background: radial-gradient(circle, rgba(218, 185, 107, 0.22), rgba(218, 185, 107, 0.06));
  border: 1px solid rgba(218, 185, 107, 0.58);
  border-radius: 50%;
  filter: sepia(0.4) saturate(1.3) brightness(1.12);
}

.footer-brand-block .footer-wordmark {
  display: block;
  width: min(100%, 410px);
  height: auto;
  max-height: 164px;
  object-fit: contain;
}

.footer-brand-block strong {
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.footer-brand-block .footer-slogan {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 0;
  color: var(--color-gold-main);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.footer-brand-block .footer-slogan::before,
.footer-brand-block .footer-slogan::after,
.footer-qr-card p::before,
.footer-qr-card p::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-main), transparent);
}

.footer-contact-list {
  display: grid;
  gap: 0;
  min-width: 0;
  padding: 0 clamp(26px, 3.8vw, 54px);
  border-left: 1px solid rgba(218, 185, 107, 0.42);
  border-right: 1px solid rgba(218, 185, 107, 0.42);
}

.footer-contact-list p {
  position: relative;
  display: grid;
  grid-template-columns: 38px 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(218, 185, 107, 0.22);
}

.footer-contact-list p:last-child {
  border-bottom: 0;
}

.footer-contact-list p::before {
  content: "";
  width: 27px;
  height: 27px;
  justify-self: center;
  background:
    linear-gradient(var(--color-gold-main), var(--color-gold-main)) center / 14px 2px no-repeat,
    linear-gradient(var(--color-gold-main), var(--color-gold-main)) center / 2px 14px no-repeat;
  border: 2px solid var(--color-gold-main);
  border-radius: 50%;
  opacity: 0.95;
}

.footer-contact-list p:nth-child(2)::before {
  border-radius: 9px;
}

.footer-contact-list p:nth-child(3)::before {
  border-radius: 3px;
  background:
    linear-gradient(35deg, transparent 45%, var(--color-gold-main) 46% 54%, transparent 55%) center / 22px 18px no-repeat,
    linear-gradient(-35deg, transparent 45%, var(--color-gold-main) 46% 54%, transparent 55%) center / 22px 18px no-repeat;
}

.footer-contact-list p:nth-child(4)::before {
  height: 31px;
  border-radius: 50% 50% 50% 6px;
  transform: rotate(-45deg);
}

.footer-contact-list span {
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.35;
}

.footer-contact-list span::after {
  content: ":";
}

.footer-contact-list b {
  min-width: 0;
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-qr-card {
  justify-self: center;
  display: grid;
  gap: 20px;
  justify-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-qr-card img {
  width: clamp(150px, 13vw, 180px);
  height: clamp(150px, 13vw, 180px);
  padding: 10px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(247, 243, 232, 0.88);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.footer-qr-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(218, 185, 107, 0.55);
  text-align: center;
}

.footer-bottom-copy,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
}

.footer-bottom-copy {
  justify-content: center;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  font-weight: 400;
}

.footer-bottom-copy span,
.footer-links a {
  color: var(--color-gold-light);
}

.footer-bottom-copy span,
.footer-bottom-copy [data-year] {
  display: inline;
  font-weight: 400;
}

.footer-bottom-copy span + span::before,
.footer-links a + a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  margin: 0 18px;
  vertical-align: -3px;
  background: rgba(218, 185, 107, 0.62);
}

.footer-links a {
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--color-bg-ivory);
}

@media (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-contact-list {
    width: min(100%, 620px);
    justify-self: center;
    padding: 20px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(218, 185, 107, 0.42);
    border-bottom: 1px solid rgba(218, 185, 107, 0.42);
    text-align: left;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 64px;
  }

  .footer-grid {
    min-height: 0;
    padding: 38px 0 30px;
  }

  .footer-brand-block .footer-logo {
    width: 88px;
    height: 88px;
  }

  .footer-brand-block .footer-wordmark {
    width: min(100%, 320px);
    max-height: 128px;
  }

  .footer-brand-block .footer-slogan {
    gap: 10px;
    font-size: 18px;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .footer-brand-block .footer-slogan::before,
  .footer-brand-block .footer-slogan::after {
    width: 24px;
  }

  .footer-contact-list p {
    grid-template-columns: 34px 82px minmax(0, 1fr);
    gap: 8px;
    min-height: 58px;
  }

  .footer-contact-list span,
  .footer-contact-list b {
    font-size: 15px;
  }

  .footer-qr-card img {
    width: 168px;
    height: 168px;
  }

  .footer-bottom {
    padding: 16px 0 20px;
  }

  .footer-bottom-copy,
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 0;
    font-size: clamp(12px, 3.6vw, 14px);
  }

  .footer-bottom-copy span + span::before,
  .footer-links a + a::before {
    display: none;
  }
}

/* Footer corrections: white text and proper contact icons */
.footer-brand-block strong,
.footer-brand-block .footer-slogan,
.footer-contact-list span,
.footer-contact-list b,
.footer-qr-card p,
.footer-bottom-copy,
.footer-links,
.footer-bottom-copy span,
.footer-links a {
  color: var(--white);
}

.footer-links a:hover {
  color: var(--color-gold-main);
}

.footer-contact-list p::before {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  opacity: 1;
  transform: none;
}

.footer-contact-list p:nth-child(1)::before {
  background-size: 38px 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='24' fill='none' stroke='%23DAB96B' stroke-width='6'/%3E%3Cpath d='M32 16v18l13 8' fill='none' stroke='%23DAB96B' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='32' cy='32' r='4' fill='%23DAB96B'/%3E%3C/svg%3E");
}

.footer-contact-list p:nth-child(2)::before {
  border-radius: 0;
  background-size: 36px 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M22 10c-3.2 1.9-6.4 4.9-8.8 8.5-3.2 4.7 5.2 18.4 13.7 26.9C35.4 53.9 49.1 62.3 53.8 59.1c3.6-2.4 6.6-5.6 8.5-8.8.9-1.5.3-3.4-1.3-4.1l-12.5-5.8c-1.3-.6-2.9-.2-3.8 1l-3.2 4.1c-4.2-2.1-8.1-5.1-11.8-8.8-3.7-3.7-6.7-7.6-8.8-11.8l4.1-3.2c1.2-.9 1.6-2.5 1-3.8L20.2 11.3c-.7-1.6-2.7-2.2-4.2-1.3Z' fill='%23DAB96B'/%3E%3C/svg%3E");
}

.footer-contact-list p:nth-child(3)::before {
  border-radius: 0;
  background-size: 38px 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='27' cy='29' rx='23' ry='17' fill='%23DAB96B'/%3E%3Cpath d='M11 43l-3 10 11-5' fill='%23DAB96B'/%3E%3Cellipse cx='45' cy='43' rx='15' ry='12' fill='%23DAB96B'/%3E%3Cpath d='M54 53l2 7-8-4' fill='%23DAB96B'/%3E%3Ccircle cx='19.5' cy='27.5' r='2.6' fill='%23174A3F'/%3E%3Ccircle cx='34.5' cy='27.5' r='2.6' fill='%23174A3F'/%3E%3Ccircle cx='39.5' cy='41' r='2' fill='%23174A3F'/%3E%3Ccircle cx='50.5' cy='41' r='2' fill='%23174A3F'/%3E%3C/svg%3E");
}

.footer-contact-list p:nth-child(4)::before {
  border-radius: 0;
  background-size: 40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='10' y='16' width='44' height='32' rx='3' fill='%23DAB96B'/%3E%3Cpath d='M12 18l20 18 20-18' fill='none' stroke='%23174A3F' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 47l16-15M52 47L36 32' fill='none' stroke='%23174A3F' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.footer-contact-list p:nth-child(5)::before {
  height: 36px;
  border-radius: 0;
  transform: none;
  background-size: 40px 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M32 5c-12 0-21 9.1-21 21.1 0 15.4 21 33.9 21 33.9s21-18.5 21-33.9C53 14.1 44 5 32 5Z' fill='%23DAB96B'/%3E%3Ccircle cx='32' cy='26' r='8' fill='%23174A3F'/%3E%3Cellipse cx='32' cy='57' rx='18' ry='4' fill='%23DAB96B' opacity='.95'/%3E%3C/svg%3E");
}

/* Footer proportion tuning */
.footer-grid {
  min-height: 280px;
  grid-template-columns: minmax(240px, 0.86fr) minmax(420px, 1.16fr) minmax(200px, 0.52fr);
  gap: clamp(28px, 4.5vw, 58px);
}

.footer-brand-block {
  gap: 10px;
}

.footer-brand-block .footer-wordmark {
  width: min(100%, 270px);
  max-height: 108px;
}

.footer-brand-block .footer-slogan {
  margin-top: 12px;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.footer-contact-list {
  padding: 0 clamp(24px, 3.2vw, 42px);
}

.footer-contact-list p {
  grid-template-columns: 32px 78px minmax(0, 1fr);
  gap: 10px;
  min-height: 56px;
  padding: 10px 0;
}

.footer-contact-list p::before {
  width: 30px;
  height: 30px;
  background-size: 28px 28px;
}

.footer-contact-list p:nth-child(1)::before,
.footer-contact-list p:nth-child(2)::before {
  background-size: 30px 30px;
}

.footer-contact-list p:nth-child(3)::before,
.footer-contact-list p:nth-child(4)::before,
.footer-contact-list p:nth-child(5)::before {
  background-size: 31px 31px;
}

.footer-contact-list span,
.footer-contact-list b {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.footer-qr-card img {
  width: clamp(138px, 11vw, 156px);
  height: clamp(138px, 11vw, 156px);
}

.footer-qr-card p {
  font-size: 16px;
  letter-spacing: 0.1em;
}

@media (max-width: 640px) {
  .footer-brand-block .footer-wordmark {
    width: min(100%, 230px);
    max-height: 92px;
  }

  .footer-brand-block .footer-slogan {
    font-size: 16px;
  }

  .footer-contact-list p {
    grid-template-columns: 30px 72px minmax(0, 1fr);
  }

  .footer-contact-list span,
  .footer-contact-list b,
  .footer-qr-card p {
    font-size: 15px;
  }

  .footer-qr-card img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    text-align: center;
  }

  .footer-contact-list {
    width: min(100%, 620px);
    justify-self: center;
    padding: 18px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(218, 185, 107, 0.42);
    border-bottom: 1px solid rgba(218, 185, 107, 0.42);
    text-align: left;
  }

  .footer-qr-card {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    padding: 38px 0 30px;
  }

  .footer-contact-list {
    width: min(100%, 360px);
  }

  .footer-contact-list p {
    grid-template-columns: 30px 64px minmax(0, 1fr);
    gap: 9px;
  }
}

.footer-contact-list p:nth-child(4)::before {
  height: 30px;
  transform: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Crect x='8' y='15' width='48' height='34' rx='4' fill='%23DAB96B'/%3E%3Cpath d='M11 18l21 18 21-18' fill='none' stroke='%23174A3F' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 48l17-16M52 48L35 32' fill='none' stroke='%23174A3F' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 34px 34px no-repeat;
}

/* Product feature cards */
.trust-section .three-card-grid {
  gap: clamp(18px, 2.4vw, 28px);
}

.trust-section .trust-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 240px;
  padding: 28px 30px 24px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 249, 238, 0.98), rgba(248, 237, 220, 0.94)),
    var(--color-bg-surface);
  border: 1px solid rgba(200, 164, 93, 0.58);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 14px 32px rgba(200, 164, 93, 0.14);
}

.trust-section .trust-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 6px;
  pointer-events: none;
}

.trust-section .trust-card strong {
  width: 58px;
  height: 58px;
  margin: 0 0 16px;
  color: var(--white);
  background: var(--color-jade-dark);
  border: 0;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.trust-section .trust-card h3 {
  margin: 0 0 12px;
  color: var(--color-text-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.trust-section .trust-card p {
  max-width: 310px;
  margin: 0 auto;
  color: var(--color-text-main);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.trust-section .trust-card::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-top: 18px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px 40px;
}

.trust-section .trust-card:nth-child(1)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23174A3F' stroke-width='3.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='8' width='34' height='44' rx='2'/%3E%3Cpath d='M22 20h18M22 30h18M22 40h10'/%3E%3Ccircle cx='46' cy='47' r='7'/%3E%3Cpath d='M42 53l-3 8 7-4 7 4-3-8'/%3E%3C/svg%3E");
}

.trust-section .trust-card:nth-child(2)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23174A3F' stroke-width='3.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 32 32 10h18l4 18-22 26L10 32Z'/%3E%3Ccircle cx='43' cy='21' r='4'/%3E%3C/svg%3E");
}

.trust-section .trust-card:nth-child(3)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%23174A3F' stroke-width='3.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 6 52 15v15c0 14-8 23-20 28C20 53 12 44 12 30V15l20-9Z'/%3E%3Cpath d='m22 32 7 7 14-16'/%3E%3C/svg%3E");
}

@media (min-width: 900px) {
  .trust-section .three-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-section .trust-card {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .trust-section .trust-card strong {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }
}

.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  min-height: 32px;
  padding: 0 14px;
  color: var(--color-gold-light);
  border: 1px solid rgba(218, 185, 107, 0.72);
  border-radius: 4px;
  background: rgba(5, 7, 6, 0.92);
  box-shadow: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav .nav-cta::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7.4C2 4.7 4.7 2.6 8 2.6s6 2.1 6 4.8-2.7 4.8-6 4.8c-.7 0-1.4-.1-2-.3L2.8 13.5l.8-2.8C2.6 9.8 2 8.7 2 7.4Z' fill='%23DAB96B'/%3E%3Ccircle cx='5.7' cy='7.4' r='.72' fill='%23050706'/%3E%3Ccircle cx='8' cy='7.4' r='.72' fill='%23050706'/%3E%3Ccircle cx='10.3' cy='7.4' r='.72' fill='%23050706'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-nav .nav-cta::after,
.site-nav .nav-cta:hover::after,
.site-nav .nav-cta.is-active::after {
  content: none;
}

@media (min-width: 980px) {
  .site-nav .nav-cta,
  .site-nav .nav-cta:hover,
  .site-nav .nav-cta.is-active {
    align-self: center;
    min-height: 32px;
    padding: 0 14px;
  }
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--color-text-dark);
  background:
    radial-gradient(circle at top left, rgba(218, 185, 107, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(23, 74, 63, 0.08), transparent 24%),
    #FBF7F0;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(218, 185, 107, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.process-section::before {
  top: -76px;
  left: -80px;
}

.process-section::after {
  right: -70px;
  bottom: -82px;
}

.process-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto 44px;
  text-align: center;
}

.process-heading h2 {
  color: #2a1b12;
  font-family: var(--serif);
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.process-heading p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  color: rgba(34, 34, 34, 0.78);
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: 0.22em;
}

.process-heading p::before,
.process-heading p::after {
  content: "";
  width: min(10vw, 110px);
  height: 1px;
  background: rgba(178, 124, 63, 0.58);
}

.process-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 390px;
  padding: 0 12px 24px;
  color: var(--color-text-dark);
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(178, 124, 63, 0.2);
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(89, 58, 28, 0.08);
}

.process-flow li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -26px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #b27c3f;
  background: #FBF7F0;
  border: 2px solid rgba(178, 124, 63, 0.34);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(89, 58, 28, 0.12);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.process-flow span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  color: var(--white);
  background: linear-gradient(180deg, #c29253, #a86f35);
  border-radius: 50%;
  font-family: var(--latin);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.process-flow h3 {
  margin-top: 18px;
  color: #21160f;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1;
}

.process-flow h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin: 14px auto 16px;
  background: #b27c3f;
}

.process-flow img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  border-radius: 8px;
}

.process-flow p {
  margin-top: 14px;
  color: rgba(34, 34, 34, 0.76);
  font-size: 14px;
  line-height: 1.65;
}

.process-assurance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 42px auto 0;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(178, 124, 63, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(89, 58, 28, 0.08);
}

.process-assurance article {
  padding: 0 26px;
  border-right: 1px solid rgba(178, 124, 63, 0.24);
}

.process-assurance article:last-child {
  border-right: 0;
}

.process-assurance strong {
  display: block;
  color: #21160f;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
}

.process-assurance p {
  margin-top: 4px;
  color: rgba(34, 34, 34, 0.66);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .process-flow {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    row-gap: 38px;
  }

  .process-flow li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .process-heading {
    margin-bottom: 34px;
  }

  .process-heading p {
    display: block;
    letter-spacing: 0.08em;
  }

  .process-heading p::before,
  .process-heading p::after {
    content: none;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

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

  .process-flow img {
    aspect-ratio: 16 / 10;
  }

  .process-assurance {
    grid-template-columns: 1fr;
    padding: 8px 20px;
  }

  .process-assurance article {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(178, 124, 63, 0.2);
  }

  .process-assurance article:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .process-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
  }

  .process-flow li {
    min-height: 330px;
    padding: 0 7px 16px;
  }

  .process-flow li:not(:last-child)::after {
    display: grid;
    right: -18px;
    width: 28px;
    height: 28px;
    font-size: 28px;
  }

  .process-flow span {
    width: 42px;
    height: 42px;
    margin-top: -21px;
    font-size: 19px;
  }

  .process-flow h3 {
    margin-top: 14px;
    font-size: 24px;
  }

  .process-flow img {
    aspect-ratio: 1 / 1.18;
  }

  .process-flow p {
    font-size: 12px;
    line-height: 1.55;
  }

  .process-assurance {
    max-width: 900px;
  }
}

/* Homepage hero and process artwork supplied by the brand team. */
body[data-page="home"] .home-hero {
  width: 100%;
  margin: 0;
  min-height: auto;
  aspect-ratio: auto;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: #030302;
}

body[data-page="home"] .home-hero::before {
  content: none;
}

body[data-page="home"] .home-hero::after {
  content: none;
}

body[data-page="home"] .home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1200px);
  max-width: 1200px;
  aspect-ratio: 1672 / 941;
  padding: 0;
  pointer-events: none;
  background: url("assets/home-hero.jpg") center bottom / 109% auto no-repeat;
}

body[data-page="home"] .home-hero .hero-kicker,
body[data-page="home"] .home-hero .hero-content h1,
body[data-page="home"] .home-hero .hero-summary,
body[data-page="home"] .home-hero .hero-badges {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-page="home"] .home-hero .hero-actions {
  position: absolute;
  left: 5.8%;
  bottom: 13.4%;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  width: 53.6%;
  height: 13.6%;
  margin: 0;
  gap: 1.7%;
  pointer-events: auto;
}

body[data-page="home"] .home-hero .hero-actions .button {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: 0;
  color: transparent;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  font-size: 0;
  opacity: 0;
  transform: none;
}

body[data-page="home"] .home-hero .hero-actions .button:hover,
body[data-page="home"] .home-hero .hero-actions .button:focus-visible {
  color: transparent;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

body[data-page="home"] .process-section {
  padding: 0;
  background: var(--color-bg-page);
}

body[data-page="home"] .process-section::before,
body[data-page="home"] .process-section::after {
  content: none;
}

body[data-page="home"] .process-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

body[data-page="home"] .process-visual {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  overflow: hidden;
}

.process-visual img {
  display: block;
  width: 100%;
  height: auto;
}

body[data-page="home"] .process-intro {
  width: min(100% - 40px, 1200px);
  margin: 0 auto 30px;
  padding-top: 72px;
  color: var(--color-text-main);
}

body[data-page="home"] .process-intro h2 {
  display: inline-block;
  margin: 0;
  padding: 6px 14px;
  color: var(--white);
  background: var(--color-jade-dark);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.2;
}

body[data-page="home"] .process-intro p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-align: left;
}

.certificate-section .section-copy > p {
  max-width: 720px;
  color: var(--color-text-main);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.9;
}

.certificate-section .check-list {
  gap: 16px;
  margin-top: 26px;
}

.certificate-section .check-list li {
  min-height: 38px;
  padding-left: 56px;
  color: var(--color-text-main);
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.55;
}

.certificate-section .check-list li::before {
  top: 0.12em;
  width: 36px;
  height: 36px;
  background: var(--color-jade-dark);
  border: 2px solid rgba(201, 164, 92, 0.36);
  box-shadow: 0 8px 18px rgba(23, 74, 63, 0.14);
}

.certificate-section .check-list li::after {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(0.12em + 10px);
  width: 13px;
  height: 7px;
  border-left: 3px solid var(--color-gold-light);
  border-bottom: 3px solid var(--color-gold-light);
  transform: rotate(-45deg);
}

.certificate-section .text-link {
  margin-top: 30px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(18px, 1.75vw, 24px);
  font-weight: 600;
}

.certificate-section .text-link::after {
  width: 88px;
  height: 14px;
  margin-left: 18px;
  background: var(--color-gold-main);
  clip-path: polygon(0 46%, 86% 46%, 86% 18%, 100% 50%, 86% 82%, 86% 54%, 0 54%);
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero .hero-actions {
    display: none;
  }

  .certificate-section .section-copy > p,
  .certificate-section .check-list li,
  .certificate-section .text-link {
    font-size: 17px;
  }

  .certificate-section .check-list li {
    padding-left: 44px;
  }

  .certificate-section .check-list li::before {
    width: 30px;
    height: 30px;
  }

  .certificate-section .check-list li::after {
    left: 10px;
    top: calc(0.12em + 8px);
    width: 11px;
    height: 6px;
  }

  body[data-page="home"] .process-intro {
    width: min(100% - 28px, 1200px);
    margin-bottom: 22px;
    padding-top: 46px;
  }

  body[data-page="home"] .process-visual {
    width: min(100% - 28px, 1200px);
  }

  .section-copy h2.trust-guarantee-title {
    width: 100%;
    gap: 12px;
  }

  .trust-guarantee-eyebrow {
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .trust-guarantee-eyebrow i {
    min-width: 56px;
  }

  .trust-guarantee-main {
    padding: 14px 18px 16px;
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 0.04em;
    white-space: normal;
  }
}

/* Final certificate guarantee layout. */
@media (min-width: 980px) {
  .certificate-section .split-section {
    grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
    gap: clamp(46px, 6vw, 78px);
  }
}

.certificate-section .section-copy > p {
  max-width: 720px;
  margin-top: 28px;
  color: var(--color-text-main);
  font-family: var(--sans);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.9;
}

.certificate-section .check-list {
  gap: 18px;
  margin-top: 30px;
}

.certificate-section .check-list li {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding-left: 56px;
  color: var(--color-text-main);
  font-family: var(--sans);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.6;
}

.certificate-section .check-list li::before {
  content: "\2713";
  top: 50%;
  width: 31px;
  height: 31px;
  color: var(--color-gold-main);
  background: var(--color-jade-dark);
  border: 1px solid rgba(218, 185, 107, 0.8);
  box-shadow: 0 8px 18px rgba(23, 74, 63, 0.16);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 900;
  line-height: 29px;
  text-align: center;
  transform: translateY(-50%);
}

.certificate-section .check-list li::after {
  content: none;
}

.certificate-section .guarantee-link {
  margin-top: 30px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
}

.certificate-section .guarantee-link::after {
  width: 88px;
  height: 14px;
  margin-left: 18px;
  background: var(--color-gold-main);
  clip-path: polygon(0 46%, 86% 46%, 86% 18%, 100% 50%, 86% 82%, 86% 54%, 0 54%);
}

@media (max-width: 760px) {
  .certificate-section .section-copy > p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .certificate-section .check-list {
    gap: 14px;
    margin-top: 22px;
  }

  .certificate-section .check-list li {
    min-height: 32px;
    padding-left: 46px;
    font-size: 16px;
  }

  .certificate-section .check-list li::before {
    width: 27px;
    height: 27px;
    font-size: 17px;
    line-height: 25px;
  }

  .certificate-proof-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .certificate-proof-image {
    justify-self: start;
    width: min(100%, 320px);
    max-height: none;
  }

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

  .aftercare-proof-card {
    min-height: 0;
    padding: 28px 22px 24px;
  }

  .aftercare-proof-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aftercare-shield {
    width: 66px;
    height: 74px;
  }

  .aftercare-shield::after {
    left: 18px;
    top: 28px;
    width: 24px;
    height: 13px;
  }

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

@media (max-width: 420px) {
  .proof-tags,
  .aftercare-tags {
    grid-template-columns: 1fr;
  }
}

/* Certificate and aftercare poster cards. */
.certificate-section .proof-panel {
  gap: 28px;
}

.certificate-section .certificate-proof-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(145px, 0.78fr) minmax(220px, 1.1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  min-height: 420px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--color-text-main);
  background:
    radial-gradient(circle at 82% 72%, rgba(23, 74, 63, 0.08), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 244, 239, 0.9));
  border: 2px solid rgba(218, 185, 107, 0.58);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(23, 74, 63, 0.12);
}

.certificate-section .certificate-proof-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border: 1px solid rgba(218, 185, 107, 0.44);
  border-radius: 16px;
}

.certificate-section .certificate-proof-card::after {
  content: "";
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 28%;
  aspect-ratio: 1.2;
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 64% 66%, transparent 0 36%, rgba(218, 185, 107, 0.54) 37% 38%, transparent 39%),
    radial-gradient(ellipse at 46% 78%, transparent 0 35%, rgba(23, 74, 63, 0.28) 36% 37%, transparent 38%),
    linear-gradient(145deg, transparent 0 42%, rgba(218, 185, 107, 0.5) 43% 44%, transparent 45%);
}

.certificate-section .certificate-proof-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 8px;
}

.certificate-section .certificate-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold-main);
  font-family: var(--latin);
  font-size: clamp(15px, 1.8vw, 23px);
  font-weight: 700;
  letter-spacing: 0.3em;
}

.certificate-section .certificate-kicker::before,
.certificate-section .certificate-kicker::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.certificate-section .certificate-proof-copy strong {
  display: block;
  margin-top: 24px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.certificate-section .certificate-proof-copy i {
  display: block;
  width: 78px;
  height: 12px;
  margin: 20px 0 18px;
  background:
    linear-gradient(90deg, transparent 0 18%, var(--color-gold-main) 19% 81%, transparent 82%),
    radial-gradient(circle, var(--color-gold-main) 0 3px, transparent 4px);
}

.certificate-section .certificate-proof-copy p {
  max-width: 270px;
  margin: 0;
  color: var(--color-text-main);
  font-family: var(--serif);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.9;
}

.certificate-section .certificate-paper-wrap {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 340px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(218, 185, 107, 0.46);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.14);
}

.certificate-section .certificate-proof-image {
  display: block;
  width: 100%;
  max-height: 360px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 7px;
  box-shadow: none;
}

.certificate-section .certificate-callouts {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.certificate-section .cert-callout {
  position: absolute;
  display: inline-flex;
  min-width: 118px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--color-gold-light);
  background:
    linear-gradient(180deg, rgba(23, 74, 63, 0.98), rgba(16, 58, 49, 0.98));
  border: 2px solid var(--color-gold-main);
  border-radius: 8px;
  box-shadow:
    inset 0 0 0 2px rgba(247, 243, 232, 0.08),
    0 10px 18px rgba(23, 74, 63, 0.14);
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1;
  white-space: nowrap;
}

.certificate-section .cert-callout::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: var(--color-gold-main);
}

.certificate-section .cert-callout::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: var(--color-gold-main);
  border-radius: 50%;
}

.certificate-section .cert-callout-result {
  left: 5%;
  top: 46%;
}

.certificate-section .cert-callout-detail {
  left: 5%;
  top: 62%;
}

.certificate-section .cert-callout-scan {
  left: 5%;
  top: 81%;
}

.certificate-section .cert-callout-result::before,
.certificate-section .cert-callout-detail::before,
.certificate-section .cert-callout-scan::before {
  left: 100%;
  width: clamp(70px, 11vw, 130px);
}

.certificate-section .cert-callout-result::after,
.certificate-section .cert-callout-detail::after,
.certificate-section .cert-callout-scan::after {
  left: calc(100% + clamp(70px, 11vw, 130px));
}

.certificate-section .cert-callout-qualification {
  right: 5%;
  top: 22%;
}

.certificate-section .cert-callout-number {
  right: 5%;
  top: 38%;
}

.certificate-section .cert-callout-qualification::before,
.certificate-section .cert-callout-number::before {
  right: 100%;
  width: clamp(70px, 11vw, 140px);
}

.certificate-section .cert-callout-qualification::after,
.certificate-section .cert-callout-number::after {
  right: calc(100% + clamp(70px, 11vw, 140px));
}

.certificate-section .aftercare-proof-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(30px, 4vw, 48px);
  color: rgba(247, 243, 232, 0.9);
  background:
    radial-gradient(circle at 20% 28%, rgba(23, 74, 63, 0.5), transparent 24%),
    linear-gradient(145deg, rgba(34, 34, 34, 0.96), rgba(23, 74, 63, 0.96));
  border: 2px solid var(--color-gold-main);
  border-radius: 20px;
  box-shadow: 0 22px 54px rgba(23, 74, 63, 0.18);
}

.certificate-section .aftercare-proof-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 0;
  border: 1px solid rgba(218, 185, 107, 0.6);
  border-radius: 15px;
}

.certificate-section .aftercare-proof-card::after {
  content: "";
  position: absolute;
  right: 4%;
  top: 12%;
  width: 42%;
  height: 72%;
  opacity: 0.26;
  background:
    radial-gradient(ellipse at 74% 32%, transparent 0 34%, rgba(218, 185, 107, 0.75) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 56% 58%, transparent 0 35%, rgba(218, 185, 107, 0.58) 36% 37%, transparent 38%),
    radial-gradient(ellipse at 38% 78%, transparent 0 38%, rgba(218, 185, 107, 0.44) 39% 40%, transparent 41%),
    linear-gradient(145deg, transparent 0 43%, rgba(218, 185, 107, 0.62) 44% 45%, transparent 46%);
}

.certificate-section .aftercare-proof-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(66px, 96px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.certificate-section .aftercare-shield {
  width: clamp(70px, 9vw, 96px);
  height: clamp(82px, 10vw, 112px);
  border: 4px solid var(--color-gold-light);
  border-radius: 18px 18px 34px 34px;
  background: linear-gradient(145deg, rgba(23, 74, 63, 0.95), rgba(23, 74, 63, 0.5));
  clip-path: polygon(50% 0, 94% 15%, 88% 64%, 50% 100%, 12% 64%, 6% 15%);
}

.certificate-section .aftercare-shield::after {
  left: 28%;
  top: 39%;
  width: 38%;
  height: 18%;
  border-left-color: var(--color-gold-light);
  border-bottom-color: var(--color-gold-light);
}

.certificate-section .aftercare-proof-card strong {
  color: var(--color-gold-light);
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.24);
}

.certificate-section .aftercare-proof-card i {
  display: block;
  width: min(72%, 320px);
  height: 14px;
  margin: 20px 0 24px;
  background:
    linear-gradient(90deg, var(--color-gold-main) 0 38%, transparent 38% 45%, var(--color-gold-main) 45% 100%),
    radial-gradient(circle at 50% 50%, var(--color-gold-light) 0 4px, transparent 5px);
}

.certificate-section .aftercare-proof-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 243, 232, 0.9);
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.9;
}

.certificate-section .aftercare-tags {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 16px);
  margin-top: clamp(26px, 4vw, 40px);
}

.certificate-section .aftercare-tags span {
  position: relative;
  min-height: 54px;
  padding: 0 12px 0 48px;
  color: var(--color-gold-light);
  background: rgba(34, 34, 34, 0.38);
  border: 2px solid var(--color-gold-main);
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(247, 243, 232, 0.04);
  font-family: var(--serif);
  font-size: clamp(15px, 1.65vw, 21px);
  font-weight: 500;
  white-space: nowrap;
}

.certificate-section .aftercare-tags span::before {
  position: absolute;
  left: 17px;
  top: 50%;
  color: var(--color-gold-light);
  font-family: var(--sans);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.certificate-section .aftercare-tags [data-icon="calendar"]::before {
  content: "\25A3";
}

.certificate-section .aftercare-tags [data-icon="search"]::before {
  content: "\2315";
}

.certificate-section .aftercare-tags [data-icon="heart"]::before {
  content: "\2661";
}

.certificate-section .aftercare-tags [data-icon="book"]::before {
  content: "\25AD";
}

@media (max-width: 1020px) {
  .certificate-section .certificate-proof-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .certificate-section .certificate-proof-copy p {
    max-width: 100%;
  }

  .certificate-section .certificate-paper-wrap {
    width: min(100%, 420px);
  }

  .certificate-section .certificate-callouts {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    grid-column: 1 / -1;
  }

  .certificate-section .cert-callout {
    position: relative;
    inset: auto;
    min-width: 0;
  }

  .certificate-section .cert-callout::before,
  .certificate-section .cert-callout::after {
    content: none;
  }
}

@media (max-width: 760px) {
  .certificate-section .certificate-proof-card,
  .certificate-section .aftercare-proof-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .certificate-section .certificate-proof-copy strong {
    font-size: 34px;
  }

  .certificate-section .certificate-callouts,
  .certificate-section .aftercare-tags {
    grid-template-columns: 1fr;
  }

  .certificate-section .aftercare-proof-content {
    grid-template-columns: 1fr;
  }

  .certificate-section .aftercare-proof-card strong {
    font-size: 40px;
    letter-spacing: 0.04em;
  }

  .certificate-section .aftercare-proof-card p {
    font-size: 16px;
  }

  .certificate-section .aftercare-tags span {
    justify-content: flex-start;
  }
}

/* Final text scale corrections for the guarantee heading block. */
.section-copy h2.trust-guarantee-title {
  width: min(100%, 340px);
  max-width: 100%;
}

.trust-guarantee-eyebrow {
  width: 100%;
  align-items: center;
  gap: 12px;
  font-size: clamp(10px, 1.2vw, 14px);
  letter-spacing: 0.16em;
}

.trust-guarantee-eyebrow > span {
  flex: 0 0 auto;
}

.trust-guarantee-eyebrow i {
  position: relative;
  flex: 1 1 auto;
  min-width: 112px;
  height: 14px;
  background: transparent;
}

.trust-guarantee-eyebrow i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(var(--color-gold-main), var(--color-gold-main)) left center / calc(50% - 25px) 1px no-repeat,
    linear-gradient(var(--color-gold-main), var(--color-gold-main)) right center / calc(50% - 25px) 1px no-repeat;
  transform: translateY(-50%);
}

.trust-guarantee-eyebrow i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg width='42' height='14' viewBox='0 0 42 14' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='42' height='14' fill='%23FBF7F0'/%3E%3Cg fill='none' stroke='%23DAB96B' stroke-width='1.2' stroke-linejoin='round'%3E%3Cpath d='M21 1.5 26.5 7 21 12.5 15.5 7Z'/%3E%3Cpath d='M10 2 15 7 10 12 5 7Z'/%3E%3Cpath d='M32 2 37 7 32 12 27 7Z'/%3E%3C/g%3E%3C/svg%3E") center / 42px 14px no-repeat;
  transform: translate(-50%, -50%);
}

.trust-guarantee-main {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 22px 13px;
  font-size: clamp(22px, 2.66vw, 32px);
  letter-spacing: 0.024em;
  line-height: 1.08;
  white-space: nowrap;
}

.certificate-section .section-copy > p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--color-text-muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-align: left;
}

@media (max-width: 760px) {
  .section-copy h2.trust-guarantee-title {
    width: min(100%, 340px);
    max-width: 100%;
  }

  .trust-guarantee-main {
    padding: 10px 13px 12px;
    font-size: clamp(18px, 5.8vw, 24px);
    letter-spacing: 0.014em;
  }

  .certificate-section .section-copy > p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.68;
  }
}

/* Final image-based guarantee cards. */
.certificate-section .proof-panel.guarantee-image-panel {
  display: grid;
  gap: 28px;
}

.certificate-section .guarantee-picture {
  display: block;
  width: 100%;
}

.certificate-section .guarantee-image-card {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(23, 74, 63, 0.12);
}

@media (max-width: 760px) {
  .certificate-section .proof-panel.guarantee-image-panel {
    gap: 18px;
  }

  .certificate-section .guarantee-image-card {
    border-radius: 14px;
  }
}

.certificate-section .check-list li {
  color: var(--color-text-muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

/* Use a fixed ornament asset for the guarantee heading so the motif stays exact. */
.trust-guarantee-eyebrow {
  gap: 12px;
}

.trust-guarantee-ornament {
  display: block;
  flex: 1 1 auto;
  min-width: 128px;
  height: 26px;
  object-fit: cover;
  object-position: center;
}

.trust-guarantee-eyebrow i,
.trust-guarantee-eyebrow i::before,
.trust-guarantee-eyebrow i::after {
  content: none;
  display: none;
}

body[data-page="service"] .service-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(90deg, #0A120C 0%, #0A120C 50%, #0A100A 50%, #0A100A 100%);
}

body[data-page="service"] .service-hero-picture {
  display: block;
  width: min(100% - 40px, 1200px);
}

body[data-page="service"] .service-hero-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body[data-page="contact"] .contact-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 0;
  background:
    linear-gradient(90deg, #09110F 0%, #09110F 50%, #18160E 50%, #18160E 100%);
}

body[data-page="contact"] .contact-hero-picture {
  display: block;
  width: min(100% - 40px, 1200px);
}

body[data-page="contact"] .contact-hero-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

body[data-page="products"] .products-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  padding: 0;
  background: #030302;
}

body[data-page="products"] .products-hero-picture {
  display: block;
  width: min(100% - 40px, 1200px);
}

body[data-page="products"] .products-hero-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  body[data-page="service"] .service-hero-picture img {
    width: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  body[data-page="contact"] .contact-hero-picture img {
    width: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  body[data-page="products"] .products-hero-picture img {
    width: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }
}

/* Warm ivory background for the homepage purchase guarantee section. */
body[data-page="home"] .certificate-section {
  background: linear-gradient(180deg, #FCF8F2 0%, #FBF7F0 52%, #FDFAF4 100%);
}

body[data-page="home"] .certificate-section .split-section {
  background: transparent;
}

body[data-page="home"] .service-preview {
  padding: clamp(42px, 6vw, 82px) 0;
  background: linear-gradient(180deg, #FCF8F2 0%, #FBF7F0 100%);
}

body[data-page="home"] .service-band.service-tips-band {
  display: block;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="home"] .home-tips-picture {
  display: block;
  width: 100%;
}

body[data-page="home"] .home-tips-picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  body[data-page="home"] .service-preview {
    padding: 30px 0;
  }

  body[data-page="home"] .home-tips-picture img {
    width: 100%;
    min-height: 0;
    object-fit: contain;
  }
}

/* Scale down the guarantee heading group by about 10%. */
body[data-page="home"] .section-copy h2.trust-guarantee-title {
  width: min(100%, 306px);
}

body[data-page="home"] .trust-guarantee-eyebrow {
  gap: 11px;
  font-size: clamp(9px, 1.08vw, 13px);
}

body[data-page="home"] .trust-guarantee-eyebrow > span {
  color: var(--color-jade-dark);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-page="home"] .trust-guarantee-ornament {
  min-width: 115px;
  height: 23px;
}

body[data-page="home"] .trust-guarantee-main {
  padding: 11px 20px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--color-jade-dark);
  border-width: 3px;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 12px 24px rgba(23, 74, 63, 0.14);
  font-size: clamp(20px, 2.4vw, 29px);
}

body[data-page="home"] .trust-guarantee-main::before {
  content: none;
}

body[data-page="home"] .section-heading h2.home-framed-title,
body[data-page="home"] .process-intro h2.home-framed-title,
body[data-page="home"] .about-section .section-copy h2.home-framed-title {
  display: inline-flex;
  width: min(100%, 306px);
  flex-direction: column;
  gap: 11px;
  align-items: stretch;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  line-height: 1;
  text-align: left;
}

body[data-page="home"] .home-framed-title-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-jade-dark);
  font-family: var(--latin);
  font-size: clamp(9px, 1.08vw, 13px);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-page="home"] .home-framed-title-eyebrow > span {
  flex: 0 0 auto;
}

body[data-page="home"] .home-framed-title-ornament {
  display: block;
  flex: 1 1 auto;
  min-width: 115px;
  height: 23px;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .home-framed-title-main {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 20px 12px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--color-jade-dark);
  border: 3px solid rgba(218, 185, 107, 0.78);
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 14px 28px rgba(23, 74, 63, 0.18);
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 700;
  letter-spacing: 0.024em;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

/* Keep the two guarantee cards visually lighter on desktop. */
@media (min-width: 900px) {
  body[data-page="home"] .certificate-section .proof-panel.guarantee-image-panel {
    width: 66%;
    max-width: 560px;
    justify-self: center;
    gap: 19px;
  }
}

@media (max-width: 899px) {
  body[data-page="home"] .certificate-section .proof-panel.guarantee-image-panel {
    width: 85%;
    justify-self: center;
    gap: 15px;
  }
}

/* Unified warm ivory page background, matched to the purchase guarantee area. */
:root {
  --color-bg-page: #FBF7F0;
  --color-bg-ivory: #FBF7F0;
  --color-bg-black: #FBF7F0;
}

html,
body,
main {
  background: #FBF7F0;
}

main > .section,
.section,
.trust-section,
.product-preview,
.service-preview,
.about-section,
.contact-cta,
.commitment-wrap,
.certificate-section,
body[data-page="home"] .certificate-section,
body[data-page="home"] .service-preview,
body[data-page="home"] .process-section {
  background: #FBF7F0;
}

body[data-page="home"] .certificate-section,
body[data-page="home"] .service-preview,
body[data-page="home"] .process-section {
  background: linear-gradient(180deg, #FCF8F2 0%, #FBF7F0 52%, #FDFAF4 100%);
}

body[data-page="home"] .process-section::before,
body[data-page="home"] .process-section::after {
  background: transparent;
}

/* Apply the same warm ivory base to all secondary pages. */
body[data-page="products"],
body[data-page="service"],
body[data-page="contact"],
body[data-page="products"] main,
body[data-page="service"] main,
body[data-page="contact"] main,
body[data-page="products"] main > .section,
body[data-page="service"] main > .section,
body[data-page="contact"] main > .section,
body[data-page="products"] .product-list,
body[data-page="service"] .commitment-wrap,
body[data-page="service"] .about-section,
body[data-page="service"] .service-preview,
body[data-page="contact"] .contact-layout,
body[data-page="contact"] .contact-cta {
  background: #FBF7F0;
}

body[data-page="products"] main > .section,
body[data-page="service"] main > .section,
body[data-page="contact"] main > .section {
  background: linear-gradient(180deg, #FCF8F2 0%, #FBF7F0 52%, #FDFAF4 100%);
}

body[data-page="products"] .product-detail,
body[data-page="service"] .commitment-paper,
body[data-page="service"] .policy-note,
body[data-page="contact"] .contact-info,
body[data-page="contact"] .contact-form {
  background: #FFFFFF;
}

body[data-page="products"] #ornament > img {
  object-position: center top;
}

/* Tighter homepage vertical rhythm between title modules. */
body[data-page="home"] main > .section {
  padding-top: clamp(30px, 3.6vw, 42px);
  padding-bottom: clamp(30px, 3.6vw, 42px);
}

body[data-page="home"] .section-heading {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

body[data-page="home"] .trust-section {
  padding-bottom: clamp(24px, 3vw, 34px);
}

body[data-page="home"] .product-preview {
  padding-top: clamp(24px, 3vw, 34px);
}

body[data-page="home"] .process-section {
  padding-top: clamp(24px, 3vw, 36px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

body[data-page="home"] .process-intro {
  margin-bottom: clamp(22px, 3vw, 32px);
}

body[data-page="home"] .certificate-section,
body[data-page="home"] .service-preview,
body[data-page="home"] .about-section {
  padding-top: clamp(30px, 3.8vw, 44px);
  padding-bottom: clamp(30px, 3.8vw, 44px);
}

@media (max-width: 760px) {
  body[data-page="home"] main > .section {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  body[data-page="home"] .trust-section {
    padding-bottom: 22px;
  }

  body[data-page="home"] .product-preview,
  body[data-page="home"] .process-section,
  body[data-page="home"] .certificate-section,
  body[data-page="home"] .service-preview,
  body[data-page="home"] .about-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  body[data-page="home"] .section-heading {
    margin-bottom: 20px;
  }
}

/* Match homepage title gaps to the first hero-to-title distance. */
body[data-page="home"] {
  --home-title-gap: clamp(16px, 1.8vw, 24px);
  --home-content-gap: clamp(14px, 1.6vw, 20px);
}

body[data-page="home"] .trust-section {
  padding-top: var(--home-title-gap);
  padding-bottom: var(--home-title-gap);
}

body[data-page="home"] .product-preview {
  padding-top: 0;
  padding-bottom: var(--home-title-gap);
}

body[data-page="home"] .process-section {
  padding-top: 0;
  padding-bottom: var(--home-title-gap);
}

body[data-page="home"] .process-intro {
  padding-top: 0;
  margin-bottom: var(--home-content-gap);
}

body[data-page="home"] .certificate-section,
body[data-page="home"] .service-preview,
body[data-page="home"] .about-section {
  padding-top: 0;
  padding-bottom: var(--home-title-gap);
}

body[data-page="home"] .contact-cta {
  padding-top: 0;
  padding-bottom: clamp(26px, 3.2vw, 38px);
}

@media (max-width: 760px) {
  body[data-page="home"] {
    --home-title-gap: 16px;
    --home-content-gap: 16px;
  }

  body[data-page="home"] .process-intro {
    padding-top: 0;
  }
}

/* Keep title-to-previous-module spacing consistent on every page. */
body:not([data-page="home"]) {
  --site-module-gap: clamp(16px, 2vw, 24px);
  --site-module-bottom-gap: clamp(26px, 3.2vw, 38px);
}

body:not([data-page="home"]) main > .section,
body[data-page="service"] .contact-cta,
body[data-page="contact"] .contact-cta {
  padding-top: var(--site-module-gap);
  padding-bottom: var(--site-module-bottom-gap);
}

body[data-page="products"] .product-list,
body[data-page="contact"] .contact-layout {
  gap: var(--site-module-gap);
}

/* SEO/GEO content pages */
.page-intro-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(28px, 4vw, 48px);
  background: #FBF7F0;
}

.page-intro-section .section-heading {
  max-width: 900px;
}

.page-intro-section h1 {
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.16;
}

.guide-grid {
  display: grid;
  gap: 18px;
}

.guide-grid .policy-note {
  margin: 0;
}

body[data-page="guide"] .proof-panel.guarantee-image-panel {
  align-self: center;
  justify-items: center;
}

body[data-page="guide"] .guarantee-picture {
  display: block;
  width: 100%;
  max-width: 560px;
}

body[data-page="guide"] .guarantee-image-card {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(23, 74, 63, 0.12);
}

.service-faq {
  margin-top: 22px;
}

.service-faq h2 {
  margin-bottom: 18px;
  color: var(--color-jade-dark);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
}

.service-faq h3 + p {
  margin-bottom: 18px;
}

.form-helper {
  margin-top: -4px;
  color: var(--color-text-muted);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-form-actions .button,
.contact-mini-button {
  min-width: 0;
}

.contact-mini-button {
  width: fit-content;
  min-height: 36px;
  margin-top: 8px;
  padding: 0 14px;
  font-size: 13px;
}

.info-item a {
  color: var(--color-jade-dark);
  font-weight: 700;
  word-break: break-word;
}

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-links {
  justify-content: center;
  row-gap: 8px;
}

@media (min-width: 860px) {
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .contact-form .form-helper,
  .contact-form .contact-form-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-form-actions {
    display: grid;
  }

  .contact-form-actions .button,
  .contact-mini-button {
    width: 100%;
  }
}

body[data-page="service"] .promise-list,
body[data-page="service"] .policy-note {
  margin-top: var(--site-module-gap);
}

/* Pull the product title closer to the previous feature cards. */
body[data-page="home"] .trust-section {
  padding-bottom: 0;
}

body[data-page="home"] .trust-section + .product-preview {
  margin-top: clamp(-52px, -4.8vw, -34px);
}

@media (max-width: 760px) {
  body:not([data-page="home"]) {
    --site-module-gap: 18px;
    --site-module-bottom-gap: 28px;
  }

  body[data-page="home"] .trust-section + .product-preview {
    margin-top: -24px;
  }
}

/* Equalize the first two homepage title gaps. */
body[data-page="home"] {
  --home-equal-title-gap: clamp(30px, 3.6vw, 42px);
}

body[data-page="home"] main > .trust-section {
  padding-top: var(--home-equal-title-gap);
  padding-bottom: var(--home-equal-title-gap);
}

body[data-page="home"] main > .trust-section + .product-preview {
  padding-top: var(--home-equal-title-gap);
  margin-top: calc(-1 * var(--home-equal-title-gap));
}

/* Match the product-category-to-custom-title gap to the previous title gap. */
body[data-page="home"] main > .product-preview {
  padding-bottom: var(--home-equal-title-gap);
}

body[data-page="home"] main > .product-preview + .process-section {
  padding-top: var(--home-equal-title-gap);
  margin-top: calc(-1 * var(--home-equal-title-gap));
}

body[data-page="home"] main > .product-preview + .process-section .process-intro {
  padding-top: 0;
}

/* Match the custom-flow-to-guarantee gap to the previous title gap. */
body[data-page="home"] main > .process-section {
  padding-bottom: var(--home-equal-title-gap);
}

body[data-page="home"] main > .process-section + .certificate-section {
  padding-top: var(--home-equal-title-gap);
  margin-top: calc(-1 * var(--home-equal-title-gap));
}

/* Match the remaining homepage module gaps to the same rhythm. */
body[data-page="home"] main > .certificate-section,
body[data-page="home"] main > .service-preview,
body[data-page="home"] main > .about-section {
  padding-bottom: var(--home-equal-title-gap);
}

body[data-page="home"] main > .certificate-section + .service-preview,
body[data-page="home"] main > .service-preview + .about-section,
body[data-page="home"] main > .about-section + .contact-cta {
  padding-top: var(--home-equal-title-gap);
  margin-top: calc(-1 * var(--home-equal-title-gap));
}

/* Tighten the image-to-image homepage gaps that still felt too wide. */
body[data-page="home"] {
  --home-tight-media-gap: clamp(12px, 1.4vw, 18px);
}

body[data-page="home"] main > .certificate-section,
body[data-page="home"] main > .service-preview {
  padding-bottom: var(--home-tight-media-gap);
}

body[data-page="home"] main > .certificate-section + .service-preview,
body[data-page="home"] main > .service-preview + .about-section {
  padding-top: var(--home-tight-media-gap);
  margin-top: calc(-1 * var(--home-tight-media-gap));
}

/* Give the guarantee-to-tips transition a little more breathing room. */
body[data-page="home"] {
  --home-guarantee-tips-gap: clamp(22px, 2.4vw, 32px);
}

body[data-page="home"] main > .certificate-section {
  padding-bottom: var(--home-guarantee-tips-gap);
}

body[data-page="home"] main > .certificate-section + .service-preview {
  padding-top: var(--home-guarantee-tips-gap);
  margin-top: calc(-1 * var(--home-guarantee-tips-gap));
}

/* Crop the built-in blank margins in the homepage tips image. */
body[data-page="home"] .home-tips-picture {
  overflow: hidden;
}

body[data-page="home"] .home-tips-picture img {
  margin-top: clamp(-72px, -4.4vw, -44px);
  margin-bottom: clamp(-74px, -4.6vw, -46px);
}

/* Keep mobile headers clear of the iPhone safe area and browser chrome. */
@media (max-width: 979px) {
  :root {
    --mobile-header-safe-offset: calc(env(safe-area-inset-top) + 12px);
  }

  .site-header,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding-top: var(--mobile-header-safe-offset);
    overflow: hidden;
  }

  .site-header::before,
  .site-header::after,
  .header-inner::before,
  .header-inner::after {
    content: none;
    display: none;
  }

  .header-inner {
    min-height: 72px;
    align-items: center;
  }

  .brand-logo {
    min-height: 64px;
    align-items: center;
  }

  .nav-toggle {
    align-self: center;
  }

  .site-nav {
    inset: calc(68px + var(--mobile-header-safe-offset)) 0 auto;
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.open {
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 420px) {
  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    inset: calc(70px + var(--mobile-header-safe-offset)) 0 auto;
  }
}

/* Mobile should not crop the top title text inside the tips image. */
@media (max-width: 760px) {
  body[data-page="home"] .home-tips-picture img {
    margin-top: 0;
    margin-bottom: clamp(-34px, -7vw, -18px);
  }
}

/* Make the promise stamp read with more weight on the aftercare page. */
body[data-page="service"] .stamp {
  width: clamp(104px, 8vw, 120px);
  height: clamp(104px, 8vw, 120px);
  border-width: 3px;
  font-size: clamp(44px, 4.4vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
