* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1c1a;
  --muted: #5b534f;
  --sand: #f4efe9;
  --linen: #efe7dd;
  --clay: #d9c7b3;
  --accent: #8b6a55;
  --deep: #3a2e28;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
}

a {
  color: var(--deep);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 18px 0 8px;
  background: #fff;
  border-bottom: 1px solid #eee2d8;
}

.top-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
}

.ad-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--deep);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.mag-section {
  padding: 56px 0;
}

.mag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.col {
  flex: 1 1 260px;
  min-width: 240px;
}

.col-wide {
  flex: 2 1 420px;
}

.col-narrow {
  flex: 1 1 180px;
}

.hero {
  background: var(--sand);
}

.hero-card {
  background: #fff;
  padding: 24px;
  border: 1px solid #efe2d6;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.section-title {
  font-size: 28px;
  margin: 0 0 16px;
}

.section-lede {
  color: var(--muted);
  line-height: 1.6;
}

.img-frame {
  background: var(--linen);
  padding: 10px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-grid.spaced {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #eadfd3;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.offset-section {
  background: #fff7f0;
}

.story-section {
  background: var(--linen);
}

.split-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-panel .text-panel {
  flex: 1 1 280px;
}

.split-panel .image-panel {
  flex: 1 1 280px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #eadfd3;
}

.form-shell {
  background: #fff;
  border: 1px solid #eadfd3;
  padding: 24px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 14px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9c7b3;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

.button {
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button-light {
  background: #e7dacd;
  color: var(--deep);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
}

.footer {
  background: #fff;
  border-top: 1px solid #eadfd3;
  padding: 32px 0 40px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.disclaimer {
  font-size: 13px;
  color: #6b5a52;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid #eadfd3;
  padding: 16px;
  max-width: 320px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.page-hero {
  background: #f7f1ea;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
}

.notice {
  padding: 16px;
  background: #f5ece4;
  border-left: 4px solid var(--accent);
}

.hero-visual {
  background: var(--clay);
  padding: 12px;
}

.bg-curtain {
  background-color: #8a6c5a;
  background-image: url("https://images.unsplash.com/photo-1754613411942-f2dee061753b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-curtain .hero-card {
  background: rgba(58, 46, 40, 0.88);
  color: #fff;
}

.bg-curtain p,
.bg-curtain .section-lede {
  color: #f2e7dd;
}

.bg-workshop {
  background-color: #5a4b43;
  background-image: url("https://images.unsplash.com/photo-1754611380518-61a923cc47ca?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-workshop .notice {
  background: rgba(247, 241, 234, 0.9);
  color: var(--deep);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
