:root {
  --bg: #efe6da;
  --ink: #171411;
  --soft: #564a3f;
  --muted: #7e6f5e;
  --line: rgba(23, 20, 17, 0.1);
  --gold: #c5ab79;
  --gold-deep: #9a8251;
  --panel: #fbf7f0;
  --dark: #171411;
  --dark-soft: #241d16;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.62), transparent 26%),
    linear-gradient(180deg, #f4ede4 0%, #efe6da 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 92px; }

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

.page { overflow: clip; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(244,237,228,.7);
  border-bottom: 1px solid rgba(23,20,17,.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-mark,
.topnav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--ink);
}

.topnav {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  color: rgba(23,20,17,.66);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav a:hover {
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(23,20,17,.1);
  background: rgba(255,255,255,.34);
  color: rgba(23,20,17,.54);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lang-switch a {
  color: inherit;
  transition: color .18s ease;
}

.lang-switch a:hover,
.lang-switch a.is-active {
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.hero {
  padding: 28px 0 64px;
  background:
    radial-gradient(circle at 14% 14%, rgba(255,255,255,.68), transparent 24%),
    radial-gradient(circle at 76% 18%, rgba(197,171,121,.28), transparent 22%),
    linear-gradient(135deg, #f7f0e8 0%, #eadcca 46%, #c39f67 100%);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 118px;
  background:
    linear-gradient(180deg, rgba(239,230,218,0), rgba(239,230,218,.94));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 46px;
  align-items: start;
}

.hero-copy {
  padding: 44px 0 20px;
}

.hero-copy h1 {
  margin: 18px 0 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 500;
}

.hero-copy p {
  margin: 30px 0 0;
  max-width: 600px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.84;
  color: rgba(23,20,17,.72);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button-dark { background: var(--dark); color: #f8f2ea; }
.button-light {
  background: rgba(255,255,255,.34);
  border-color: rgba(23,20,17,.14);
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-points span,
.contact-card span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.18));
  border: 1px solid rgba(255,255,255,.44);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 500;
}

.hero-panel {
  display: grid;
  padding: 18px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(197,171,121,.16), transparent 34%),
    linear-gradient(180deg, rgba(30,22,16,.98), rgba(74,53,31,.96));
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 34px 64px rgba(49,32,10,.18);
}

.panel-shell {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  align-content: stretch;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.12)),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  min-height: 100%;
}

.panel-logo {
  justify-self: center;
  max-width: 168px;
}

.panel-logo img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
}

.panel-brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  align-self: end;
  width: 100%;
}

.panel-intro h2 { display: none; }

.panel-intro p {
  margin: 14px 0 0;
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.88;
  color: rgba(247,239,225,.82);
}

.panel-schema {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.schema-node {
  display: grid;
  gap: 10px;
  justify-items: start;
  min-width: 0;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
}

.schema-node span,
.panel-note span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,185,135,.84);
}

.schema-node strong,
.panel-note strong {
  font-size: 24px;
  line-height: 1.06;
  font-weight: 500;
  color: #f8f1e6;
}

.schema-link {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,185,135,.18), rgba(212,185,135,.66), rgba(212,185,135,.18));
}

.panel-note {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1220px) {
  .panel-schema {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schema-link {
    width: 1px;
    height: 16px;
    margin-left: 18px;
    background: linear-gradient(180deg, rgba(212,185,135,.18), rgba(212,185,135,.66), rgba(212,185,135,.18));
  }

  .schema-node {
    padding: 16px 18px;
  }

  .schema-node strong {
    font-size: 18px;
    line-height: 1.12;
  }

  .panel-note strong {
    font-size: 20px;
    line-height: 1.12;
  }
}

.section {
  padding: 96px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23,20,17,.08), transparent);
}

.dark {
  background:
    radial-gradient(circle at top center, rgba(197,171,121,.08), transparent 26%),
    linear-gradient(180deg, #2a221b 0%, #171411 22%, #231c15 100%);
  color: #f7efe2;
}

.dark::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.section-header {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-header.narrow { max-width: 720px; }

.section-header h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
}

.section-header p {
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--soft);
}

.section-header.light p { color: rgba(247,239,226,.74); }

.cards.three,
.cards.four,
.steps,
.focus-grid {
  display: grid;
  gap: 22px;
}

.cards.three,
.steps,
.focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card,
.step,
.focus-card,
.contact-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(53,35,10,.08);
}

.card,
.focus-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,251,246,.94), rgba(251,245,236,.86));
}

.card,
.step,
.focus-card {
  padding: 32px;
}

.card h3,
.step h3,
.focus-card strong {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 500;
}

.card p,
.step p,
.focus-card p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.84;
  color: var(--soft);
}

.approach .container {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  gap: 34px;
  align-items: start;
}

.approach .section-header {
  margin-bottom: 0;
  position: sticky;
  top: 28px;
}

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

.approach .card {
  position: relative;
  overflow: hidden;
}

.approach .card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(154,130,81,.24));
}

.step {
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(197,171,121,.08), transparent);
  border-color: rgba(255,255,255,.08);
  padding-top: 26px;
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.05em;
  color: rgba(212,185,135,.08);
  pointer-events: none;
}

.step span {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d4b987;
}

.step p { color: rgba(247,239,226,.76); }
.step h3 {
  color: #f8f1e6;
  position: relative;
}

.step p,
.step span {
  position: relative;
}

.frame .steps {
  align-items: stretch;
}

.frame .step {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-top: 1px solid rgba(212,185,135,.34);
}

.focus .section-header {
  max-width: 760px;
}

.focus-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
}

.focus-card:first-child {
  background:
    radial-gradient(circle at top right, rgba(197,171,121,.16), transparent 26%),
    linear-gradient(180deg, rgba(255,251,246,.97), rgba(251,245,236,.88));
}

.contact {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.52), transparent 24%),
    linear-gradient(180deg, #f2e9dd, #ede2d4);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
}

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

.contact-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-card:hover {
  transform: translateY(-1px);
}

.contact-card-primary {
  background:
    radial-gradient(circle at top right, rgba(197,171,121,.18), transparent 28%),
    linear-gradient(180deg, rgba(31,25,20,.96), rgba(61,44,28,.94));
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 42px rgba(44,28,11,.16);
}

.contact-card-primary span,
.contact-card-primary strong {
  color: #f7efe2;
}

.contact-card-primary span {
  color: rgba(212,185,135,.92);
}

.contact-meta {
  display: grid;
  gap: 10px;
  padding: 4px 2px 0;
}

.contact-meta span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contact-meta strong {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 500;
}

.contact-meta em {
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--soft);
}

.company-lines {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.company-lines p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(23,20,17,.64);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards.four,
  .steps,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .approach .container {
    grid-template-columns: 1fr;
  }

  .approach .section-header {
    position: static;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .topbar-inner {
    min-height: 62px;
  }

}

@media (max-width: 560px) {
  .hero {
    padding: 26px 0 34px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: .96;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .container {
    width: min(calc(100% - 32px), 1180px);
  }

  .topbar-inner,
  .topnav {
    gap: 12px;
  }

  .topbar-inner,
  .topbar-side {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-side {
    width: 100%;
  }

  .topnav {
    justify-content: flex-start;
  }

  .lang-switch {
    align-self: flex-start;
  }

  .hero-copy p,
  .section-header p {
    font-size: 17px;
  }

  .panel-schema {
    gap: 8px;
  }

  .schema-node {
    padding: 14px 16px;
  }

  .schema-node strong {
    font-size: 16px;
    line-height: 1.16;
  }

  .panel-note strong {
    font-size: 18px;
    line-height: 1.14;
  }

  .hero-panel,
  .panel-shell,
  .card,
  .step,
  .focus-card,
  .contact-card {
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }
}
