
:root {
  --bg: #1f2732;
  --panel: rgba(255,255,255,0.05);
  --panel-border: rgba(255,255,255,0.10);
  --text: #d7dce2;
  --text-strong: #eef2f6;
  --muted: #aeb8c4;
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(28,34,44,0.72), rgba(28,34,44,0.82)),
    url('assets/texture.png') center/cover fixed no-repeat;
}

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

.page-shell {
  min-height: 100vh;
  backdrop-filter: blur(0.5px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 2rem;
  background: rgba(22, 28, 37, 0.78);
  border-bottom: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
}

.brand-lockup img {
  display: block;
  width: min(300px, 42vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

main {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

.hero-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-label {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.lead {
  margin: 1.4rem 0 0;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

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

.button-primary {
  color: #0f1520;
  background: #d7dce2;
}

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

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 2rem;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.28));
}

.content-card {
  margin-top: 1.5rem;
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.two-col h2,
.two-col h3,
.contact-grid h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.2;
}

.two-col p,
.legal-card p,
.contact-grid p {
  margin: 0.65rem 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
}

.contact-grid h3 {
  font-size: 1.35rem;
}

.muted {
  color: var(--muted);
}

.legal-card p + p {
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 2.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-visual,
  .content-card {
    padding: 1.5rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  main {
    width: min(100% - 1rem, 1180px);
    padding-top: 1.5rem;
  }

  .site-header {
    padding: 1rem;
  }

  .brand-lockup img {
    width: 220px;
  }

  .site-nav {
    gap: 0.8rem 1rem;
    font-size: 0.72rem;
  }
}
