* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1a17;
  --muted: #5c5854;
  --accent: #c3743c;
  --accent-dark: #8e5128;
  --paper: #f7f2ee;
  --stone: #efe7e1;
  --shadow: rgba(0, 0, 0, 0.08);
  --olive: #2c3a2f;
  --sand: #f1e8df;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 28px 6vw 18px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.nav-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 38px 6vw 46px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  z-index: 0;
}

.hero-text {
  flex: 1 1 340px;
  position: relative;
  z-index: 1;
  padding: 18px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  max-width: 500px;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
}

.image-frame {
  background: var(--stone);
  padding: 10px;
  box-shadow: 0 16px 40px var(--shadow);
}

.image-frame img {
  width: 100%;
  border-radius: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.spaced {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 40px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--sand);
}

.section {
  padding: 48px 6vw;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section-lead {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 24px;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 50px var(--shadow);
}

.offset-highlight {
  font-weight: 600;
  color: var(--accent-dark);
}

.story-section {
  background: var(--sand);
}

.bg-atelier {
  background-color: #e8ded4;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-atelier .section-lead {
  color: #f2e9e0;
}

.bg-atelier .offset-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.bg-night {
  background-color: #1e1c1a;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f3ef;
}

.bg-night .section-lead {
  color: #eee3d8;
}

.story-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 10px 28px var(--shadow);
}

.trusted {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-box {
  flex: 1 1 200px;
  background: var(--paper);
  padding: 18px;
  border-radius: 14px;
}

.pricing-section {
  background: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border 0.2s ease, transform 0.2s ease;
  font: inherit;
  text-align: left;
}

.service-card:hover,
.service-card:focus-within {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-card img {
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--olive);
}

.form-section {
  background: var(--paper);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-pane {
  flex: 1 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 38px var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border: 1px solid #d8d0c9;
  border-radius: 10px;
  font-size: 1rem;
}

.field textarea {
  min-height: 90px;
}

.form-message {
  color: var(--accent-dark);
  font-weight: 600;
}

.aside-banner {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 22px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5;
}

.sticky-cta .btn {
  box-shadow: 0 18px 30px var(--shadow);
}

.page-footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #14110f;
  color: #f8f3ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.small-note {
  font-size: 0.9rem;
  color: #d9d2cc;
}

.legal-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 36px var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-simple {
  padding: 40px 6vw 60px;
}

.page-simple h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.page-simple h2 {
  margin: 22px 0 10px;
}

.page-simple p,
.page-simple li {
  color: var(--muted);
}

.page-simple ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .hero {
    padding-top: 20px;
  }
}
