@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #0c1020;
  --muted: #5c647a;
  --accent: #ff6a3d;
  --accent-dark: #e0512b;
  --sky: #d6e8ff;
  --sea: #0b3b74;
  --gold: #f6c453;
  --panel: #f7f3ed;
  --surface: #ffffff;
  --shadow: 0 30px 70px rgba(12, 16, 32, 0.15);
}

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

body {
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fef3e7 0%, #f7f8fb 45%, #e9f3ff 100%);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  z-index: 10;
}

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

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sea), #104a8b);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.site-nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.site-nav a.active,
.site-nav a:hover {
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 2px;
}

main {
  padding: 0 6vw 72px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 60px 0 40px;
}

.hero-content h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--sea);
  font-weight: 700;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 35px rgba(255, 106, 61, 0.3);
}

.btn.ghost {
  color: var(--accent);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.metric {
  font-size: 1.6rem;
  font-weight: 700;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 106, 61, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.pill-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.pill-list li {
  background: var(--panel);
  padding: 10px 16px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card-footer {
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 60px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.stat-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 16, 32, 0.08);
}

.card h3,
.stat-card h3 {
  margin-bottom: 12px;
}

.accent {
  background: linear-gradient(120deg, rgba(11, 59, 116, 0.08), rgba(246, 196, 83, 0.12));
  border-radius: 28px;
  padding: 60px 40px;
}

.page-hero {
  padding: 50px 0 24px;
}

.page-hero h1 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  background: var(--surface);
  padding: 20px 24px;
  border-radius: 18px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(12, 16, 32, 0.08);
}

.service-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.product-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 35px rgba(12, 16, 32, 0.09);
}

.product-card h3 {
  margin-bottom: 10px;
}

.contact-wrapper {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(12, 16, 32, 0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d6dce8;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
}

.contact-form button {
  border: none;
  background: var(--sea);
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
}

.site-footer {
  padding: 32px 6vw;
  text-align: center;
  color: var(--muted);
  background: #f6f7fb;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 78px;
    right: 6vw;
    background: var(--surface);
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-metrics {
    gap: 18px;
  }

  .accent {
    padding: 40px 24px;
  }
}
