* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --text: #161616;
  --muted: #6d6d68;
  --dark: #171a1c;
  --line: #dedbd2;
  --accent: #b78b3d;
  --accent-dark: #8f6a2e;
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-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(244, 241, 234, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav a,
.header-phone {
  transition: opacity .2s ease;
}

.nav a:hover,
.header-phone:hover {
  opacity: .6;
}

.header-phone {
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  padding: 76px 0 88px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -0.05em;
}

.section h2,
.contact-section h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 32px;
  color: #4f504c;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--dark);
  color: white;
}

.btn-secondary {
  border: 1px solid var(--dark);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 52px;
}

.hero-points div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-size: 20px;
}

.hero-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  position: relative;
  min-height: 575px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.2)),
    linear-gradient(135deg, #c8c2b5, #7b7c76);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.building {
  position: absolute;
  width: 74%;
  height: 78%;
  right: -7%;
  bottom: 0;
  background: linear-gradient(135deg, #777873, #b8b5ac);
  clip-path: polygon(18% 0, 100% 9%, 100% 100%, 0 100%, 0 17%);
  box-shadow: -20px 0 50px rgba(0,0,0,.15);
}

.building::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.05) 0,
    rgba(255,255,255,.05) 14%,
    rgba(0,0,0,.06) 14%,
    rgba(0,0,0,.06) 15%
  );
}

.building-side {
  position: absolute;
  left: 0;
  top: 10%;
  width: 16%;
  height: 90%;
  background: #5b5e5b;
}

.windows {
  position: absolute;
  left: 23%;
  right: 8%;
  top: 15%;
  bottom: 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 14px;
}

.windows i {
  background: linear-gradient(135deg, #252d31, #7d8b8a);
  border: 4px solid rgba(220,218,208,.38);
  box-shadow: inset 0 0 20px rgba(255,255,255,.08);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -90px;
  left: -70px;
  border: 42px solid rgba(183,139,61,.42);
}

.hero-card-caption {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: min(360px, calc(100% - 60px));
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(20,22,24,.86);
  backdrop-filter: blur(12px);
  color: white;
}

.hero-card-caption span,
.hero-card-caption strong {
  display: block;
}

.hero-card-caption span {
  color: #d7b36e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.section {
  padding: 100px 0;
}

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

.section-copy {
  color: #4f504c;
  font-size: 18px;
}

.section-copy p {
  margin: 0 0 18px;
}

.section-dark,
.contact-section {
  background: var(--dark);
  color: white;
}

.light {
  color: white !important;
}

.section-dark .section-kicker,
.contact-section .section-kicker {
  color: #d7b36e !important;
}

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

.service-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.service-card span {
  color: #d7b36e;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  margin: 68px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #b8bbb7;
}

.details-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

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

.details-card {
  border-top: 1px solid var(--text);
}

.detail-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row span {
  color: var(--muted);
}

.detail-row strong {
  font-size: 15px;
}

.contact-section {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-intro {
  max-width: 560px;
  color: #b8bbb7;
  font-size: 18px;
}

.contact-card {
  border-top: 1px solid rgba(255,255,255,.2);
}

.contact-card a {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: padding-left .2s ease;
}

.contact-card a:hover {
  padding-left: 8px;
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: #9c9e9b;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-card strong {
  font-size: 20px;
  overflow-wrap: anywhere;
}

footer {
  background: #111315;
  color: #898b88;
  font-size: 12px;
}

.footer-inner {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 960px) {
  .nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
  }

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

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

  .services-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .details-head {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }
}
