:root {
  --bg: #f5f2ed;
  --bg-alt: #fffdf8;
  --text: #2a1f1d;
  --text-light: #6b5c58;
  --accent: #b45f3c;
  --accent-dark: #8c4527;
  --highlight: #d9b08c;
  --card: #ffffff;
  --border: rgba(42, 31, 29, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Work Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Marcellus", "Work Sans", serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--text);
}

p {
  margin: 0 0 1em;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  padding: 2.5rem clamp(1.5rem, 5vw, 6rem) 4rem;
  align-items: center;
  min-height: 90vh;
  background: linear-gradient(135deg, #f7efe6, #f0dac7);
  position: relative;
}

.nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.5rem, 5vw, 6rem);
  background: rgba(245, 242, 237, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero__lead {
  color: var(--text-light);
  max-width: 40ch;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__media {
  position: relative;
}

.hero__media img {
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 100%;
}

.hero__badge {
  position: absolute;
  bottom: 1rem;
  right: -1.5rem;
  background: var(--card);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero__badge strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
}

.section {
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
  background: var(--bg);
}

.section--features {
  background: var(--bg-alt);
}

.section--highlight {
  background: linear-gradient(120deg, #2f1f19, #5c3b2c);
  color: #fdf8f0;
}

.section--highlight h2,
.section--highlight p,
.section--highlight h3 {
  color: #fdf8f0;
}

.section--testimonials {
  background: var(--bg-alt);
}

.section__header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.eyebrow.light {
  color: var(--highlight);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.profile,
.testimonial {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-top: 0;
}

.profile {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 1.5rem;
}

.timeline article {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline__date {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
}

.testimonial {
  font-style: italic;
  background: #fff;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--text-light);
}

.section--cta {
  background: #fff8f1;
}

.form-embed {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 780px;
}

.form-embed iframe {
  width: 100%;
  min-height: 900px;
  border: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(180, 95, 60, 0.4);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn--ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(180, 95, 60, 0.1);
}

.footer {
  padding: 2rem clamp(1.5rem, 5vw, 6rem);
  text-align: center;
  background: #1f1411;
  color: #f8f3ed;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer a {
  color: #f8f3ed;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: absolute;
    top: 64px;
    right: 1.5rem;
    flex-direction: column;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero__badge {
    position: static;
    margin-top: 1rem;
    display: inline-block;
  }
}

