* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2328;
  --muted: #5a6470;
  --accent: #d97842;
  --accent-dark: #b86334;
  --bg: #f6f2ec;
  --bg-alt: #eef1f4;
  --bg-deep: #1b1f23;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(31, 35, 40, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 6vw 120px;
}

header {
  padding: 24px 6vw 12px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(31, 35, 40, 0.12);
  padding-bottom: 18px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-block span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.brand-block h1 {
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 35, 40, 0.06);
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(31, 35, 40, 0.14);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 180px;
  text-align: right;
}

.section-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.section-intro h2 {
  font-size: 34px;
  line-height: 1.15;
}

.section-intro p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(217, 120, 66, 0.12);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.asym-panel {
  flex: 1 1 320px;
  background: var(--card);
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.asym-panel.offset {
  transform: translateY(18px);
}

.img-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #e2d5c7;
}

.img-frame.tall {
  height: 420px;
}

.img-frame.medium {
  height: 320px;
}

.img-frame.short {
  height: 220px;
}

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.stack-card.highlight {
  background: var(--bg-alt);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.wide-panel {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.form-block {
  background: var(--card);
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 35, 40, 0.18);
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.pricing-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card .img-frame {
  height: 160px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-right: 6vw;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-col .col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  background: var(--bg-deep);
  color: #f1f4f8;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: #f1f4f8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cbd2da;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  width: 320px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 6vw 0;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.contact-block {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .ad-label {
    max-width: none;
    text-align: left;
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    margin-right: 0;
    align-self: center;
  }
}
