* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #595959;
  --accent: #c95f3f;
  --accent-dark: #9d452b;
  --soft: #f6f1ed;
  --paper: #ffffff;
  --shadow: 0 24px 60px rgba(26, 26, 26, 0.12);
  --radius: 26px;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 0 12px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--soft);
}

.section--stage {
  background-image: linear-gradient(rgba(20, 20, 20, 0.45), rgba(20, 20, 20, 0.45)),
    url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section--stage .meta,
.section--stage p {
  color: #f2ede9;
}

.section--glow {
  background-image: radial-gradient(circle at top left, rgba(201, 95, 63, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(26, 26, 26, 0.08), transparent 50%);
}

.section--tight {
  padding: 44px 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-26px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stack-large {
  gap: 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: #efe3dd;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #eee5e0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial {
  background: #141414;
  color: #fff;
  padding: 28px;
  border-radius: 26px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-shell {
  background: #fff;
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #ded3ce;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #101010;
  color: #fff;
  padding: 48px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 100;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 280px;
  z-index: 200;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #eee5e0;
  color: var(--ink);
}

.hero-media {
  position: relative;
}

.hero-media .floating-note {
  position: absolute;
  bottom: -24px;
  right: 16px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  max-width: 220px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.muted-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.aside-rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  background: #f7e9e1;
}

.split-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.data-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.data-row div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eee5e0;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero > div {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .gallery-row {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .data-row {
    flex-direction: row;
  }

  .aside-rail {
    max-width: 280px;
  }
}
