* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1f1f;
  --muted: #5c5c5c;
  --paper: #f7f4ef;
  --paper-deep: #efe6da;
  --accent: #0f6b5f;
  --accent-2: #b8572c;
  --line: #e1d6c8;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf3;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--line);
}

.hero {
  position: relative;
  color: #fff;
  padding: 140px 0 120px;
  background-size: cover;
  background-position: center;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 23, 25, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
}

.button.secondary {
  background: var(--accent-2);
}

.button.light {
  background: #fff;
  color: var(--ink);
}

.button:hover {
  filter: brightness(1.05);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--paper);
}

.section.deep {
  background: var(--paper-deep);
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #e7dfd6;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 16px;
  background: #e6e0d9;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.callout {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.pricing-card h3 {
  margin-top: 0;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 40px 0 120px;
  background: #141414;
  color: #eee;
}

.footer a {
  color: #eee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer small {
  color: #c7c7c7;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  background: #fff;
  padding: 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sticky-cta button {
  padding: 10px 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.notice {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 80px 0;
  background: var(--paper);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.panel-sourcing {
  background-image: url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?w=1400&q=80");
}

.panel-atelier {
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
}

.panel-trail {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.55);
}

.background-panel > * {
  position: relative;
  z-index: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.hidden {
  display: none;
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
