* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1c1a17;
  --muted: #5a554d;
  --accent: #b1452e;
  --accent-dark: #8c3522;
  --soft: #efe7dc;
  --paper: #ffffff;
  --shadow: rgba(20, 16, 10, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 20px 6vw 12px;
  border-bottom: 1px solid #ddd4c9;
  background: var(--paper);
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.tagline {
  flex: 1;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.page {
  padding: 28px 6vw 80px;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.col-60 {
  flex: 1 1 320px;
  min-width: 300px;
}

.col-40 {
  flex: 1 1 240px;
  min-width: 240px;
}

.section {
  margin: 36px 0;
}

.section-alt {
  background: var(--soft);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px var(--shadow);
}

.section-paper {
  background: var(--paper);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 26px var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px var(--shadow);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px var(--shadow);
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fdfbf8;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc3;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.split-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.site-footer {
  padding: 28px 6vw 40px;
  border-top: 1px solid #ddd4c9;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f1b16;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f0c556;
  color: #1f1b16;
}

.cookie-reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  min-height: 320px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
}

.hero-image span {
  background: rgba(28, 26, 23, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.two-up {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-up > div {
  flex: 1 1 220px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #f0e4d5;
  color: #744031;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-card {
  background: var(--paper);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 22px var(--shadow);
}

@media (min-width: 860px) {
  .split-form {
    flex-direction: row;
  }

  .split-form > div {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
