* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d20;
  --muted: #5a5f66;
  --accent: #2b6f6a;
  --accent-soft: #d7ebe9;
  --sand: #f3f1ed;
  --lavender: #efecf9;
  --sun: #f4efe4;
  --shadow: 0 20px 50px rgba(18, 20, 26, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 28px 6vw 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 6vw 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6vw 90px;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 30, 0.48);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
}

.btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.panel.soft {
  background: var(--sand);
  box-shadow: none;
}

.panel.lavender {
  background: var(--lavender);
  box-shadow: none;
}

.offset-card {
  margin-top: -50px;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #e1e5ea;
  min-height: 320px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe5ec;
}

.card img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.highlight {
  padding: 32px;
  background: var(--sun);
  border-radius: 26px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9dde3;
  background: #ffffff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd6de;
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  padding: 50px 6vw 70px;
  background: #15171b;
  color: #e7eaee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-hero {
  padding: 50px 6vw 30px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.text-block {
  max-width: 820px;
}

.gridless {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 16px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contrast {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-contrast .panel {
  background: rgba(18, 20, 26, 0.75);
  color: #ffffff;
  box-shadow: none;
}

.section-background {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-background .split {
  gap: 28px;
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier .panel {
  background: rgba(255, 255, 255, 0.9);
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.plain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
