@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1b1d21;
  --muted: #5b646d;
  --paper: #f7f4ef;
  --sand: #efe7db;
  --mist: #e7edf2;
  --accent: #2f6f7c;
  --accent-dark: #23545f;
  --gold: #b4894a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
  background: #fff;
  border-bottom: 1px solid #e5e2dc;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px dashed #c9c4bc;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fdfbf7;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-color: var(--gold);
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background: var(--paper);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.split {
  display: flex;
  gap: 4vw;
  padding: 70px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1;
}

.split h1,
.split h2 {
  margin-top: 0;
}

.hero-copy {
  background: #fff;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:focus,
.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:focus,
.btn.secondary:hover {
  color: #fff;
}

.image-frame {
  background: var(--mist);
  border-radius: 24px;
  overflow: hidden;
}

.frame-mist {
  background: #dfe8ee;
}

.frame-cream {
  background: #f0ebe5;
}

.frame-sand {
  background: #ece7df;
}

.frame-foam {
  background: #e6ece9;
}

.frame-warm {
  background: #f0e7dc;
}

.frame-oat {
  background: #efeae3;
}

.frame-sky {
  background: #e7edf2;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.service-card .image-frame {
  width: 160px;
  height: 120px;
  flex-shrink: 0;
}

.price {
  font-weight: 700;
  color: var(--gold);
}

.quote {
  font-style: italic;
  color: var(--muted);
  margin: 10px 0;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc8bf;
  font-family: inherit;
}

fieldset {
  border: 1px solid #e1d8cc;
  border-radius: 14px;
  padding: 14px;
}

.form-message {
  color: var(--accent);
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

footer {
  padding: 40px 6vw;
  background: #1f2326;
  color: #f1f1f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c9c9c9;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin-top: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.simple-page {
  padding: 60px 6vw 80px;
}

.split-tight {
  padding: 40px 6vw;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .hero-copy {
    padding: 32px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card .image-frame {
    width: 100%;
    height: 160px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
