* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5b5f63;
  --accent: #2e6f67;
  --accent-2: #b07c42;
  --surface: #f7f3ee;
  --surface-2: #eef1ef;
  --surface-3: #f1e7dc;
  --line: #d7d2cb;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 6vw 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--surface-3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 20px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-visual {
  flex: 1 1 360px;
  min-height: 360px;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--surface-2);
}

.section.soft {
  background: var(--surface);
}

.section.tone {
  background: var(--surface-3);
}

.section-title {
  font-size: 1.5rem;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-row .copy {
  flex: 1 1 320px;
}

.asym-row .visual {
  flex: 1 1 260px;
  min-height: 260px;
  background: var(--surface-3);
  border-radius: 20px;
  overflow: hidden;
}

.note {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  background: var(--surface-2);
  border-radius: 12px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  padding: 32px 6vw 50px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.sidebar-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sidebar {
  flex: 0 1 240px;
  background: var(--surface-2);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  flex: 1 1 420px;
}

.image-frame {
  background: var(--surface-3);
  border-radius: 18px;
  overflow: hidden;
}
