* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f1;
  --ink: #1b1d1f;
  --muted: #5a6167;
  --accent: #2d5b6f;
  --accent-2: #c87f4a;
  --light: #ffffff;
  --soft: #ece7df;
  --shadow: 0 12px 30px rgba(20, 20, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 8vw 18px;
  background: var(--light);
  box-shadow: var(--shadow);
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--soft);
  color: var(--muted);
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 15px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
}

.nav a.action {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-toggle {
  display: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--soft);
  background: var(--light);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px 8vw 70px;
  gap: 30px;
}

.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.hero-copy p {
  color: var(--muted);
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.button.alt {
  background: var(--accent-2);
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  background: #d9d1c5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
}

.offset-card {
  align-self: flex-end;
  max-width: 280px;
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.section {
  padding: 50px 8vw;
}

.section.alt {
  background: var(--light);
}

.section.backdrop {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--light);
}

.section.backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 23, 25, 0.55);
}

.section.backdrop > * {
  position: relative;
}

.section.tight {
  padding: 30px 8vw;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
}

.story-block {
  flex: 1 1 240px;
  background: var(--soft);
  padding: 20px;
  border-radius: 18px;
}

.story-block strong {
  display: block;
  margin-bottom: 8px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.card {
  flex: 1 1 230px;
  background: var(--light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 20px;
  color: var(--accent);
}

.accent-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.accent-text {
  flex: 1 1 260px;
}

.accent-image {
  flex: 1 1 260px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #cfd6dc;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

form {
  flex: 1 1 320px;
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d5d2cc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soft);
  padding: 18px;
  border-radius: 18px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  background: var(--accent-2);
  color: var(--light);
  border-radius: 999px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 30px 8vw 40px;
  background: var(--ink);
  color: var(--light);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  color: var(--light);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 18px;
  background: var(--light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid var(--soft);
  background: var(--soft);
}

.cookie-button.accept {
  background: var(--accent);
  color: var(--light);
  border-color: var(--accent);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.notice {
  background: #fff3e6;
  border-left: 4px solid var(--accent-2);
  padding: 14px 16px;
  border-radius: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
  }

  .nav.open {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
