:root {
  --bg: #ffffff;
  --bg-alt: #faf7f2;
  --text: #241a10;
  --muted: #6e6152;
  --brand: #84532d;
  --brand-dark: #68411f;
  --gold: #d69d4a;
  --border: #e9e1d4;
  --radius: 12px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
h1,
h2,
h3 {
  font-family: "Lexend", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  min-height: 48px;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-dark);
}
.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--brand);
  font-family: "Lexend", sans-serif;
  margin-bottom: 10px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: baseline;
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.logo .b {
  color: var(--text);
}
.logo .e {
  color: var(--brand);
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brand);
}
.nav-links .btn {
  padding: 9px 20px;
  min-height: 40px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 860px) {
  .nav-links li:not(.nav-cta) {
    display: none;
  }
}
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 6px;
  color: var(--border);
}
.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--brand);
}
.page-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
  max-width: 820px;
  margin-bottom: 16px;
}
.page-hero p.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 30px;
}
.page-hero .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.page-hero .meta-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.page-hero .meta-row .m {
  font-size: 14px;
  color: var(--muted);
}
.page-hero .meta-row .m b {
  font-family: "Lexend", sans-serif;
  font-size: 19px;
  color: var(--brand);
  display: block;
}
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.section.alt {
  background: var(--bg-alt);
}
.section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}
.prose {
  max-width: 780px;
}
.prose p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.03rem;
}
.prose p b,
.prose p strong {
  color: var(--text);
}
.prose ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
}
.prose li {
  margin-bottom: 8px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}
.check-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 20px 0 8px;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15.5px;
}
.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.check-list b {
  color: var(--text);
}
.check-list span {
  color: var(--muted);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 7px;
}
.card h3 a {
  text-decoration: none;
}
.card h3 a:hover {
  color: var(--brand);
}
.card p {
  font-size: 14.5px;
  color: var(--muted);
}
.card .price {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
}
.card .price b {
  font-family: "Lexend", sans-serif;
  font-size: 18px;
  color: var(--brand);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  background: #fff;
}
.step .n {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
}
.store-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.store-badges img {
  height: 48px;
  width: auto;
}
.store-badges a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}
.faq-list {
  max-width: 780px;
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 20px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: "–";
}
.faq-list details p {
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--muted);
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: #fff;
  text-decoration: none;
}
.cta-band {
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 1.04rem;
}
.cta-band .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
footer {
  padding: 52px 0 40px;
  background: #fff;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.foot .logo {
  font-size: 20px;
}
.foot-links {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.foot-links div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-links h4 {
  font-family: "Lexend", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 4px;
}
.foot-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--text);
}
.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
