* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d22;
  --muted: #5a6370;
  --accent: #8b2738;
  --accent-dark: #6c1d2c;
  --paper: #f6f3ef;
  --wash: #eef1f5;
  --stone: #e5e0da;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
}

.primary-cta {
  padding: 10px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
}

.primary-cta:hover,
.primary-cta:focus {
  background: var(--accent-dark);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--wash);
}

.section.stone {
  background: var(--stone);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  max-width: 560px;
}

.split .visual {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.inline-link {
  font-weight: 600;
}

.image-frame {
  background: #d8d8d8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  margin-top: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  border: 1px solid #e4e4e4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4da;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.submit-btn {
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.submit-btn:hover,
.submit-btn:focus {
  background: var(--accent-dark);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.wide-banner {
  background: var(--ink);
  color: #ffffff;
  padding: 48px 6vw;
}

.wide-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer {
  background: #0f1115;
  color: #c7cbd1;
  padding: 36px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #c7cbd1;
}

.disclaimer {
  font-size: 0.9rem;
  color: #a8adb5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: none;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions button.secondary {
  background: #cfd4da;
  color: var(--ink);
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  background: var(--accent-dark);
}

.cookie-actions button.secondary:hover,
.cookie-actions button.secondary:focus {
  background: #b7bcc3;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.small-tag {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.bg-route {
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1e1e1e;
}

.bg-route .section {
  background: rgba(15, 17, 21, 0.7);
  color: #ffffff;
}

.bg-route .section a {
  color: #ffffff;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid #d9d9d9;
}

.service-row strong {
  font-size: 1.05rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e1e1e1;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.banner-note {
  max-width: 720px;
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
