:root {
  --bg: #08090b;
  --surface: #111419;
  --surface-2: #171b22;
  --line: #2a3039;
  --text: #f7f3ee;
  --muted: #b9c0c9;
  --orange: #ff7a1a;
  --gold: #f4c46b;
  --green: #34b56f;
  --blue: #7fb7ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

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

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  min-height: calc(100vh - 101px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 122, 26, 0.18), transparent 26%),
    linear-gradient(135deg, #08090b 0%, #12161c 54%, #090a0d 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(58px, 8vw, 118px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  margin: 10px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-content p:not(.eyebrow),
.section p,
.contact-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

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

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.identity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(17, 20, 25, 0.86);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.identity-card img {
  width: 180px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: #000;
}

.identity-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.identity-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

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

.service-grid article,
.info-grid article {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1014;
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

.service-grid p,
.info-grid span,
.info-grid a {
  color: var(--muted);
}

.info-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
}

.preview-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.preview-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.preview-frame figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 18px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 84px);
}

.legal-page article {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
  }

  .identity-card {
    width: 100%;
  }

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