:root {
  --cream:#fbf6ef;
  --cream-2:#fbefe4;
  --beige:#f4dfca;
  --gold:#c68a2f;
  --gold-dark:#9f550d;
  --text:#28211f;
  --muted:#7c6a61;
  --line:#efd3ba;
  --shadow: 0 20px 55px rgba(128, 78, 36, .10);
}

* { box-sizing: border-box; }

.site-header{
  height:126px;
  display:flex;
  align-items:center;
  gap:34px;
  padding:18px 34px 12px;
  background:rgba(255,252,255);
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 20px rgba(120,75,35,.06);
}

.logo img{width:255px;max-width:28vw;display:block}

body {
  margin:0;
  color:var(--text);
  background:linear-gradient(180deg,#fffdf9 0%,#fff8f0 45%,#fffdf9 100%);
  font-family:Montserrat, Arial, sans-serif;
  font-size:16px;
  line-height:1.55;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 240px;
  height: 300px;
  pointer-events: none;
  opacity: .35;
  z-index: -1;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(198,138,47,.22) 46%, transparent 47%);
  transform: rotate(-25deg);
}

body::before { left: -60px; bottom: 120px; }
body::after { right: -70px; bottom: 70px; transform: rotate(25deg); }

.logo img{width:255px;max-width:28vw;display:block}
.logo-link { flex: 0 0 auto; }

.main-nav{display:flex;align-items:center;gap:28px;margin-left:auto;white-space:nowrap}
.main-nav a{
  color:#1f1f1f;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:600;letter-spacing:.02em;
  padding:10px 0;border-bottom:2px solid transparent;
}
.main-nav a.active{color:var(--gold-dark);border-color:var(--gold)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;border-radius:999px;background:linear-gradient(135deg,#c87925,#a9540d);
  color:#fff;text-decoration:none;text-transform:uppercase;font-size:13px;font-weight:700;padding:15px 24px;box-shadow:0 12px 25px rgba(173,92,17,.25)
}
.btn-header{margin-left:8px;white-space:nowrap}


main { overflow: hidden; }

.hero-about {
  min-height: 500px;
  display: grid;
  grid-template-columns: 43% 57%;
  background: var(--light);
  position: relative;
}

.hero-text {
  padding: 84px 5vw 60px 7vw;
  position: relative;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.95) 0 55%, rgba(255,248,238,.78) 80%, transparent 100%);
}

.hero-text::after {
  content: '';
  position: absolute;
  right: -92px;
  top: -30px;
  width: 210px;
  height: 610px;
  background: rgba(255, 248, 238, 0.82);
  border-right: 1px solid rgba(198,138,47,.18);
  border-radius: 50%;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

h1 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(58px, 8vw, 110px);
  line-height: .83;
  font-weight: 500;
}

h1 span {
  color: var(--gold);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-weight: 400;
}

.decor-line {
  width: 148px;
  height: 2px;
  margin: 30px 0 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
}

.decor-line::after {
  content: '✦';
  color: var(--gold);
  position: absolute;
  right: -36px;
  top: -13px;
  font-size: 20px;
}

.intro {
  margin: 0;
  max-width: 420px;
  font-size: 24px;
  line-height: 1.35;
}

.intro strong { color: var(--gold-dark); font-weight: 500; }

.hero-image {
  background:
    linear-gradient(90deg, rgba(255,247,238,.55), rgba(255,247,238,0) 26%),
    url('assets/fond-bureau.png') center right / cover no-repeat;
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(255,248,240,.9), transparent);
}

.about-card {
  width: min(1120px, calc(100% - 8vw));
  margin: -20px auto 34px;
  padding: 36px 54px 34px 34px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(90, 58, 28, 0.08);
  position: relative;
  z-index: 3;
}

.timeline-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.timeline-icons span,
.icon,
.cta-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7eadb;
  color: var(--gold-dark);
  border: 1px solid rgba(198,138,47,.18);
  font-size: 30px;
  font-family: Arial, sans-serif;
}

.about-text p {
  margin: 0 0 26px;
  font-size: 18px;
}

.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--gold-dark); font-weight: 700; }

.values {
  width: min(1120px, calc(100% - 8vw));
  margin: 0 auto 30px;
  text-align: center;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
}

.section-title span {
  width: 86px;
  height: 1px;
  background: var(--gold);
}

.section-title h2 {
  margin: 0;
  color: var(--brown);
  font-size: 34px;
  font-weight: 400;
}

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

.values-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.values-grid p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.cta {
  width: min(1120px, calc(100% - 8vw));
  margin: 0 auto 54px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
}


.cta p {
  margin: 0 0 2px;
  font-size: 18px;
}

.cta strong {
  color: var(--gold-dark);
  font-family: 'Brush Script MT', 'Segoe Script', cursive;
  font-size: 30px;
  font-weight: 400;
}

@media (max-width: 1050px) {
  .site-header { height: auto; flex-wrap: wrap; gap: 18px; }
  .main-nav { order: 3; width: 100%; flex-wrap: wrap; gap: 18px; }
  .btn-header { margin-left: auto; }
  .hero-about { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; }
  .hero-text::after { display: none; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 5vw; }
  .logo { width: 210px; }
  .btn-header { display: none; }
  .main-nav { justify-content: flex-start; font-size: 12px; }
  .hero-text { padding: 54px 7vw 40px; }
  .intro { font-size: 20px; }
  .about-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .timeline-icons { display: none; }
  .about-text p { font-size: 16px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
