﻿:root {
  --bg: #f4f8fb;
  --surface: #ffffff;
  --ink: #0a4f64;
  --muted: #4a6470;
  --primary: #0f9bb1;
  --accent: #cb8b13;
  --line: #d9e5ec;
  --shadow: 0 14px 30px rgba(14, 64, 85, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, #cdeaf5 0%, transparent 38%),
    radial-gradient(circle at 90% 0%, #eef8dd 0%, transparent 35%),
    var(--bg);
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(244, 248, 251, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  gap: 1.2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 5rem 0 3rem;
}

.tag {
  display: inline-block;
  margin: 0;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0.8rem 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stats div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.stats strong {
  display: block;
  font-size: 1.2rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 3.5rem 0;
}

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

.cards-four {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.split ul {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.4rem;
}

.split li {
  margin-bottom: 0.8rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact form {
  display: grid;
  gap: 0.9rem;
  max-width: 560px;
}

.lead-form button {
  justify-self: start;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

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

.contact-card a,
footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.info-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.info-panel h3 {
  margin-top: 0;
}

.info-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
  font: inherit;
}

.form-status {
  margin: 0;
  min-height: 1.5rem;
  font-weight: 700;
}

.form-status.success {
  color: #177245;
}

.form-status.error {
  color: #b73939;
}

footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
}

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

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

@media (max-width: 900px) {
  .cards,
  .cards-four,
  .stats,
  .contact-details,
  .testimonials,
  .story-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-block;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: transparent;
    padding: 0.4rem 0.65rem;
    font-weight: 700;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .nav-menu {
    position: absolute;
    right: 6vw;
    top: 64px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem;
    display: none;
  }

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