/* Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f1f1f;
  background: #f8f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  padding: 24px 0;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f1f1f;
}

/* Split sections */
.split-section {
  padding: 72px 0;
  position: relative;
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-inner.reverse {
  flex-direction: column;
}

.split-content,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  align-items: center;
  justify-content: center;
}

.split-section.alt {
  background: #efe8de;
}

.split-section.dark {
  background: #1d1b1a;
  color: #f9f4ef;
}

.split-section.dark a {
  color: #f9f4ef;
}

.hero {
  background: linear-gradient(120deg, #f8f1e7 0%, #f1dfd1 100%);
}

.label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #715d4b;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.lead {
  font-size: 1.1rem;
}

.btn {
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: #1f1f1f;
  color: #f9f4ef;
}

.btn.secondary {
  background: #f9f4ef;
  color: #1f1f1f;
  border: 1px solid #1f1f1f;
}

.btn.accent {
  background: #d5794b;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
}

.quote {
  padding: 18px;
  border-left: 4px solid #d5794b;
  background: rgba(255, 255, 255, 0.1);
}

.note-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc2b4;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.9rem;
  color: #61544a;
}

.footer {
  padding: 40px 0 80px;
  background: #171513;
  color: #f9f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  background: #d5794b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1f1f1f;
  color: #f9f4ef;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #d5794b;
  color: #fff;
}

.cookie-reject {
  background: #f9f4ef;
  color: #1f1f1f;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split-inner.reverse {
    flex-direction: row-reverse;
  }

  .two-col {
    flex-direction: row;
  }
}
