:root {
  --bg: #f6f4f1;
  --ink: #1f2328;
  --muted: #5b6168;
  --accent: #1d6f8b;
  --accent-2: #c76d2b;
  --paper: #ffffff;
  --sand: #efe6db;
  --sage: #e3ece7;
  --shadow: rgba(31, 35, 40, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 24px 6vw 80px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .content,
.section .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.section .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  background: var(--paper);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px var(--shadow);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.media {
  background: #d7ddd6;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-media {
  background: #dfd4c8;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.note {
  padding: 18px;
  background: var(--sage);
  border-radius: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
  align-items: center;
  justify-content: space-between;
}

.price-row .details {
  max-width: 520px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.alt {
  background: var(--accent-2);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
}

.form-shell {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c8cbd0;
  font-size: 1rem;
}

footer {
  background: #1f2328;
  color: #f5f5f5;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer a {
  color: #d2e8f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 12px 24px var(--shadow);
}

.banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--paper);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.banner p {
  margin: 0;
  flex: 1 1 220px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-column > div {
  flex: 1 1 320px;
}

.inline-testimonial {
  padding: 14px;
  background: #fef7ee;
  border-radius: 14px;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-image {
  background: #d3dbdf;
}

.image-frame {
  background: #e7e0d6;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.references {
  font-size: 0.9rem;
  color: #cfd7de;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
