* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1a1a;
  --muted: #585050;
  --accent: #0f4c81;
  --accent-2: #b44b2d;
  --surface: #f6f3f0;
  --surface-2: #efe7df;
  --line: #ded5cc;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 6vw 1rem;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand span {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  position: absolute;
  right: 6vw;
  top: 4.5rem;
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.section {
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.tint {
  background: var(--surface);
}

.section.tone {
  background: var(--surface-2);
}

.section-header {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-header h1,
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.section-header p {
  color: var(--muted);
}

.asym-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.asym-split.reverse {
  flex-direction: column-reverse;
}

.asym-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offset-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.offset-card.small {
  padding: 1.2rem;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  border-color: transparent;
  color: var(--accent-2);
}

.btn:focus-visible,
.btn:hover {
  transform: translateY(-2px);
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.list-grid .card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: #fff;
}

.card strong {
  font-size: 1.1rem;
}

.price {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1.05rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.media-card .content {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: var(--muted);
}

.footer {
  padding: 2.5rem 6vw;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: #fff;
  padding: 1.6rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.table-like .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.table-like .row span {
  color: var(--muted);
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .section {
    padding: 5rem 10vw;
  }

  .asym-split {
    flex-direction: row;
    align-items: stretch;
  }

  .asym-split.reverse {
    flex-direction: row-reverse;
  }

  .list-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .list-grid .card {
    flex: 1 1 260px;
  }

  .two-col {
    flex-direction: row;
  }
}
