:root {
  --primary: #1a1a1a;
  --bg: #f7f4ee;
  --ink: #111111;
  --accent: #caa14a;
  --paper: #ffffff;
  --line: #e0d9ce;
  --mute: #6b6460;
  --display: 'Russo One', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --r: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body); color: var(--ink); background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); line-height: 1.06; }
h1 { font-size: clamp(38px, 6vw, 72px); font-weight: 400; letter-spacing: -.01em; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: 400; margin-bottom: 12px; }
h3 { font-size: 18px; font-weight: 400; margin-bottom: 8px; }
p { color: var(--mute); }

.eyebrow {
  display: inline-block; font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--mute); margin-bottom: 14px;
}
.eyebrow--gold { color: var(--accent); }
.lead { font-size: clamp(15px, 1.5vw, 18px); color: var(--mute); max-width: 50ch; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(247,244,238,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 22px; height: 64px; }
.brand {
  font-family: var(--display); font-size: 19px; font-weight: 400;
  text-decoration: none; color: var(--ink);
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.brand__dot { color: var(--accent); font-size: 12px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 13px 24px; border-radius: var(--r);
  transition: transform .15s, opacity .15s;
  font-family: var(--body);
}
.btn:hover { transform: translateY(-2px); opacity: .88; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--outline { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 1.5px var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; opacity: 1; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #b58c3a; opacity: 1; }
.btn--outline-dark { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); width: 100%; justify-content: center; }
.btn--outline-dark:hover { background: var(--bg); opacity: 1; }

/* HERO */
.hero { padding: clamp(52px, 7vw, 90px) 0; }
.hero__wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero__text h1 { margin-bottom: 22px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 32px; }
.hero__nums { display: flex; gap: 0; border-top: 1px solid var(--line); padding-top: 24px; }
.num-item { flex: 1; padding: 0 16px 0 0; border-right: 1px solid var(--line); }
.num-item:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.num-item:first-child { padding-left: 0; }
.num-item strong { display: block; font-family: var(--display); font-size: clamp(24px, 3vw, 36px); color: var(--accent); }
.num-item span { font-size: 13px; color: var(--mute); }

.hero__fig { position: relative; }
.hero__fig img {
  width: 100%; height: clamp(320px, 42vw, 500px);
  object-fit: cover; border-radius: calc(var(--r) + 4px);
  display: block;
  box-shadow: 0 28px 60px -20px rgba(0,0,0,.2);
}
.hero__tag {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: var(--r);
}

/* SERVICES grid-cards */
.services { padding: clamp(50px, 6vw, 84px) 0; }
.section-head { max-width: 54ch; margin-bottom: 38px; }
.section-head p { margin-top: 10px; }
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 22px; display: flex; flex-direction: column; min-height: 220px;
  transition: box-shadow .2s, transform .2s;
}
.gcard:hover { box-shadow: 0 10px 28px rgba(0,0,0,.07); transform: translateY(-3px); }
.gcard__ico { font-size: 26px; margin-bottom: 14px; }
.gcard p { color: var(--mute); font-size: 14.5px; margin-top: 6px; flex: 1; }
.gcard__price { font-family: var(--display); color: var(--accent); font-size: 18px; margin-top: 16px; }

/* URGENT */
.urgent { background: var(--ink); padding: clamp(50px, 6vw, 84px) 0; }
.urgent h2 { color: #fff; margin-bottom: 14px; }
.urgent__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.urgent__text > p { color: rgba(255,255,255,.72); max-width: 46ch; margin-top: 10px; }
.urgent__box { display: grid; gap: 12px; margin-top: 28px; }
.ubox {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 16px 20px; display: flex; align-items: center; gap: 16px;
}
.ubox strong { font-family: var(--display); font-size: 28px; color: var(--accent); flex-shrink: 0; width: 90px; }
.ubox span { color: rgba(255,255,255,.7); font-size: 14px; }
.urgent__note { color: rgba(255,255,255,.45); font-size: 13px; margin-top: 16px; }

.urgent__cta-card {
  background: var(--paper); border-radius: var(--r); padding: 28px 24px;
  display: flex; flex-direction: column;
}
.uctitle { font-family: var(--display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.urgent__cta-card > p { color: var(--mute); font-size: 14px; }

/* TRUST */
.trust { padding: clamp(50px, 6vw, 84px) 0; background: var(--paper); border-block: 1px solid var(--line); }
.trust-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 0; }
.tc {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 20px; min-height: 180px; display: flex; flex-direction: column;
}
.tc p { color: var(--mute); font-size: 14px; margin-top: 8px; flex: 1; }

/* CONTACT */
.contact { padding: clamp(50px, 6vw, 84px) 0; }
.contact__inner {
  background: var(--ink); border-radius: calc(var(--r) + 6px);
  padding: clamp(30px, 4vw, 54px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.contact__inner h2 { color: #fff; }
.contact__inner > p { color: rgba(255,255,255,.72); max-width: 44ch; margin-top: 10px; }
.contact__channels { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: var(--r); transition: background .15s;
}
.chn:hover { background: rgba(255,255,255,.18); }
.contact__info { color: rgba(255,255,255,.4); font-size: 12px; margin-top: 12px; }

/* FOOTER */
.foot { background: #0d0c0a; color: rgba(255,255,255,.4); padding: 26px 0; }
.foot__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

@media (max-width: 900px) {
  .hero__wrap { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: repeat(2,1fr); }
  .urgent__grid { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: repeat(2,1fr); }
  .nav__links { display: none; }
  .hero__nums { flex-wrap: wrap; }
  .num-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--line); padding: 12px 0; }
}
@media (max-width: 520px) {
  .grid-cards { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: 1fr; }
  .contact__inner { flex-direction: column; align-items: flex-start; }
}
