/* Base */
:root {
  --ink: #1e1a17;
  --ink-muted: #5a4e45;
  --mist: #f7f3ee;
  --moss: #3c5b44;
  --clay: #c97b5a;
  --cream: #fff8f1;
  --stone: #e6ddd3;
  --shadow: 0 16px 40px rgba(28, 22, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.magazine-col {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.panel.light {
  background: #fff;
}

.panel.dark {
  background: var(--ink);
  color: #fff;
}

.panel.dark a {
  color: #fff;
}

.tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink-muted);
}

.eyebrow {
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.display {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 18px;
}

.muted {
  color: var(--ink-muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--moss);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta.secondary {
  background: transparent;
  color: var(--moss);
  border-color: var(--moss);
}

.cta.ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(60, 91, 68, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--moss);
}

.hero {
  padding: 30px 0 0;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.aside-note {
  padding: 18px 20px;
  border-left: 4px solid var(--clay);
  background: #fff2e7;
  border-radius: 14px;
}

.split-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-grid .card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.tapestry {
  background: url("../img/pattern.svg") center/cover no-repeat;
  padding: 56px 0;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--stone);
}

.price-item span {
  font-weight: 700;
  color: var(--moss);
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-start;
  background: var(--ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
}

button {
  cursor: pointer;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stone);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--moss);
  background: var(--moss);
  color: #fff;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--moss);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-strip img {
  flex: 1 1 180px;
  border-radius: 18px;
  min-height: 160px;
  object-fit: cover;
}

.sidebar-note {
  border-left: 1px solid var(--stone);
  padding-left: 20px;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sticky-cta {
    position: static;
    align-self: stretch;
  }
}
