:root {
  --bg-dark: #111111;
  --bg-darker: #090909;
  --bg-light: #f3efe7;
  --bg-paper: #fffcf6;
  --text-light: #f4efe7;
  --text-dark: #151515;
  --muted-dark: rgba(244, 239, 231, 0.74);
  --muted-light: rgba(21, 21, 21, 0.68);
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(17, 17, 17, 0.1);
  --accent: #18344f;
  --accent-soft: #274a69;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.22);
  --radius: 28px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at top, rgba(39, 74, 105, 0.24), transparent 26%),
    var(--bg-paper);
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 9, 9, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: var(--muted-dark);
}

.site-nav a:hover,
.contact-list a:hover,
.button-link:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  color: var(--text-dark);
  background: var(--bg-light);
}

.button-dark {
  color: var(--text-light);
  background: var(--accent);
}

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

.button-link {
  color: var(--text-light);
  padding-left: 0;
  padding-right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at 80% 20%, rgba(28, 64, 95, 0.8), transparent 26%),
    linear-gradient(135deg, #0f0f10 0%, #191919 48%, #0f2234 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero::before {
  inset: auto auto 10% -10%;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.06);
}

.hero::after {
  inset: 15% -8% auto auto;
  width: 360px;
  height: 360px;
  background: rgba(255, 245, 230, 0.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 40%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 110px,
      rgba(255, 255, 255, 0.03) 111px,
      transparent 112px
    );
}

.hero-grid,
.intro-grid,
.about-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  align-items: end;
  padding: 110px 0 72px;
}

.hero-copy {
  max-width: 680px;
  color: var(--text-light);
}

.eyebrow,
.section-kicker,
.panel-label,
.card-type {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(4.8rem, 11vw, 9rem);
  letter-spacing: -0.04em;
}

.hero-lead,
.intro-text,
.section-heading p,
.about-copy p,
.contact-copy,
.card p,
.card li,
.contact-form label,
.site-footer {
  line-height: 1.7;
}

.hero-lead {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  color: var(--muted-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 36px;
}

.hero-panel {
  align-self: center;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.panel-label {
  color: var(--muted-dark);
}

.panel-stat + .panel-stat {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.panel-stat strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.panel-stat span {
  color: var(--muted-dark);
}

.section {
  padding: 110px 0;
}

.section-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65)),
    var(--bg-paper);
}

.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
}

.section-kicker {
  color: var(--accent-soft);
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
}

.intro-text,
.section-heading p,
.about-copy p,
.contact-copy {
  color: var(--muted-light);
  font-size: 1.02rem;
}

.section-light {
  background: var(--bg-light);
}

.section-heading {
  max-width: 720px;
}

.section-heading p {
  margin-top: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.card,
.quote-card,
.contact-form {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.card {
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 252, 246, 0.88);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1;
}

.card p {
  margin: 0;
  color: var(--muted-light);
}

.card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.card li + li {
  margin-top: 12px;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.featured {
  color: var(--text-light);
  background: linear-gradient(180deg, #17324a, #102235);
  border-color: rgba(255, 255, 255, 0.08);
}

.featured p,
.featured li,
.featured .card-type {
  color: rgba(244, 239, 231, 0.82);
}

.featured li::before {
  background: #d6e1ea;
}

.section-dark {
  color: var(--text-light);
  background:
    radial-gradient(circle at top right, rgba(42, 79, 111, 0.34), transparent 25%),
    linear-gradient(180deg, #0f1011, #131416 55%, #0d1821);
}

.about-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-dark .section-kicker,
.section-dark .about-copy p {
  color: var(--muted-dark);
}

.quote-card {
  padding: 42px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
}

.quote-card p {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.quote-card span {
  display: inline-block;
  margin-top: 24px;
  color: var(--muted-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.section-contact {
  background:
    radial-gradient(circle at bottom left, rgba(24, 52, 79, 0.12), transparent 30%),
    var(--bg-paper);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted-light);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text-dark);
  background: #fffdfa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(24, 52, 79, 0.18);
  border-color: rgba(24, 52, 79, 0.3);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  color: var(--muted-dark);
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p {
  margin: 0;
}

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

  .hero-grid,
  .intro-grid,
  .about-grid,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 88px;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-inner {
    min-height: 74px;
  }

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

  .button-ghost {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(4rem, 24vw, 5.2rem);
  }

  .quote-card,
  .contact-form,
  .card,
  .hero-panel {
    padding: 22px;
  }
}
