* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b1a;
  --muted: #605b56;
  --accent: #b4552b;
  --accent-dark: #8f3f1b;
  --soft: #f4efe9;
  --soft-2: #efe5da;
  --soft-3: #e6d8c8;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #faf7f3;
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px 6vw;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--ink);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 6vw 120px 6vw;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.split {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section .text-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section .media-col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero {
  background: var(--soft);
  padding: 48px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(180, 85, 43, 0.12);
  top: -80px;
  right: -60px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 620px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.inline-link:hover {
  border-color: var(--accent-dark);
}

.accent-block {
  background: var(--soft-2);
  padding: 28px;
  border-radius: 24px;
}

.accent-block.dark {
  background: var(--ink);
  color: var(--white);
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(29, 27, 26, 0.08);
  position: relative;
  top: 14px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(29, 27, 26, 0.06);
}

.service-item span {
  font-weight: 600;
}

.service-item em {
  font-style: normal;
  color: var(--accent-dark);
  font-weight: 700;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-3);
  font-size: 0.85rem;
}

.form-wrap {
  background: var(--soft);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9cfc3;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(29, 27, 26, 0.06);
}

.footer {
  border-top: 1px solid #e3dad0;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(180, 85, 43, 0.3);
  font-weight: 600;
  z-index: 40;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(29, 27, 26, 0.14);
  display: none;
  z-index: 50;
  gap: 16px;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--soft-3);
  padding: 24px;
  border-radius: 24px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-stack .offset {
  margin-left: 24px;
}

@media (min-width: 768px) {
  .two-col {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1 1 240px;
  }

  .cookie-banner.active {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner p {
    flex: 1 1 60%;
  }
}
