* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f23;
  --muted: #5a616a;
  --accent: #e0643b;
  --accent-dark: #c24d2b;
  --sand: #f3efe9;
  --stone: #e3ddd4;
  --night: #13151a;
  --mist: #f7f6f3;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  max-width: 70%;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 999px;
  color: var(--muted);
}

main {
  padding: 0 6vw 80px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--mist);
  padding: 70px 6vw;
  margin: 0 -6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding-top: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 2vw + 1.6rem, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: none;
  padding: 12px 22px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 28px;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.secondary-btn {
  background: var(--night);
  color: #fff;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent-dark);
}

.grid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.grid-list .pill {
  padding: 10px 16px;
  background: var(--sand);
  border-radius: 999px;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2a2f38;
  color: #fff;
  position: relative;
}

.bg-vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 21, 26, 0.6);
}

.bg-vision .content {
  position: relative;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd1d8;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

footer {
  padding: 50px 6vw;
  background: var(--night);
  color: #c7cbd1;
}

footer a {
  color: #f3f3f3;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.legal-page main {
  max-width: 900px;
  margin: 0 auto;
}

.subtle {
  color: var(--muted);
}
