/* Base */
:root {
  --bg: #f6f2ee;
  --ink: #1c1b19;
  --accent: #6b4f3f;
  --accent-dark: #4e372b;
  --soft: #efe7df;
  --highlight: #e2d1c3;
  --mint: #d7e6df;
  --paper: #fffdfa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
  gap: 12px;
}

.top-nav .logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 48px;
}

.hero .hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero .hero-overlay {
  background: rgba(255, 253, 250, 0.92);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--highlight);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section.alt {
  background: var(--soft);
}

.section.mint {
  background: var(--mint);
}

.section .split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section .split.reverse {
  flex-direction: column-reverse;
}

.section .cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--highlight);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--highlight);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--highlight);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbdb1;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 10;
  font-size: 0.95rem;
}

.footer {
  padding: 32px 6vw;
  background: #181614;
  color: #f7f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f7f3ef;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  padding: 32px 6vw 16px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.content {
  padding: 24px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--highlight);
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--highlight);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-copy,
  .hero .hero-media {
    flex: 1;
  }

  .section .split {
    flex-direction: row;
    align-items: center;
  }

  .section .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service {
    flex: 1 1 240px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
