* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f2ed;
  --ink: #1d1b19;
  --muted: #6b645c;
  --accent: #7a4cff;
  --accent-dark: #4e2cb8;
  --sand: #efe6dd;
  --stone: #d9d1c7;
  --shadow: 0 24px 60px rgba(29, 27, 25, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 5vw 1.5rem;
  position: relative;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand span {
  font-size: 0.95rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--muted);
}

.brand h1 {
  font-size: 2rem;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.nav a {
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 5vw 4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1503428593586-e225b39bddfe?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 620px;
}

.hero h2 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn.secondary {
  background: white;
  border-color: white;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3.5rem 5vw;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-card {
  background: white;
  padding: 2rem;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.split-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.split-card p {
  color: var(--muted);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.image-stack img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.highlight-band {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--sand);
  padding: 3rem 5vw;
  position: relative;
}

.highlight-band::after {
  content: "";
  position: absolute;
  top: -30px;
  right: 6vw;
  width: 120px;
  height: 120px;
  background: var(--accent);
  opacity: 0.18;
  border-radius: 32px;
}

.band-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.band-item {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.band-item h4 {
  font-size: 1.2rem;
}

.story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 5vw;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  background: var(--stone);
  border-radius: 2rem;
  padding: 2rem;
}

.story-card span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 5vw;
  background: white;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
}

.service-card h4 {
  font-size: 1.4rem;
}

.service-card p {
  color: var(--muted);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
}

.cta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 5vw;
  background: var(--sand);
}

.form-card {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--stone);
  font-size: 1rem;
  background: var(--bg);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3.5rem 5vw 4rem;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gallery-row img {
  border-radius: 1.5rem;
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--accent);
  color: white;
  padding: 3rem 5vw;
  position: relative;
}

.cta-block a {
  color: white;
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 5vw 3rem;
  background: #1f1c19;
  color: #f8f4f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #f8f4f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent-dark);
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: white;
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.inner-page {
  padding: 3rem 5vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.inner-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--sand);
  padding: 2.5rem;
  border-radius: 2rem;
}

.inner-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
}

.thanks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 4rem 5vw 5rem;
}

.thanks span {
  font-weight: 600;
  color: var(--accent-dark);
}

@media (min-width: 860px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 520px;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .image-stack {
    width: 50%;
  }

  .split-card {
    width: 50%;
  }

  .band-grid {
    flex-direction: row;
  }

  .band-item {
    flex: 1;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1.5rem);
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
  }

  .inner-grid {
    flex-direction: row;
  }

  .inner-grid > * {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
