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

:root {
  --bg: #f7f6f3;
  --bg-alt: #f1ede5;
  --text: #101727;
  --muted: #4a5264;
  --accent: #c9a15d;
  --accent-strong: #b58944;
  --accent-soft: #eadbbd;
  --deep: #1f2e6d;
  --card: #ffffff;
  --border: #e2ddd4;
  --success: #0f766e;
  --shadow: 0 18px 50px rgba(16, 23, 39, 0.1);
}

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

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Manrope', serif;
  margin: 0 0 0.4em;
  color: var(--text);
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.layout {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 0 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(253, 247, 240, 0.92);
  border-bottom: 1px solid rgba(198, 130, 84, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(164, 79, 38, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--deep);
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(196, 107, 59, 0.12);
  color: var(--accent-strong);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(164, 79, 38, 0.3);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(164, 79, 38, 0.32);
  text-decoration: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  margin: 5px 0;
  transition: 0.3s ease;
}

.hero {
  background: radial-gradient(circle at 18% 18%, #f1e3c9 0%, rgba(241,227,201,0) 26%),
              radial-gradient(circle at 82% 10%, #d6def1 0%, rgba(214,222,241,0) 24%),
              linear-gradient(180deg, var(--bg) 0%, #fbf9f6 100%);
  padding: 64px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(196, 107, 59, 0.12);
  color: var(--accent-strong);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 12px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--deep);
  margin-bottom: 18px;
}

.hero p.sub {
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 38px rgba(164, 79, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(164, 79, 38, 0.33);
}

.btn-secondary {
  background: #fff;
  color: var(--deep);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--deep);
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

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

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 640px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(18, 48, 71, 0.07);
  color: var(--deep);
  font-weight: 700;
  margin-bottom: 10px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--muted);
}

.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.stat-card {
  background: linear-gradient(135deg, rgba(196, 107, 59, 0.16), rgba(18, 48, 71, 0.1));
  color: var(--deep);
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-label {
  color: var(--deep);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

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

.timeline-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
}

.cta-strip {
  margin-top: 48px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(196, 107, 59, 0.95), rgba(18, 48, 71, 0.9));
  color: #fff;
  display: grid;
  gap: 12px;
  align-items: center;
}

.cta-strip h3 {
  color: #fff;
  margin: 0;
}

.cta-strip p {
  color: #fbeee2;
  margin: 0;
}

.cta-strip .btn {
  justify-self: start;
  background: #fff;
  color: var(--deep);
  border: none;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.footer {
  background: var(--deep);
  color: #c9d6e3;
  padding: 42px 0 36px;
}

.footer a {
  color: #f6d2b5;
}

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

.footer h4 {
  color: #fffaf5;
  margin-bottom: 12px;
}

.legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  padding: 18px;
}

.hero-visual .frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-visual .circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}

.hero-visual .circle.orange {
  width: 140px;
  height: 140px;
  background: rgba(196, 107, 59, 0.12);
  top: -10px;
  right: -30px;
}

.hero-visual .circle.blue {
  width: 110px;
  height: 110px;
  background: rgba(18, 48, 71, 0.1);
  bottom: -30px;
  left: -20px;
}

.badge-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  background: var(--bg-alt);
  color: var(--deep);
}

.table tr:last-child td {
  border-bottom: none;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.seo-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 840px) {
  .nav-links {
    position: absolute;
    top: 68px;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    width: 80vw;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    padding: 12px 0;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
