:root {
  --bg: #f7f4ef;
  --ink: #1f1f1f;
  --accent: #ba5a2a;
  --accent-dark: #8c3d1b;
  --sand: #efe4d2;
  --olive: #405246;
  --soft: #ffffff;
  --muted: #6d6d6d;
  --shadow: 0 18px 40px rgba(32, 26, 18, 0.12);
}

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

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff9f1 0%, var(--bg) 55%, #efe8dd 100%);
  line-height: 1.6;
}

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

.hero {
  padding: 32px 6vw 80px;
  background:
    linear-gradient(120deg, rgba(186, 90, 42, 0.1), rgba(64, 82, 70, 0.15)),
    radial-gradient(circle at 80% 20%, #fff 0%, transparent 60%);
}

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

.brand {
  font-family: "Palatino Linotype", "Book Antiqua", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(186, 90, 42, 0.25);
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--olive);
}

.btn-outline:hover {
  background: var(--olive);
  color: #fff;
  box-shadow: 0 10px 20px rgba(64, 82, 70, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(186, 90, 42, 0.4);
}

.btn-ghost:hover {
  background: rgba(186, 90, 42, 0.1);
  color: var(--accent-dark);
}

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

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

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

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

.hero-card {
  background: var(--soft);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64, 82, 70, 0.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-card h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-grid span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

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

.card {
  background: var(--soft);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(186, 90, 42, 0.1);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.metrics {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.metrics strong {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.metrics span {
  color: var(--muted);
}

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

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

.contact-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(64, 82, 70, 0.2);
  font-family: inherit;
}

.footer {
  padding: 28px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  background: #f0e7db;
}

.footer span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.plain {
  background: #f6f2ea;
}

.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f0e7db;
}

.privacy {
  max-width: 840px;
  margin: 0 auto;
  padding: 50px 6vw 80px;
}

.privacy h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.privacy section {
  margin-top: 24px;
}

.privacy ul {
  margin-top: 12px;
  padding-left: 20px;
}

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

@media (max-width: 720px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-content {
    margin-top: 40px;
  }
}
