.root {
  --bg: #f4f3ef;
  --ink: #1b1f1c;
  --muted: #4c5a50;
  --accent: #2e6b4d;
  --accent-soft: #dfe7dc;
  --sand: #efe7d8;
  --fog: #e7ece9;
  --stone: #c9d2cc;
  --sun: #f2d796;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--sun);
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 8vw 12px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.86rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.nav-links a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 8vw 80px;
  gap: 32px;
  background: var(--fog);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 560px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--sand);
}

.section.fog {
  background: var(--fog);
}

.section.bg-journey {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #102018;
}

.section.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1c14;
}

.section.bg-lab {
  background-image: url("https://images.unsplash.com/photo-1470246973918-29a93221c455?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1c14;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  background: var(--accent-soft);
  padding: 12px;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
}

.image-frame img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.offset-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 420px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  object-fit: cover;
  height: 160px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.sticky-panel {
  display: flex;
  flex: 1 1 260px;
  align-self: flex-start;
  position: sticky;
  top: 16px;
  background: var(--sun);
  padding: 20px;
  border-radius: 18px;
  gap: 12px;
  flex-direction: column;
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding: 40px 8vw;
  background: #111;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #c9c9c9;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 340px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
}

.hidden {
  display: none;
}

.legal-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.contact-card {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.thanks-box {
  background: var(--sand);
  border-radius: 18px;
  padding: 26px;
  max-width: 600px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    text-align: left;
  }

  .nav-links.open {
    display: flex;
  }

  .sticky-panel {
    position: static;
  }
}
