@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --ink: #1b1b1d;
  --muted: #6b6f76;
  --paper: #f6f3ef;
  --accent: #0c3b6b;
  --accent-soft: #e2e9f1;
  --sand: #efe8df;
  --line: #d6d1c8;
  --highlight: #f1d9c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 7vw 8px;
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

main {
  padding: 24px 7vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 0 0 16px;
}

.hero-image {
  flex: 1 1 380px;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #cdd6df;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  background: #fff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: var(--ink);
}

.btn.light {
  background: var(--highlight);
  color: var(--ink);
}

.magazine-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.column {
  flex: 1 1 260px;
  min-width: 240px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #d6dbe2;
}

.card-image img {
  width: 100%;
  height: 180px;
}

.section {
  margin-top: 54px;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.light {
  background: #fff;
}

.section.tan {
  background: var(--sand);
}

.section.image-bg {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.bg-highway {
  background-image: url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?w=1400&q=80");
}

.bg-city-lights {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 280px;
}

.inline-image {
  border-radius: 14px;
  overflow: hidden;
  background-color: #d1d7dd;
}

.inline-image img {
  width: 100%;
  height: 240px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta span {
  font-size: 13px;
}

.footer {
  padding: 40px 7vw 80px;
  background: #111;
  color: #cfcfd4;
}

.footer a {
  color: #cfcfd4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.notice {
  font-size: 12px;
  color: #b6b6bb;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
}

.small-btn.ghost {
  background: #222;
}

.page-hero {
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reference-list a {
  color: #fff;
}

.thanks-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
