* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f2ed;
  --ink: #1f1a17;
  --muted: #6a5e55;
  --accent: #c45b3d;
  --accent-dark: #8f3f2a;
  --light: #ffffff;
  --sand: #efe6dc;
  --olive: #4e5b42;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  width: 240px;
  padding: 32px 24px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e5ddd4;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  margin-top: auto;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 72px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--hero {
  background: url("https://images.unsplash.com/photo-1495195134817-aeb325a55b65?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  color: var(--light);
  position: relative;
  min-height: 70vh;
  justify-content: center;
}

.hero-overlay {
  background: rgba(19, 12, 8, 0.55);
  padding: 56px;
  max-width: 640px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-overlay h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: var(--light);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--light);
}

.section--split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section--editorial {
  background: var(--light);
  align-items: center;
}

.editorial-body {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section--cards {
  background: var(--sand);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.section--contrast {
  background: var(--olive);
  color: var(--light);
}

.section--contrast .btn {
  background: var(--light);
  color: var(--olive);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 16px;
}

.section--gallery {
  background: var(--light);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery img {
  flex: 1 1 200px;
  border-radius: 18px;
  height: 200px;
  object-fit: cover;
}

.section--pricing {
  background: var(--sand);
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-dark);
}

.section--form {
  background: var(--light);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d7cbbf;
  font-size: 15px;
  font-family: inherit;
}

.section--faq {
  background: var(--bg);
}

.faq-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--light);
  padding: 18px 20px;
  border-radius: 14px;
}

.footer {
  padding: 40px 8vw;
  background: #1a1412;
  color: var(--light);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  color: #f0e6dc;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--light);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
  max-width: 360px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d7cbbf;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.accept {
  background: var(--accent);
  color: var(--light);
  border-color: transparent;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  flex: 1 1 220px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #e5ddd4;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section--split {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
