* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f0;
  --ink: #1f2528;
  --muted: #5b6368;
  --accent: #2d6a6b;
  --accent-2: #7a4a3a;
  --panel: #ffffff;
  --soft: #ece7e0;
  --line: #d8d1c8;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6vw 18px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 600;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a:focus {
  border-color: var(--accent);
}

main {
  flex: 1;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px 6vw 70px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.media-frame {
  flex: 1;
  background: var(--soft);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  min-height: 320px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  gap: 32px;
  padding: 60px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  max-width: 520px;
}

.split .text h2 {
  margin-top: 0;
  font-size: 2rem;
}

.split .text p {
  margin-bottom: 18px;
  color: var(--muted);
}

.split .text .inline-link {
  color: var(--accent);
  font-weight: 600;
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.testimonial {
  font-style: italic;
  background: var(--soft);
  padding: 20px;
  border-radius: 18px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

button:hover,
button:focus {
  opacity: 0.9;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1b1f21;
  color: #f2f1ee;
}

.footer a {
  color: #f2f1ee;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-note {
  font-size: 0.9rem;
  color: #c9c2b8;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: var(--accent);
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    align-items: flex-start;
  }

  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    text-align: center;
  }
}
