:root {
  --sand: #eee3d1;
  --sand-light: #f8f1e5;
  --sand-deep: #d8c5a8;
  --ink: #2a1c15;
  --brown: #3a2419;
  --brown-soft: #6d5141;
  --blue: #1748d1;
  --blue-deep: #0d2e93;
  --white: #fffdf8;
  --line: rgba(58, 36, 25, 0.18);
  --serif: "Songti SC", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --max: 1240px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.75), transparent 24rem),
    var(--sand);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 99px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 24px;
  transition: padding 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
}

.header-shell {
  display: flex;
  align-items: center;
  width: min(100%, 1320px);
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: rgba(248, 241, 229, 0.82);
  box-shadow: 0 12px 30px rgba(58, 36, 25, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: var(--brown);
  border-radius: 12px;
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 18px;
  height: 5px;
  background: var(--sand);
  border-radius: 4px;
  transform: rotate(-35deg);
}

.brand-mark i:first-child {
  transform: translate(-6px, -7px) rotate(-35deg);
}

.brand-mark i:last-child {
  transform: translate(6px, 7px) rotate(-35deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.14em;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--brown-soft);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 0 auto;
  color: #4b382e;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  padding: 11px 19px;
  color: var(--white);
  background: var(--brown);
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding-top: 168px;
  padding-bottom: 96px;
}

.hero::before {
  position: absolute;
  top: 112px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  width: 48px;
  height: 1px;
  background: var(--brown);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 0.74fr);
  gap: 70px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--brown-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(23, 72, 209, 0.1);
}

.hero h1,
.statement h2,
.section-head h2,
.approach h2,
.questions h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(66px, 7.2vw, 104px);
}

.hero h1 em,
.approach h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-intro {
  max-width: 540px;
  margin: 32px 0 0;
  color: var(--brown-soft);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 54px;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(23, 72, 209, 0.2);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--brown);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--blue);
}

.hero-poster {
  position: relative;
  min-height: 560px;
}

.poster-shadow {
  position: absolute;
  top: 22px;
  right: 8px;
  bottom: 4px;
  left: 42px;
  background: var(--brown);
  border-radius: 8px 48px 8px 48px;
  transform: rotate(5deg);
}

.poster-card {
  position: absolute;
  z-index: 2;
  inset: 0 24px 28px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px 48px 8px 48px;
  box-shadow: 0 30px 80px rgba(58, 36, 25, 0.18);
  transform: rotate(-2deg);
}

.poster-card::after {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(255, 255, 255, 0.24) 49px, transparent 50px);
  content: "";
  pointer-events: none;
}

.poster-top,
.poster-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 21px 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.poster-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.poster-art {
  position: relative;
  flex: 1;
  min-height: 320px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.orbit-one {
  top: 30px;
  right: 28px;
  width: 255px;
  height: 255px;
}

.orbit-two {
  right: 88px;
  bottom: 15px;
  width: 250px;
  height: 90px;
  transform: rotate(-22deg);
}

.sphere {
  position: absolute;
  border-radius: 50%;
}

.sphere-one {
  top: 54px;
  right: 34px;
  width: 90px;
  height: 90px;
  background: var(--sand);
  box-shadow: inset -22px -16px 32px rgba(58, 36, 25, 0.25);
}

.sphere-two {
  bottom: 34px;
  left: 36px;
  width: 52px;
  height: 52px;
  background: #f2a719;
  box-shadow: inset -12px -9px 18px rgba(58, 36, 25, 0.28);
}

.package {
  position: absolute;
  display: block;
  background: var(--sand-light);
  box-shadow: 0 22px 35px rgba(6, 24, 74, 0.28);
  transform: skewY(-8deg);
}

.package-back {
  right: 62px;
  bottom: 42px;
  width: 156px;
  height: 194px;
  background: #d8c5a8;
  transform: rotate(9deg) skewY(-8deg);
}

.package-front {
  right: 146px;
  bottom: 20px;
  width: 158px;
  height: 214px;
}

.package-front::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: var(--brown);
  content: "";
}

.package-front i {
  position: absolute;
  top: 72px;
  left: 49px;
  display: block;
  width: 58px;
  height: 58px;
  border: 12px solid var(--blue);
  border-radius: 50%;
}

.spark {
  position: absolute;
  color: #ffcf62;
  font-size: 30px;
}

.spark-one {
  top: 50px;
  left: 44px;
}

.spark-two {
  right: 32px;
  bottom: 28px;
  font-size: 18px;
}

.poster-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.poster-bottom div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.poster-bottom strong {
  font-size: 15px;
}

.poster-bottom span {
  opacity: 0.72;
  font-size: 10px;
  letter-spacing: 0;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 12px 32px rgba(58, 36, 25, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.floating-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.floating-note strong {
  font-family: var(--serif);
  font-size: 15px;
}

.floating-note small {
  margin-top: 4px;
  color: var(--brown-soft);
  font-size: 10px;
}

.note-top {
  top: 32px;
  left: -24px;
}

.note-bottom {
  right: -14px;
  bottom: 38px;
}

.note-icon {
  display: grid;
  width: 35px;
  height: 35px;
  color: var(--white);
  background: var(--brown);
  border-radius: 50%;
  place-items: center;
}

.pulse-dot {
  position: relative;
  width: 18px;
  height: 18px;
  background: var(--blue);
  border: 5px solid #bfcdfa;
  border-radius: 50%;
}

.hero-index {
  position: absolute;
  right: max(28px, calc((100vw - 1390px) / 2));
  bottom: 30px;
  color: rgba(58, 36, 25, 0.14);
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.statement {
  padding-top: 90px;
  padding-bottom: 110px;
  background: var(--sand-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 60px;
  max-width: var(--max);
  margin: 0 auto;
}

.statement h2 {
  max-width: 920px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.18;
}

.statement h2 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.statement h2 span::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
  transform: rotate(-1deg);
}

.statement-grid > div > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--brown-soft);
  font-size: 17px;
}

.services,
.advantages,
.questions {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  max-width: var(--max);
  margin: 0 auto 60px;
}

.section-head h2,
.questions h2 {
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.12;
}

.section-head > p {
  max-width: 420px;
  margin: 0 0 6px;
  color: var(--brown-soft);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(58, 36, 25, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(58, 36, 25, 0.11);
}

.service-feature {
  background: var(--brown);
  color: var(--white);
}

.service-blue {
  background: var(--blue);
  color: var(--white);
}

.service-number {
  color: var(--brown-soft);
  font-family: var(--serif);
  font-size: 14px;
}

.service-feature .service-number,
.service-blue .service-number {
  color: rgba(255, 255, 255, 0.58);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 440px;
}

.service-content h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.3;
}

.service-content > p {
  margin: 0;
  color: var(--brown-soft);
}

.service-feature .service-content > p,
.service-blue .service-content > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 12px;
}

.service-feature li,
.service-blue li {
  border-color: rgba(255, 255, 255, 0.24);
}

.service-icon {
  position: absolute;
  top: 18px;
  right: 25px;
  width: 150px;
  height: 150px;
  color: #f0a91f;
  opacity: 0.78;
  transform: rotate(-5deg);
}

.service-icon svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.approach {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.approach-layer {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.layer-one {
  top: -190px;
  left: -160px;
  width: 550px;
  height: 550px;
}

.layer-two {
  right: -300px;
  bottom: -500px;
  width: 950px;
  height: 950px;
  border-color: rgba(23, 72, 209, 0.56);
}

.approach-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 105px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.56);
}

.approach h2 {
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.14;
}

.approach-intro > p:last-child {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 22px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.process-no {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--serif);
  font-size: 14px;
}

.process-list h3 {
  margin: -7px 0 5px;
  font-family: var(--serif);
  font-size: 26px;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.process-mark {
  color: var(--blue);
  font-size: 18px;
}

.section-head.compact {
  justify-content: flex-start;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.adv-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.adv-main {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  min-height: 410px;
  color: var(--white);
  background: var(--blue);
}

.adv-graphic {
  position: relative;
  width: min(100%, 430px);
  height: 310px;
}

.ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.ring-a {
  inset: 20px 50px 20px 30px;
}

.ring-b {
  top: 70px;
  right: 0;
  bottom: 70px;
  left: 70px;
  transform: rotate(38deg);
}

.axis {
  position: absolute;
  top: 154px;
  left: 18px;
  width: 390px;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(-17deg);
}

.core {
  position: absolute;
  top: 95px;
  left: 157px;
  width: 110px;
  height: 110px;
  background: var(--sand-light);
  border-radius: 50%;
  box-shadow: inset -26px -18px 40px rgba(58, 36, 25, 0.3), 0 22px 40px rgba(9, 28, 85, 0.25);
}

.adv-tag {
  margin: 0 0 18px;
  color: var(--brown-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.adv-main .adv-tag {
  color: rgba(255, 255, 255, 0.64);
}

.adv-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.3;
}

.adv-card > p:last-child,
.adv-main > div > p:last-child {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--brown-soft);
}

.adv-main > div > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.adv-symbol {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 92px;
  line-height: 1;
  opacity: 0.18;
}

.adv-symbol.blue {
  color: var(--blue);
  opacity: 0.42;
}

.adv-quote {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  min-height: 240px;
  padding-left: 150px;
  color: var(--sand-light);
  background: var(--brown);
}

.adv-quote p {
  max-width: 880px !important;
  margin: 0 !important;
  color: var(--sand-light) !important;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.55;
}

.quote-mark {
  position: absolute;
  top: 48px;
  left: 52px;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 116px;
  line-height: 1;
}

.questions {
  background: var(--sand-light);
  border-top: 1px solid var(--line);
}

.questions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 100px;
  max-width: var(--max);
  margin: 0 auto;
}

.questions-intro > p:last-child {
  max-width: 430px;
  margin-top: 28px;
  color: var(--brown-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 13px;
  left: 7px;
  width: 12px;
  height: 1px;
  background: var(--brown);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 620px;
  margin: -6px 45px 26px 0;
  color: var(--brown-soft);
}

.contact {
  padding-top: 54px;
  padding-bottom: 54px;
  background: var(--sand-light);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  min-height: 550px;
  margin: 0 auto;
  padding: 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
  border-radius: 38px 10px 38px 10px;
}

.contact-shell::before {
  position: absolute;
  top: -180px;
  left: 42%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact h2 {
  font-size: clamp(50px, 5.2vw, 72px);
}

.contact-copy > p:nth-of-type(2) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.68);
}

.button-light {
  color: var(--brown);
  background: var(--sand-light);
}

.button-light:hover {
  background: #fff;
}

.contact-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(5, 25, 88, 0.25);
  transform: rotate(1.5deg);
}

.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-weight: 700;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brown-soft);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
}

.status i {
  width: 7px;
  height: 7px;
  background: #2f9f5b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 159, 91, 0.12);
}

.contact-card ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.contact-card li {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card li > span {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 13px;
}

.contact-card li p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.5;
}

.contact-card li strong {
  font-family: var(--serif);
  font-size: 16px;
}

.contact-card li small {
  color: var(--brown-soft);
  font-size: 12px;
}

.contact-hint {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
  color: var(--brown-soft);
  font-size: 11px;
}

.contact-hint span {
  color: var(--blue);
  font-size: 15px;
}

.back-top {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: var(--brown);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(58, 36, 25, 0.25);
  cursor: pointer;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

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

.back-top:hover {
  background: var(--blue);
}

.back-top svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .brand {
    min-width: auto;
  }

  .brand-copy span {
    display: none;
  }

  .desktop-nav {
    gap: 25px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(61px, 7.7vw, 82px);
  }

  .note-top {
    left: 0;
  }

  .note-bottom {
    right: 0;
  }

  .approach-inner,
  .questions-grid {
    gap: 55px;
  }

  .contact-shell {
    gap: 45px;
    padding: 58px 48px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .header-shell {
    min-height: 62px;
    padding: 8px 9px 8px 14px;
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 10px 11px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
  }

  .menu-label {
    font-size: 13px;
  }

  .menu-lines {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
  }

  .menu-lines i {
    position: absolute;
    right: 0;
    left: 0;
    display: block;
    height: 1.5px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-lines i:first-child {
    top: 4px;
  }

  .menu-lines i:last-child {
    top: 11px;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    padding: 13px 20px 20px;
    background: rgba(248, 241, 229, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(58, 36, 25, 0.15);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-nav a:last-child {
    margin-top: 9px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 10px;
    text-align: center;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

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

  .hero-poster {
    width: min(100%, 600px);
    min-height: 580px;
    margin: 0 auto;
  }

  .statement-grid,
  .approach-inner,
  .questions-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 20px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 300px;
  }

  .approach-inner {
    gap: 70px;
  }

  .approach-intro {
    max-width: 610px;
  }

  .questions-grid {
    gap: 60px;
  }

  .contact-shell {
    gap: 55px;
  }

  .contact-card {
    width: min(100%, 550px);
    transform: none;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 70px;
  }

  .hero::before,
  .hero-index {
    display: none;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 19px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 68px);
    line-height: 1.06;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .hero-poster {
    min-height: 440px;
  }

  .poster-shadow {
    left: 25px;
  }

  .poster-card {
    right: 12px;
    bottom: 18px;
    left: 8px;
    border-radius: 7px 34px 7px 34px;
  }

  .poster-top {
    padding: 16px 18px;
    font-size: 10px;
  }

  .poster-art {
    min-height: 245px;
  }

  .package-back {
    right: 35px;
    bottom: 28px;
    width: 113px;
    height: 145px;
  }

  .package-front {
    right: 105px;
    bottom: 13px;
    width: 118px;
    height: 160px;
  }

  .package-front i {
    top: 51px;
    left: 37px;
    width: 46px;
    height: 46px;
    border-width: 9px;
  }

  .orbit-one {
    right: 17px;
    width: 190px;
    height: 190px;
  }

  .orbit-two {
    right: 45px;
    width: 190px;
  }

  .sphere-one {
    right: 26px;
    width: 65px;
    height: 65px;
  }

  .sphere-two {
    bottom: 25px;
    left: 23px;
    width: 40px;
    height: 40px;
  }

  .poster-bottom {
    padding: 14px 13px;
    gap: 8px;
  }

  .poster-bottom strong {
    font-size: 12px;
  }

  .poster-bottom span {
    font-size: 8px;
  }

  .floating-note {
    min-width: 0;
    padding: 10px 12px;
  }

  .floating-note small {
    display: none;
  }

  .note-top {
    top: 18px;
    left: -3px;
  }

  .note-bottom {
    right: -4px;
    bottom: 15px;
  }

  .statement,
  .services,
  .advantages,
  .questions,
  .approach {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .statement h2,
  .section-head h2,
  .questions h2,
  .approach h2,
  .contact h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .statement-grid > div > p {
    font-size: 15px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .service-card {
    grid-template-columns: 36px 1fr;
    min-height: 330px;
    padding: 25px 22px;
    border-radius: 22px;
  }

  .service-content h3 {
    font-size: 26px;
  }

  .service-content > p {
    font-size: 14px;
  }

  .service-content ul {
    margin-top: 19px;
  }

  .service-icon {
    right: 12px;
    width: 115px;
    height: 115px;
  }

  .process-list li {
    grid-template-columns: 37px 1fr 14px;
    gap: 12px;
  }

  .process-list h3 {
    font-size: 23px;
  }

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

  .adv-card,
  .adv-main,
  .adv-quote {
    grid-column: auto;
    border-radius: 22px;
  }

  .adv-main {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .adv-graphic {
    width: 100%;
    height: 260px;
    transform: scale(0.82);
    transform-origin: left center;
  }

  .adv-card h3 {
    font-size: 29px;
  }

  .adv-quote {
    min-height: 300px;
    padding: 92px 28px 36px;
  }

  .adv-quote p {
    font-size: 25px;
  }

  .quote-mark {
    top: 25px;
    left: 27px;
    font-size: 92px;
  }

  .faq-list summary {
    padding: 23px 0;
    font-size: 18px;
  }

  .contact {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .contact-shell {
    min-height: auto;
    padding: 53px 24px 26px;
    border-radius: 28px 8px 28px 8px;
  }

  .contact-card {
    padding: 21px;
  }

  .contact-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .header-shell,
  .service-card,
  .adv-card,
  .contact-card {
    border: 1px solid CanvasText;
  }
}
