* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg-ink: #141414;
  --bg-sand: #f3efe8;
  --bg-mist: #f7f9fb;
  --accent: #a63a3a;
  --accent-dark: #7f2a2a;
  --text-main: #1b1b1b;
  --text-soft: #5f5f5f;
  --line: #ded7cf;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6%;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.top-nav .brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
  color: var(--text-main);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 6% 60px;
}

.hero-visual {
  background: linear-gradient(120deg, rgba(20, 20, 20, 0.3), rgba(255, 255, 255, 0.1)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  border-radius: var(--radius-lg);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #ffffff;
}

.hero-visual .tag {
  background: rgba(0, 0, 0, 0.45);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-copy p {
  color: var(--text-soft);
  max-width: 680px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(166, 58, 58, 0.1);
}

.section {
  padding: 56px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: var(--bg-sand);
}

.section.mist {
  background: var(--bg-mist);
}

.section.dark {
  background: var(--bg-ink);
  color: #f3f3f3;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.section-header p {
  color: inherit;
  opacity: 0.75;
  max-width: 700px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.08);
}

.story-card img {
  border-radius: var(--radius-sm);
  object-fit: cover;
  height: 220px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.highlight {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.panel img {
  border-radius: var(--radius-md);
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--line);
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
}

.service-card button {
  align-self: flex-start;
}

.sticky-cta {
  align-self: flex-start;
  position: sticky;
  top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #fff2f2;
  border: 1px solid #f1b7b7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.form-wrap label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  padding: 32px 6% 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-hero {
  padding: 48px 6% 24px;
  background: var(--bg-mist);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list-card {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
}

@media (min-width: 780px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-visual {
    flex: 1.1;
    min-height: 420px;
  }

  .hero-copy {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .testimonial-list {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column .list-card {
    flex: 1;
  }
}
