:root {
  --bg: #f6efe8;
  --surface: #fffdf9;
  --text: #2f2320;
  --muted: #6c5c4f;
  --accent: #8b5e3c;
  --accent-strong: #6b462d;
  --border: rgba(76, 49, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fbf6ee 0%, var(--bg) 100%);
}

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  padding: 1.25rem 1.25rem 4rem;
  background:
    radial-gradient(circle at top left, rgba(139, 94, 60, 0.12), transparent 30%),
    linear-gradient(120deg, rgba(251, 246, 238, 0.95), rgba(246, 239, 232, 0.96));
}

.top-nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.8);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0.4rem;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero-content {
  max-width: 1120px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

h1 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
}

.lead,
.intro-grid p,
.approach-layout p,
.info-card p,
.cta p,
.footer p {
  font-size: 1.03rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--accent-strong);
  color: white;
  box-shadow: 0 10px 25px rgba(107, 70, 45, 0.18);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--accent-strong);
  background: rgba(255, 253, 249, 0.9);
}

.hero-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(47, 35, 32, 0.08);
  text-align: center;
}

.hero-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  margin-bottom: 1rem;
}

.image-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 0;
}

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

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

.info-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: rgba(255, 253, 249, 0.8);
}

.approach-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.6rem;
  align-items: start;
  margin-top: 1.3rem;
}

.quote-box {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(139, 94, 60, 0.14), rgba(139, 94, 60, 0.05));
  border: 1px solid var(--border);
}

.cta {
  text-align: center;
  padding: 3rem 1.25rem 4.5rem;
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .hero-content,
  .intro-grid,
  .card-grid,
  .approach-layout {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 0.85rem;
  }

  .top-nav {
    border-radius: 1.1rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 0.8rem;
  }

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

  .hero-content {
    margin-top: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}
