:root {
  --bg: #0b0b0d;
  --bg-soft: #121216;
  --card: #15151a;
  --text: #f5f5f7;
  --muted: #b4b4bd;
  --line: rgba(255, 255, 255, 0.08);
  --primary: #a10f2b;
  --primary-strong: #c41234;
  --primary-dark: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 4px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mini {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--primary);
  margin-bottom: 2px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  transition: 0.25s;
}

.nav-links a:hover,
.btn-link:hover,
.contact-links a:hover {
  color: var(--primary-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid transparent;
  transition: 0.25s;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(161, 15, 43, 0.22);
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-outline {
  border-color: rgba(161, 15, 43, 0.55);
  color: var(--primary-strong);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(161, 15, 43, 0.08);
}

.btn-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  transition: 0.25s;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11, 11, 13, 0.96), rgba(11, 11, 13, 0.78), rgba(11, 11, 13, 0.32)),
    radial-gradient(circle at top left, rgba(161, 15, 43, 0.16), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--primary-strong);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  flex-wrap: wrap;
}

.line {
  width: 56px;
  height: 1px;
  background: var(--primary);
}

.hero h1,
.section h2,
.section-head h2,
.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  max-width: 900px;
}

.hero h1 span,
.contact h2 span {
  color: var(--primary-strong);
  font-style: italic;
}

.hero p {
  margin-top: 30px;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
}

.hero-footer-text {
  margin-top: 42px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--muted);
}

.section {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.section-alt {
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--primary-strong);
  margin-bottom: 22px;
}

.section h2,
.section-head h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  max-width: 820px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.text-block p,
.method-text,
.contact p,
.card p,
.method-item p,
.stat-label {
  color: var(--muted);
  font-weight: 300;
}

.text-block p + p {
  margin-top: 22px;
}

.stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.stat {
  background: var(--bg);
  padding: 28px;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--primary-strong);
  line-height: 1;
}

.stat-label {
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-head {
  margin-bottom: 46px;
}

.subhead {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--text);
}

.subhead::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--primary);
  display: inline-block;
}

.subhead-space {
  margin-top: 54px;
}

.muted {
  color: var(--muted);
  font-size: 0.78em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.card {
  background: var(--bg);
  padding: 34px 28px;
  min-height: 220px;
  transition: 0.25s;
}

.card:hover {
  background: var(--bg-soft);
}

.card h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}

.card p {
  font-size: 0.97rem;
}

.method-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.method-item {
  background: var(--bg);
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.method-item span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--primary-strong);
  line-height: 1;
  min-width: 46px;
}

.contact {
  position: relative;
  background:
    radial-gradient(circle at top center, rgba(161, 15, 43, 0.10), transparent 35%),
    var(--bg);
}

.contact-box {
  text-align: center;
}

.contact h2 {
  margin-inline: auto;
}

.contact p {
  max-width: 760px;
  margin: 24px auto 0;
}

.contact-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.contact-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-links a {
  color: var(--muted);
  transition: 0.25s;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

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

@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 86px;
  }

  .nav-links,
  .header .btn-outline {
    display: none;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  .footer-logo {
    width: 56px;
    height: 56px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .section {
    padding: 72px 0;
  }

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

  .subhead {
    font-size: 1.6rem;
  }

  .card h4 {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .logo {
    width: 54px;
    height: 54px;
  }

  .footer-logo {
    width: 50px;
    height: 50px;
  }

  .brand {
    gap: 12px;
  }

  .brand-name {
    font-size: 1.1rem;
    white-space: normal;
  }

  .hero-kicker,
  .section-kicker,
  .btn,
  .btn-link,
  .nav-links a,
  .stat-label,
  .footer-inner,
  .hero-footer-text {
    letter-spacing: 0.14em;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-link {
    width: 100%;
    text-align: center;
  }

  .method-item {
    flex-direction: column;
    gap: 10px;
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
  }
}