* {
  box-sizing: border-box;
}

html {
  color: #211a16;
  background: #f8efe6;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

.seo-page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 40px);
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.brand,
.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.nav-link,
.button {
  border: 2px solid #211a16;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #211a16;
}

.nav-link {
  padding: 10px 16px;
  background: #fff8ed;
  font-size: 0.9rem;
}

.hero,
.content-grid,
.local,
.faq {
  border: 2px solid #211a16;
  border-radius: clamp(24px, 5vw, 48px);
  box-shadow: 8px 8px 0 #211a16;
}

.hero {
  padding: clamp(28px, 6vw, 76px);
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 199, 255, 0.85), transparent 28rem),
    radial-gradient(circle at 15% 90%, rgba(249, 196, 168, 0.82), transparent 24rem),
    #fff8ed;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 2px solid #211a16;
  border-radius: 999px;
  background: #211a16;
  color: #fff8ed;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 860px;
  font-size: clamp(2.6rem, 8vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.intro {
  margin-top: 28px;
  font-weight: 700;
}

.promise {
  color: #4b4039;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  padding: 14px 20px;
}

.primary {
  background: #f7c8af;
}

.secondary {
  background: #d9f0e4;
}

.content-grid,
.local,
.faq {
  margin-top: clamp(22px, 4vw, 36px);
  padding: clamp(24px, 5vw, 52px);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(22px, 4vw, 42px);
  background: #f7c8af;
}

.local {
  background: #d9f0e4;
}

.faq {
  background: #d8c7ff;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li,
details {
  border: 2px solid #211a16;
  border-radius: 18px;
  background: #fff8ed;
  box-shadow: 4px 4px 0 #211a16;
}

.service-list li {
  padding: 16px 18px;
  font-weight: 800;
}

details {
  margin-top: 14px;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .seo-nav,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .nav-link,
  .button {
    justify-content: center;
    width: 100%;
  }
}
