:root {
  --bg: #f7f1e9;
  --bg-deep: #ede3d5;
  --surface: rgba(255, 251, 246, 0.76);
  --surface-strong: rgba(255, 251, 246, 0.92);
  --text: #251d18;
  --muted: #6f6258;
  --line: rgba(70, 49, 30, 0.12);
  --gold: #b98040;
  --gold-deep: #8c5d2f;
  --shadow: 0 24px 60px rgba(72, 49, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(185, 128, 64, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(116, 142, 111, 0.16), transparent 24%),
    linear-gradient(180deg, #fcf8f3 0%, var(--bg) 54%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 60, 35, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 60, 35, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 90%);
  pointer-events: none;
}

.background-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

.background-blur-one {
  width: 260px;
  height: 260px;
  top: 16%;
  right: 8%;
  background: rgba(185, 128, 64, 0.14);
}

.background-blur-two {
  width: 320px;
  height: 320px;
  left: 4%;
  bottom: 10%;
  background: rgba(112, 143, 121, 0.12);
}

.site-header,
.hero-card,
.feature-card,
.element-card,
.benefits,
.quote-section,
.contact-section,
.contact-form input,
.contact-form textarea {
  backdrop-filter: blur(16px);
}

.site-header,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 248, 243, 0.8);
  box-shadow: var(--shadow);
}

.brand,
.site-nav a {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  box-shadow: 0 12px 28px rgba(140, 93, 47, 0.28);
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.brand-copy small {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
}

main {
  padding: 44px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.eyebrow,
.mini-label,
.card-index {
  margin: 0;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 1.02;
  font-weight: 600;
}

h1 span {
  color: var(--gold);
}

.lead,
.section-text,
.feature-card p,
.element-card p,
.split-copy p,
.benefit-item span,
.contact-copy p,
.contact-form label {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 38rem;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.button-primary {
  color: #fffaf3;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  box-shadow: 0 16px 34px rgba(140, 93, 47, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 251, 246, 0.68);
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.hero-points li + li {
  margin-top: 12px;
}

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

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-card,
.feature-card,
.element-card,
.benefits,
.quote-section,
.contact-section {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 34px;
}

.element-wheel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.element-wheel span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  border-radius: 24px;
  color: var(--text);
  background: rgba(255, 251, 246, 0.86);
  border: 1px solid rgba(70, 49, 30, 0.08);
  font-weight: 500;
}

.element-wheel span:last-child {
  grid-column: 1 / -1;
}

.visual-text {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.intro,
.elements-section,
.split-section,
.legacy-section,
.quote-section,
.contact-section {
  margin-top: 92px;
}

.section-heading {
  display: grid;
  gap: 14px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 600;
}

.section-text {
  max-width: 58rem;
  margin: 18px 0 0;
}

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

.feature-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-card h3,
.element-card h3 {
  margin-top: 14px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.element-card {
  padding: 24px 20px;
  border-radius: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
}

.benefit-item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
}

.benefit-item + .benefit-item {
  border-top: 1px solid var(--line);
}

.benefit-item strong {
  font-size: 1.1rem;
}

.legacy-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.legacy-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.legacy-card h3 {
  font-size: 1.8rem;
  line-height: 1.15;
}

.legacy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legacy-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.quote-section {
  padding: 38px;
  border-radius: 32px;
}

blockquote {
  margin-top: 12px;
  max-width: 16ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
}

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(70, 49, 30, 0.12);
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

@media (max-width: 1024px) {
  .hero,
  .split-section,
  .legacy-section,
  .contact-section,
  .feature-grid,
  .elements-grid {
    grid-template-columns: 1fr;
  }

  .elements-grid {
    gap: 14px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    border-radius: 28px;
    align-items: flex-start;
  }

  .site-header,
  main {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: 3.4rem;
  }

  .hero-card,
  .feature-card,
  .element-card,
  .benefits,
  .quote-section,
  .contact-section {
    border-radius: 26px;
  }

  blockquote {
    max-width: none;
  }
}

/* Homepage-inspired override */
body {
  background: #ffffff;
  color: #202020;
  font-family: Arial, Helvetica, sans-serif;
}

body::before,
.background-blur {
  display: none;
}

.site-header,
main {
  width: min(1240px, calc(100% - 48px));
}

.site-header {
  position: static;
  display: block;
  margin-top: 8px;
  padding: 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand {
  justify-content: center;
  gap: 18px;
}

.brand-mark {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  color: transparent;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  gap: 4px;
}

.brand-copy strong,
.brand-copy small {
  text-transform: none;
  color: #b89b73;
  letter-spacing: 0;
  font-weight: 400;
}

.brand-copy strong {
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
}

.brand-copy small {
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.site-nav {
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
}

.site-nav a {
  color: #737373;
  font-size: clamp(1.15rem, 2.1vw, 1.95rem);
  font-weight: 600;
}

main {
  padding-top: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
  min-height: auto;
}

.hero-copy {
  order: 2;
}

.hero-visual {
  order: 1;
}

.eyebrow,
.mini-label,
.card-index {
  color: #8f8f8f;
  letter-spacing: 0;
  text-transform: none;
  font-size: 1rem;
}

h1,
h2,
h3,
blockquote {
  font-family: Arial, Helvetica, sans-serif;
  color: #171717;
}

h1 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 700;
}

h1 span {
  color: inherit;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.18;
  font-weight: 700;
}

.lead,
.section-text,
.feature-card p,
.element-card p,
.split-copy p,
.benefit-item span,
.contact-copy p,
.contact-form label,
.visual-text,
.legacy-card p,
.hero-points li {
  color: #2b2b2b;
  line-height: 1.65;
  font-size: 1rem;
}

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

.button {
  min-height: 44px;
  border-radius: 0;
  border: 1px solid #b89b73;
  font-size: 1rem;
}

.button-primary {
  background: #b89b73;
  box-shadow: none;
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  color: #7f6c52;
  border-color: #cdb69a;
}

.hero-points {
  margin-top: 18px;
}

.hero-points li::before {
  background: #b89b73;
}

.hero-card,
.feature-card,
.element-card,
.benefits,
.quote-section,
.contact-section,
.legacy-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hero-card {
  width: 100%;
  min-height: 620px;
  background-image: url("https://www.feng-shui-raeume.com/static/index2017.jpg");
  background-size: cover;
  background-position: center;
}

.hero-card > * {
  display: none;
}

.intro,
.elements-section,
.split-section,
.legacy-section,
.quote-section,
.contact-section {
  margin-top: 60px;
}

.feature-grid,
.elements-grid,
.split-section,
.legacy-section,
.contact-section {
  gap: 32px;
}

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

.feature-card,
.element-card {
  border-top: 1px solid #d7d7d7;
  padding-top: 18px;
}

.feature-card h3,
.element-card h3,
.legacy-card h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.benefits {
  gap: 0;
}

.benefit-item {
  padding: 16px 0;
}

.legacy-actions {
  margin-top: 22px;
}

.quote-section {
  padding-top: 18px;
  border-top: 1px solid #d7d7d7;
}

blockquote {
  max-width: 26ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.28;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border-radius: 0;
  border: 1px solid #cfcfcf;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-copy,
  .hero-visual {
    order: initial;
  }

  .hero-card {
    min-height: 420px;
  }
}
