*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --bg-dark: #1f1c19;
  --accent: #d66a4a;
  --accent-dark: #b3533a;
  --text: #1f1c19;
  --muted: #6c5f55;
  --card: #fffaf5;
  --line: rgba(31, 28, 25, 0.12);
  --soft: rgba(214, 106, 74, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--text);
  font-size: 14px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 40px 0 60px;
}

.hero-content {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(31, 28, 25, 0.12);
}

.hero-visual {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-visual img {
  border-radius: 32px;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.offset-badge {
  position: absolute;
  top: 10%;
  right: -8%;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(214, 106, 74, 0.35);
}

.section {
  padding: 60px 0;
}

.section.asym {
  position: relative;
}

.section.asym::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--soft);
  transform: rotate(-1.2deg);
  z-index: -1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.title {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0;
  line-height: 1.1;
}

.subtitle {
  font-size: 18px;
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background: white;
  font-size: 14px;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: white;
  border-color: transparent;
}

.button.ghost {
  background: transparent;
  border-color: var(--text);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(31, 28, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.timeline-step {
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.floating-quote {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(31, 28, 25, 0.1);
  max-width: 320px;
}

.form-section {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0;
}

.form-wrap {
  background: #2a2420;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-option {
  flex: 1 1 200px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  cursor: pointer;
}

.service-option input {
  margin-right: 8px;
}

.service-option.selected {
  border-color: var(--accent);
  background: rgba(214, 106, 74, 0.2);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-message {
  font-size: 13px;
  color: #f3c5b6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(31, 28, 25, 0.2);
  font-size: 14px;
  z-index: 5;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.policy {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(31, 28, 25, 0.08);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: white;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: white;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(31, 28, 25, 0.18);
  max-width: 320px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid var(--line);
}

.note {
  background: var(--soft);
  border-radius: 18px;
  padding: 16px;
}

.image-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-stack img:first-child {
  transform: rotate(-2deg);
}

.image-stack img:last-child {
  position: absolute;
  width: 55%;
  bottom: -10%;
  right: -6%;
  border: 6px solid var(--bg);
  transform: rotate(4deg);
}

@media (max-width: 920px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
