:root {
  --bg: #0f1012;
  --bg-alt: #17191d;
  --text: #ebedf0;
  --muted: #b8bcc3;
  --brand: #c91f2d;
  --brand-strong: #9f121f;
  --card: #1e2229;
  --line: rgba(235, 237, 240, 0.16);
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 31, 45, 0.2) 0%, transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(235, 237, 240, 0.08) 0%, transparent 26%),
    var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 16, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-weight: 700;
  color: var(--muted);
}

.site-nav a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--brand-strong);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero-copy p {
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 0.78rem 1.35rem;
  transition: all 0.2s ease;
}

.btn:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--line);
}

.btn-small {
  padding: 0.5rem 1rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-card-copy {
  padding-top: 1rem;
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.metric-value {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 800;
}

.metric-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.metric-grid strong {
  font-size: 1.05rem;
  line-height: 1.4;
}

.hero-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.shape-1 {
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: -90px;
  background: rgba(201, 31, 45, 0.2);
}

.shape-2 {
  width: 190px;
  height: 190px;
  left: -70px;
  top: 55%;
  background: rgba(165, 169, 178, 0.24);
}

.section {
  padding: 4.6rem 0;
}

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

.section-head {
  max-width: 760px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(24, 50, 44, 0.08);
}

.card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.about-block {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-highlights {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-highlights article {
  background: #21252d;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
}

.about-highlights h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.about-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.about-list {
  margin: 0;
  padding-left: 1.1rem;
  background: #222730;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
}

.about-photo {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 3;
}

.about-founder {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.8rem;
  align-items: center;
  background: #21252d;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
}

.about-founder p {
  margin: 0;
  color: var(--muted);
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-list li + li {
  margin-top: 0.5rem;
}

.testimonial {
  margin-top: 1.4rem;
  border-left: 4px solid var(--brand);
  padding: 0.9rem 0 0.9rem 1.2rem;
  background: #1f242c;
  border-radius: 8px 14px 14px 8px;
}

.testimonial p {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.testimonial span {
  color: var(--muted);
  font-weight: 700;
}

.section-cta {
  background:
    linear-gradient(180deg, rgba(23, 25, 29, 0.88), rgba(23, 25, 29, 0.96)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 24 24'%3E%3Cpath fill='%2389a88f' fill-opacity='.2' d='M5 3h14v2H5V3m0 4h14v2H5V7m0 4h14v2H5v-2m0 4h9v2H5v-2z'/%3E%3C/svg%3E");
}

.coverage-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coverage-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.gallery-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.gallery-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #111;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-form {
  background: #1f232b;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: #12151a;
  padding: 0.7rem 0.78rem;
  font-family: inherit;
  margin-bottom: 0.85rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 122, 76, 0.3);
  border-color: var(--brand);
}

.contact-list p {
  margin: 0;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list p:last-child {
  border-bottom: 0;
}

.contact-list a {
  color: var(--brand-strong);
  font-weight: 700;
}

.contact-list a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #14161a;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cta-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 4%;
    left: 4%;
    background: #181b20;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #222730;
  }

  .logo-text {
    font-size: 0.96rem;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-founder {
    grid-template-columns: 1fr;
  }
}
