:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #202225;
  --muted: #676b73;
  --line: #dddbd3;
  --accent: #9b1d27;
  --accent-dark: #76151d;
  --gold: #b9975b;
  --shadow: 0 18px 45px rgba(36, 33, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}

.brand__logo {
  width: 76px;
  height: 44px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

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

.language {
  display: inline-flex;
  padding: 3px;
  background: #ece9df;
  border-radius: 999px;
}

.language__button {
  border: 0;
  padding: 8px 11px;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.language__button.is-active {
  color: #fff;
  background: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  min-height: 560px;
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(32, 34, 37, 0.9), rgba(32, 34, 37, 0.56)),
    linear-gradient(135deg, #303239, #6e1820);
  color: #fff;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
}

.button--primary {
  color: #fff;
  background: var(--accent);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.button--secondary:hover {
  border-color: #fff;
}

.hero__panel {
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hero__panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__panel dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.section--intro {
  background: var(--surface);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
  color: var(--muted);
  font-size: 18px;
}

.text-columns p {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.person-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  padding: 24px;
}

.service-card h3,
.person-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.service-card p,
.person-card p {
  margin: 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.person-card {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
}

.person-card__photo {
  width: 168px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eee9dc;
  border-radius: 8px;
}

.person-card__photo--inese {
  object-position: 50% 24%;
}

.person-card__photo--inara {
  object-position: 50% 42%;
}

.person-card__role {
  margin-bottom: 12px !important;
  color: var(--accent) !important;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  background: #25262b;
  color: #fff;
}

.contact-section .section__heading {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 10px;
  align-self: start;
  padding: 28px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-style: normal;
}

.contact-list span:first-child {
  color: #fff;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .team-grid,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 10px 14px;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-card__photo {
    width: min(100%, 260px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
}
