:root {
  --bg: #0b0b0c;
  --bg-soft: #111113;
  --paper: #f4f0e8;
  --text: #f7f3ec;
  --muted: #b7b0a6;
  --dark-text: #171717;
  --dark-muted: #5d5a55;
  --line: rgba(255,255,255,.12);
  --gold: #c6a66a;
  --gold-dark: #9e7f45;
  --card: #171719;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,12,.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 270px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,166,106,.65);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
}

.brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: .02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero {
  min-height: calc(100vh - 78px);
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 70% 20%, rgba(198,166,106,.18), transparent 32%),
    linear-gradient(145deg, #0b0b0c 0%, #151517 58%, #09090a 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .8fr);
  align-items: center;
  gap: 62px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font: 700 12px/1.2 Arial, sans-serif;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.04em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

h3 {
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.lead {
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.32;
  color: #fff;
  max-width: 780px;
  margin-bottom: 22px;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 34px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 0;
  font: 700 14px/1 Arial, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #121212;
}

.btn-primary:hover {
  background: #d7bc83;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255,255,255,.22);
  color: var(--text);
}

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

.btn-outline.light {
  border-color: rgba(255,255,255,.35);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
}

.contact-strip a:hover {
  color: var(--gold);
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.1);
}

.photo-card {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: min(300px, calc(100% - 40px));
  padding: 22px;
  background: rgba(14,14,15,.92);
  border: 1px solid rgba(198,166,106,.35);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.photo-card strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
}

.photo-card span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--paper);
  color: var(--dark-text);
}

.section-muted .section-label {
  color: var(--gold-dark);
}

.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
}

.text-block p,
.section-head p,
.card p,
.principles p,
.cta p,
.contact-grid p {
  color: inherit;
  opacity: .78;
  font-size: 18px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
}

.card h3 {
  color: #fff;
}

.card p {
  color: var(--muted);
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.principles div {
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.18);
}

.principles span {
  display: block;
  color: var(--gold-dark);
  font: 700 13px/1 Arial, sans-serif;
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.price-card {
  padding: 32px;
  background: #131315;
  border: 1px solid var(--line);
}

.price-card h3 {
  color: var(--gold);
  margin-bottom: 22px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
}

.price-row strong {
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
}

.notice {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.cta {
  background:
    linear-gradient(rgba(0,0,0,.70), rgba(0,0,0,.70)),
    radial-gradient(circle at 75% 25%, rgba(198,166,106,.28), transparent 36%),
    #111113;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  max-width: 750px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: start;
}

.contact-box {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  font-size: 20px;
}

.contact-box a:hover {
  color: var(--gold);
}

.contact-box span {
  color: var(--muted);
  font-size: 17px;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 14px/1.4 Arial, sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .hero-grid,
  .two-col,
  .cta-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-photo-wrap {
    max-width: 560px;
  }

  .cards,
  .principles,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    height: 68px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

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

  .hero,
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 21px;
  }

  .cards,
  .principles,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .price-card,
  .contact-box {
    padding: 24px;
  }

  .price-row {
    display: grid;
    gap: 8px;
  }

  .photo-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .footer-inner {
    display: grid;
  }
}


.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.workflow-step {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 230px;
}

.workflow-step span {
  display: block;
  color: var(--gold);
  font: 700 13px/1 Arial, sans-serif;
  letter-spacing: .14em;
  margin-bottom: 22px;
}

.workflow-step p {
  color: var(--muted);
  font-size: 17px;
}

.privacy-page {
  background: var(--paper);
  color: var(--dark-text);
}

.privacy-hero {
  padding: 80px 0 40px;
  background: #111113;
  color: var(--text);
}

.privacy-content {
  padding: 70px 0 90px;
}

.privacy-content article {
  max-width: 920px;
}

.privacy-content h2 {
  font-size: 34px;
  margin-top: 44px;
}

.privacy-content p,
.privacy-content li {
  color: var(--dark-muted);
  font-size: 18px;
}

.privacy-content a {
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(158,127,69,.35);
}

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

@media (max-width: 980px) {
  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }
}

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