* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 12px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 13px;
  color: #5b5b5b;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  padding: 0 6vw 18px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #dad5cd;
  background: #fff;
}

.nav a:hover {
  background: #1c1c1c;
  color: #fff;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0 6vw 60px;
}

.hero-visual {
  flex: 1.1;
  min-height: 420px;
  background: #2b2b2b url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80") center/cover no-repeat;
  border-radius: 28px;
}

.hero-content {
  flex: 0.9;
  padding: 40px 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-content h1 {
  font-size: 46px;
  margin: 0 0 18px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  margin: 0 0 22px;
  color: #454545;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1c1c1c;
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #2f2f2f;
}

.outline-btn {
  background: transparent;
  border: 1px solid #1c1c1c;
  color: #1c1c1c;
}

.outline-btn:hover {
  background: #1c1c1c;
  color: #fff;
}

.section {
  padding: 70px 6vw;
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.offset-card h2 {
  margin-top: 0;
}

.media-frame {
  flex: 1;
  background: #d7d4cd;
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent-strip {
  background: #111;
  color: #fff;
  padding: 26px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.accent-strip p {
  margin: 0;
  font-size: 17px;
}

.inline-link {
  color: #c9c1b5;
  border-bottom: 1px solid #c9c1b5;
}

.inline-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
}

.service-card h3 {
  margin: 0;
}

.service-image {
  background: #d0cbc4;
  border-radius: 16px;
  overflow: hidden;
  height: 160px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: #1c1c1c;
}

.quote-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #f0ede7;
  border-radius: 20px;
  padding: 28px;
}

.quote-panel img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1ccc5;
  font-size: 15px;
}

.form-hint {
  font-size: 13px;
  color: #5f5f5f;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #111;
  color: #fff;
  padding: 16px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  background: #fff;
  color: #111;
  padding: 10px 18px;
  border-radius: 999px;
}

.sticky-cta a:hover {
  background: #e3ded6;
}

.footer {
  background: #141414;
  color: #d5d5d5;
  padding: 50px 6vw 70px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 12px;
  border: 1px solid #3a3a3a;
}

.footer-links a:hover {
  border-color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin-top: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 50px 6vw 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-hero .page-image {
  flex: 1;
  min-height: 240px;
  border-radius: 22px;
  background: #cec8c2;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero h1 {
  margin: 0;
  font-size: 36px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}

.reference-list a {
  color: #dcd2c6;
  text-decoration: underline;
}

.legal-content {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
}

.legal-content h2 {
  margin-top: 0;
}

.background-panel {
  background: #2a2a2a url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  border-radius: 24px;
  padding: 50px;
}

.background-panel a {
  color: #fff;
  text-decoration: underline;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.note-box {
  background: #f1ebe3;
  border-left: 4px solid #1c1c1c;
  padding: 18px 22px;
}

@media (max-width: 980px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    padding: 24px 0 0;
  }

  .split {
    flex-direction: column;
  }

  .page-hero {
    flex-direction: column;
  }
}
