:root {
  --ink: #081722;
  --ink-soft: #102736;
  --paper: #f5f0e8;
  --paper-bright: #fbf9f4;
  --gold: #caa56a;
  --gold-light: #ead4ad;
  --muted: #9fa9af;
  --line: rgba(8, 23, 34, 0.14);
  --white-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(4, 15, 22, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 15, 23, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.language-switch,
.desktop-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
}

.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-style: italic;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: 34px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.desktop-nav a {
  transition: color 180ms ease;
}

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

.header-actions {
  gap: 20px;
}

.language-switch {
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
}

.lang-btn {
  padding: 4px;
  border: 0;
  color: rgba(255, 255, 255, 0.52);
  background: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.lang-btn.active {
  color: var(--gold-light);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 39px;
  padding: 0 18px;
  font-size: 10px;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(202, 165, 106, 0.2);
}

.button-gold:hover {
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 8vw 82px;
  overflow: hidden;
  color: #fff;
  background: #07151f;
}

.hero-media,
.hero-overlay,
.star-field {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/creative-starry-hero.webp") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 10, 16, 0.95) 0%, rgba(2, 10, 16, 0.68) 49%, rgba(2, 10, 16, 0.18) 78%),
    linear-gradient(0deg, rgba(2, 10, 16, 0.68) 0%, transparent 38%);
}

.star-field {
  z-index: 1;
  opacity: 0.62;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 11% 18%, rgba(255,255,255,.92) 0 1px, transparent 1.6px),
    radial-gradient(circle at 23% 32%, rgba(234,212,173,.85) 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 38% 12%, rgba(255,255,255,.8) 0 .8px, transparent 1.4px),
    radial-gradient(circle at 55% 24%, rgba(255,255,255,.72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 70% 10%, rgba(234,212,173,.82) 0 1.1px, transparent 1.8px),
    radial-gradient(circle at 83% 30%, rgba(255,255,255,.76) 0 .9px, transparent 1.5px);
  background-size: 240px 210px, 310px 280px, 190px 230px, 360px 330px, 270px 250px, 330px 290px;
  animation: starDrift 24s linear infinite alternate;
}

.star-field::after {
  content: "";
  position: absolute;
  top: 14%;
  left: 29%;
  width: 145px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 212, 173, .8), transparent);
  filter: drop-shadow(0 0 6px rgba(234, 212, 173, .5));
  transform: rotate(-28deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(56px, 7.7vw, 116px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.65;
}

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

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

.hero-location small,
.hero-location b {
  display: block;
}

.hero-location small {
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-location b {
  margin-top: 4px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.hero-location p {
  max-width: 390px;
  margin: 5px 0 0;
  color: rgba(255,255,255,.34);
  font-size: 8px;
  line-height: 1.45;
}

.location-orbit {
  position: relative;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border: 1px solid rgba(234,212,173,.5);
  border-radius: 50%;
}

.location-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 13px var(--gold);
  transform: translate(-50%, -50%);
}

.location-orbit::after {
  content: "";
  position: absolute;
  inset: 7px -5px;
  border: 1px solid rgba(234,212,173,.35);
  border-radius: 50%;
  transform: rotate(35deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.hero-fact-card {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 9vh;
  width: 278px;
  padding: 25px;
  border: 1px solid var(--white-line);
  background: rgba(7, 22, 32, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-fact-card > p,
.fact-price small {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-fact-card > strong {
  display: block;
  margin-top: 12px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 400;
}

.hero-fact-card > strong small {
  font-family: inherit;
  font-size: 15px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
  padding: 17px 0;
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}

.fact-grid span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-grid b {
  font-size: 17px;
}

.fact-grid small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.fact-price b {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.fact-instalment {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--white-line);
}

.fact-instalment small {
  display: block;
  color: rgba(255,255,255,.48);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fact-instalment b {
  display: block;
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 18px;
}

.scroll-note {
  position: absolute;
  z-index: 3;
  left: 4.5vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-note span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: 120px 8vw;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 62px;
}

.section-kicker span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #856839;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.section-kicker p {
  margin: 0;
  color: #6f7779;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement {
  background: var(--paper-bright);
}

.developer-section {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  gap: 7vw;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(202,165,106,.14), transparent 28%),
    radial-gradient(circle at 10% 75%, rgba(45,86,113,.28), transparent 32%),
    #07151f;
}

.developer-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}

.developer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2,10,16,.9), transparent 58%);
}

.developer-visual > img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.developer-image-label {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 36px;
  left: 35px;
}

.developer-image-label small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.developer-image-label strong {
  display: block;
  max-width: 480px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.08;
}

.developer-copy h2,
.gallery-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.developer-lead {
  margin: 26px 0 0;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--white-line);
  border: 1px solid var(--white-line);
}

.developer-stats article {
  min-height: 135px;
  padding: 24px;
  background: rgba(255,255,255,.045);
}

.developer-stats b {
  display: block;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.developer-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  line-height: 1.5;
}

.developer-award {
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: rgba(255,255,255,.58);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 14px;
  line-height: 1.6;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 9vw;
}

.statement h2,
.numbers-heading h2,
.layouts-heading h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.statement-copy > p {
  margin: 4px 0 42px;
  color: #52616a;
  font-size: 16px;
  line-height: 1.8;
}

.truth-points {
  display: grid;
  gap: 26px;
}

.truth-points article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 17px;
}

.truth-points article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: #8b6b39;
  font-size: 12px;
  font-weight: 800;
}

.truth-points h3,
.truth-points p {
  margin: 0;
}

.truth-points h3 {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.truth-points p {
  color: #69757b;
  font-size: 13px;
  line-height: 1.65;
}

.match-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(520px, 1.28fr);
  gap: 8vw;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(53, 96, 122, 0.26), transparent 35%),
    var(--ink);
}

.match-intro {
  align-self: center;
}

.match-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.match-intro > p:last-child {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}

.match-card {
  position: relative;
  min-height: 500px;
  padding: 55px;
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.quiz-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.quiz-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--gold);
  transition: width 280ms ease;
}

.quiz-count {
  margin: 0 0 50px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeUp 320ms ease both;
}

.quiz-step h3 {
  max-width: 640px;
  margin: 0 0 38px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 400;
  line-height: 1.2;
}

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

.option-grid button {
  min-height: 65px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
  transition: border 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.option-grid button:hover,
.option-grid button.selected {
  border-color: var(--gold);
  color: #fff;
  background: rgba(202, 165, 106, 0.13);
  transform: translateY(-2px);
}

.quiz-note {
  position: absolute;
  right: 55px;
  bottom: 30px;
  left: 55px;
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.5;
}

.quiz-result {
  display: none;
  text-align: center;
}

.quiz-result.active {
  display: block;
  animation: fadeUp 450ms ease both;
}

.quiz-result .eyebrow {
  margin-bottom: 18px;
}

.score-ring {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 165, 106, 0.14), transparent 66%);
}

.score-ring strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.quiz-result h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
}

.quiz-result > p:not(.eyebrow) {
  max-width: 590px;
  margin: 17px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 29px;
}

.text-button {
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.62);
  background: none;
  cursor: pointer;
  font-size: 11px;
}

.numbers-section {
  background: var(--paper);
}

.numbers-heading,
.layouts-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 7vw;
  margin-bottom: 55px;
}

.numbers-heading p,
.layouts-heading p {
  margin: 0 0 5px;
  color: #6b767b;
  line-height: 1.75;
}

.number-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.number-card {
  min-height: 285px;
  padding: 40px;
  background: var(--paper-bright);
}

.number-card.featured {
  color: #fff;
  background: var(--ink-soft);
}

.number-card > span {
  color: #7b8588;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.number-card.featured > span {
  color: var(--gold);
}

.number-card strong {
  display: block;
  margin-top: 26px;
  color: #8d6c3b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 43px);
  font-weight: 400;
}

.number-card.featured strong {
  color: var(--gold-light);
}

.number-card p {
  margin: 28px 0 0;
  color: #778085;
  font-size: 12px;
  line-height: 1.7;
}

.number-card.featured p {
  color: rgba(255, 255, 255, 0.52);
}

.cost-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.cost-strip p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.cost-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.cost-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #737d80;
  font-size: 10px;
}

.triple-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 8vw;
  background: var(--paper-bright);
}

.triple-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.triple-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.creative-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 7px 10px;
  color: rgba(255,255,255,.72);
  background: rgba(3,12,18,.68);
  backdrop-filter: blur(8px);
  font-size: 8px;
  letter-spacing: .05em;
}

.triple-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(42px, 5vw, 71px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.triple-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #637078;
  line-height: 1.8;
}

.flexibility-grid {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.flexibility-grid article {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 15px;
  min-height: 62px;
  padding: 12px 17px;
  background: var(--paper-bright);
}

.flexibility-grid b {
  color: #9a7a48;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.flexibility-grid span {
  color: #5f6b71;
  font-size: 12px;
}

.mini-facts {
  display: flex;
  gap: 42px;
  margin: 35px 0 28px;
}

.typeb-payment {
  margin: 2px 0 23px;
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(202,165,106,.1);
}

.typeb-payment small {
  display: block;
  color: #7e725f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.typeb-payment strong {
  display: block;
  margin-top: 7px;
  color: #806033;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.typeb-caveat {
  margin: -8px 0 18px !important;
  color: #8a9193 !important;
  font-size: 9px;
  line-height: 1.6 !important;
}

.mini-facts span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.mini-facts b {
  color: #8a6939;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.mini-facts small {
  color: #7b8589;
  font-size: 10px;
}

.dark-link {
  border-color: var(--line);
  color: var(--ink);
}

.layouts-section {
  background: var(--paper);
}

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

.layout-card {
  position: relative;
  min-height: 390px;
  padding: 39px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.layout-card.highlighted {
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
}

.recommended {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.layout-card > p {
  margin: 0;
  color: #8b714c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.layout-card.highlighted > p {
  color: var(--gold);
}

.layout-card h3 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 49px;
  font-weight: 400;
}

.layout-card h3 small {
  font-size: 15px;
}

.layout-card ul {
  display: grid;
  gap: 13px;
  margin: 34px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.layout-card.highlighted ul {
  border-color: var(--white-line);
}

.layout-card li {
  color: #687479;
  font-size: 12px;
}

.layout-card.highlighted li {
  color: rgba(255, 255, 255, 0.62);
}

.fit-tag {
  color: #8d6b39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
}

.layout-card.highlighted .fit-tag {
  color: var(--gold-light);
}

.gallery-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(45,86,113,.3), transparent 27%),
    #041018;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 50px;
}

.gallery-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.gallery-heading > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: var(--ink);
}

.visual-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 12, 18, 0.84), transparent 65%);
}

.visual-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.visual-card:hover img {
  transform: scale(1.035);
}

.visual-card > div {
  position: absolute;
  z-index: 2;
  right: 45px;
  bottom: 43px;
  left: 45px;
  color: #fff;
}

.visual-card p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-card h3 {
  max-width: 470px;
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.1;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 9vw;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(202, 165, 106, 0.14), transparent 30%),
    var(--ink-soft);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-actions p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.7;
}

.agent-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 23px;
  border: 1px solid var(--white-line);
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow);
}

.agent-card > img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.agent-details {
  align-self: center;
}

.agent-details small,
.agent-details strong,
.agent-details a {
  display: block;
}

.agent-details small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.agent-details strong {
  margin-top: 7px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 27px;
  font-weight: 400;
}

.agent-details a {
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.agent-card .contact-actions {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--white-line);
}

footer {
  display: grid;
  grid-template-columns: .8fr .65fr 1.35fr .45fr;
  gap: 6vw;
  padding: 46px 5vw;
  color: rgba(255, 255, 255, 0.44);
  background: #041018;
}

.footer-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.64);
  font-size: 9px;
}

.footer-agent img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 0.14em;
}

.footer-brand p,
.disclaimer,
.copyright {
  margin: 5px 0 0;
  font-size: 8px;
  line-height: 1.6;
}

.copyright {
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 49, 42, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.floating-whatsapp span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b312b;
  background: #78d6a8;
  font-size: 9px;
  font-weight: 900;
}

.floating-whatsapp b {
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes starDrift {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-18px,10px,0); }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    align-items: start;
    padding-top: 170px;
  }

  .hero-fact-card {
    right: 5vw;
    bottom: 7vh;
  }

  .statement-grid,
  .match-section,
  .developer-section,
  .triple-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .match-section,
  .triple-section,
  .contact-section {
    gap: 65px;
  }

  .numbers-heading,
  .layouts-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .number-cards {
    grid-template-columns: 1fr;
  }

  .number-card {
    min-height: auto;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
  }

  .gallery-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

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

  .layout-card {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand small,
  .button-small,
  .scroll-note {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 900px;
    padding: 140px 22px 48px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2, 10, 16, 0.96) 0%, rgba(2, 10, 16, 0.64) 66%, rgba(2, 10, 16, 0.35) 100%);
  }

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

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-fact-card {
    right: 22px;
    bottom: 42px;
    left: 22px;
    width: auto;
  }

  .section {
    padding: 82px 22px;
  }

  .section-kicker {
    margin-bottom: 42px;
  }

  .statement-grid {
    gap: 46px;
  }

  .developer-visual,
  .developer-visual > img {
    min-height: 510px;
  }

  .developer-stats {
    grid-template-columns: 1fr;
  }

  .statement h2,
  .numbers-heading h2,
  .layouts-heading h2,
  .contact-section h2,
  .match-intro h2,
  .triple-copy h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .match-card {
    min-height: 530px;
    padding: 38px 23px;
  }

  .quiz-count {
    margin-bottom: 35px;
  }

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

  .option-grid button {
    min-height: 57px;
  }

  .quiz-note {
    right: 23px;
    bottom: 20px;
    left: 23px;
  }

  .result-actions {
    flex-direction: column;
    gap: 8px;
  }

  .cost-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .cost-strip div {
    justify-content: flex-start;
  }

  .mini-facts {
    gap: 24px;
  }

  .layout-grid,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .layout-card {
    min-height: 350px;
  }

  .layout-card.highlighted {
    transform: none;
  }

  .visual-card {
    min-height: 370px;
  }

  .visual-card > div {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 22px 92px;
  }

  .copyright {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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