:root {
  --bg: #f4efe9;
  --bg-alt: #ebe2d8;
  --text: #1a1a1a;
  --muted: #55524c;
  --accent: #b24e2a;
  --accent-dark: #7d341a;
  --card: #fffaf4;
  --line: rgba(26, 26, 26, 0.1);
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #f7f1ea, var(--bg));
  line-height: 1.6;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b24e2a, #f0a36e);
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--card);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

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

.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

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

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(178, 78, 42, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(178, 78, 42, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  box-shadow: none;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-card {
  background: var(--card);
  border-radius: 26px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(178, 78, 42, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.card-sheen {
  position: absolute;
  inset: -40% 30% auto -40%;
  height: 180px;
  background: linear-gradient(120deg, rgba(178, 78, 42, 0.4), transparent);
  transform: rotate(-10deg);
  pointer-events: none;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.card-list {
  display: grid;
  gap: 16px;
}

.label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
}

.section-title {
  margin: 80px 0 32px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
}

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

.tile {
  background: linear-gradient(135deg, #fdf8f2, #efe2d6);
  padding: 24px;
  border-radius: 22px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  transition: transform 0.2s ease;
}

.tile:hover {
  transform: translateY(-4px);
}

.tile-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.tile-sub {
  color: var(--muted);
}

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

.step {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid var(--line);
}

.step-count {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.materials {
  background: var(--bg-alt);
  border-radius: 32px;
  padding: 40px 28px;
  margin: 70px 0;
}

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

.material {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

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

.testimonial-card {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
}

.testimonial-card.light {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.quote {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.quote-sub {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-card.light .quote-sub {
  color: var(--muted);
}

.cta {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: #1f1c18;
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  margin-top: 80px;
}

.cta h2 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-form {
  display: grid;
  gap: 14px;
}

.cta-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-form input,
.cta-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-sub {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    right: 20px;
    top: 70px;
    background: var(--card);
    padding: 16px;
    border-radius: 16px;
    flex-direction: column;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  .nav.open {
    display: flex;
  }

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

  .hero-actions {
    justify-content: flex-start;
  }

  .site-header {
    position: relative;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 16px 36px;
  }

  .hero-card {
    order: -1;
  }

  .cta {
    padding: 30px 22px;
  }
}
