* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5c5c5c;
  --accent: #3f5b7c;
  --accent-2: #b78a5d;
  --paper: #f5f1ec;
  --soft: #e5e0d8;
  --deep: #121821;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 28px 6vw 12px;
  gap: 24px;
  border-bottom: 1px solid var(--soft);
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 64px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 32px;
  width: 42%;
  height: 70%;
  background: var(--paper);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero-copy {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  background: #ffffff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--paper);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn-accent:hover {
  background: #2f4866;
}

.hero-image {
  align-self: flex-end;
  width: min(520px, 90vw);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 54px 6vw;
}

.section-title {
  font-size: 1.8rem;
  margin: 0 0 14px;
}

.section-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--paper);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.highlight {
  background: var(--deep);
  color: #ffffff;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list span {
  font-weight: 600;
  color: var(--accent);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  border: 1px solid var(--soft);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-card {
  border-radius: 22px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.radio-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--soft);
  border-radius: 12px;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--soft);
  font-size: 0.95rem;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.cta-strip {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 32px 6vw 40px;
  border-top: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid var(--soft);
  padding: 16px;
  border-radius: 14px;
  display: none;
  gap: 12px;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.small-muted {
  font-size: 0.85rem;
  color: var(--muted);
}

.content-page {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 6vw 64px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.soft-panel {
  background: var(--paper);
  border-radius: 16px;
  padding: 20px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .gallery-row,
  .pricing {
    flex-direction: row;
  }

  .gallery-row img,
  .price-card {
    flex: 1;
  }

  .form-wrap {
    flex-direction: row;
  }

  .form-card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
  }

  .cta-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
