:root {
  color-scheme: light;
  --primary: #3a3a3a;
  --primary-dark: #232323;
  --accent: #b28a45;
  --soft: #f3f1ee;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(23, 55, 95, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", system-ui, sans-serif;
  line-height: 1.2;
}

.hero {
  background: linear-gradient(135deg, #f3f1ee 0%, #ffffff 55%, #fbf2df 100%);
  padding: 32px 8vw 96px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 48px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.logo-image {
  width: min(260px, 50vw);
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.nav-actions {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--primary-dark);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--primary);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(23, 55, 95, 0.15);
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
}

.btn.secondary {
  background: var(--accent);
  color: #2c2210;
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.hero-metrics h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-card {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid #eee4d2;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-card ul {
  margin: 16px 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.section {
  padding: 80px 8vw;
}

.section.alt {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 38, 66, 0.08);
  border: 1px solid #efe7d8;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.card p {
  color: var(--muted);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.value-grid h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.value-grid p {
  color: var(--muted);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span {
  background: var(--soft);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-details {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.contact-details h4 {
  margin-bottom: 4px;
}

.form {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border: 1px solid #efe7d8;
}

.form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form input,
.form textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d9dfe7;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 32px 8vw;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer h3 {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
  }
}