@font-face {
  font-family: "InterFallback";
  src: local("Inter"), local("Segoe UI"), local("Arial");
}

:root {
  --ink: #1d1a16;
  --soft-ink: #4a433b;
  --cream: #f7f2ea;
  --linen: #f0e6da;
  --rose: #b4554a;
  --sage: #6a7a6a;
  --gold: #c59b4f;
  --shadow: rgba(20, 18, 14, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "InterFallback", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 10px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--rose);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--linen);
}

.section.deep {
  background: #efe4d1;
}

.section.shadowed {
  box-shadow: 0 28px 60px var(--shadow);
  margin: 0 4vw;
  border-radius: 26px;
  background: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}

.panel {
  flex: 1;
}

.panel.narrow {
  flex: 0.9;
}

.panel h1,
.panel h2,
.panel h3 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--sage);
}

.lead {
  font-size: 1.1rem;
  color: var(--soft-ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--rose);
  border: 1px solid var(--rose);
}

.btn:hover {
  transform: translateY(-1px);
}

.inline-link {
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5d6c5;
  font-size: 0.9rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--rose);
  font-size: 1.1rem;
}

.quote {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: #fff7eb;
}

.form-card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9c7b2;
  background: #fff;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.cta-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(26, 20, 10, 0.2);
  z-index: 5;
}

.footer {
  padding: 40px 6vw;
  background: #14110d;
  color: #f8f3ea;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f8f3ea;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 38px var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-visible {
  display: flex;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini {
  font-size: 0.9rem;
  color: var(--soft-ink);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-frame {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 18px 38px var(--shadow);
}
