@charset "UTF-8";

:root {
  --bg: #f7f2ed;
  --dark: #221e1a;
  --accent: #b66563;
  --accent-soft: #e6c7c0;
  --muted: #6f6762;
  --light: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 20px 6vw 50px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.panel.media {
  border-radius: 20px;
  overflow: hidden;
  background: var(--accent-soft);
  min-height: 260px;
}

.panel.media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.section {
  padding: 54px 6vw;
}

.section.tone {
  background: var(--light);
}

.section.accent {
  background: var(--accent);
  color: var(--light);
}

.section.accent .button {
  background: var(--light);
  color: var(--dark);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.button.block {
  width: 100%;
}

.tagline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--dark);
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--light);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 220px;
  box-shadow: 0 10px 25px rgba(34, 30, 26, 0.08);
}

.card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(34, 30, 26, 0.12);
}

.price-row:last-child {
  border-bottom: none;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  font-style: italic;
  margin: 0;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card {
  background: var(--light);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(34, 30, 26, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(34, 30, 26, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #1f1b17;
  color: #f7f2ed;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f1b17;
  color: #f7f2ed;
  padding: 18px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  padding: 10px 18px;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual img {
  border-radius: 24px;
  object-fit: cover;
  height: 100%;
}

.stacked-images {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stacked-images img {
  flex: 1 1 180px;
  border-radius: 18px;
  height: 170px;
  object-fit: cover;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .nav {
    padding: 30px 8vw 10px;
  }

  .section {
    padding: 70px 8vw;
  }

  .hero {
    padding: 30px 8vw 60px;
  }

  .content-wrap {
    max-width: 1100px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
