* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1e1c;
  --muted: #5c5c55;
  --accent: #1d6f5a;
  --accent-soft: #e6f2ee;
  --sand: #f7f4ee;
  --stone: #f1ede4;
  --shadow: rgba(30, 30, 28, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 26px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-label {
  background: #efe4d9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #6b3a1f;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  padding: 40px 6vw 60px;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 360px;
  min-width: 280px;
  background: #e3ded4;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 60px var(--shadow);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: var(--stone);
}

.section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  margin-top: 0;
}

.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.asym .copy {
  flex: 1 1 320px;
}

.asym .media {
  flex: 1 1 280px;
  background: #ded9cf;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px var(--shadow);
}

.offset-left {
  margin-left: -30px;
}

.offset-right {
  margin-right: -30px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 24px 50px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  background: #e4e0d6;
  border-radius: 14px;
  overflow: hidden;
}

.price {
  font-weight: 600;
  font-size: 1.1rem;
}

.bg-insight {
  position: relative;
  color: #fff;
  background: #10261f;
  overflow: hidden;
}

.bg-insight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.bg-insight .content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.sticky-cta {
  position: sticky;
  top: 120px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.form-area {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 24px 50px var(--shadow);
}

.form-area label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-area input,
.form-area select,
.form-area textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d2c7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.form-area button {
  width: 100%;
}

.note {
  background: #fff6e8;
  border-left: 4px solid #f0c27b;
  padding: 14px 16px;
  border-radius: 12px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
}

footer {
  padding: 50px 6vw 70px;
  background: #0e1d18;
  color: #f7f4ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.small {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.75);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px var(--shadow);
  display: none;
  width: min(92vw, 620px);
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  padding: 40px 6vw 30px;
}

.page-hero .media {
  flex: 1 1 320px;
  background: #ddd7cc;
  border-radius: 20px;
  overflow: hidden;
}

.page-hero .copy {
  flex: 1 1 320px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 36px var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.service-item .details {
  flex: 1 1 240px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 24px 0;
}

@media (max-width: 760px) {
  .offset-left,
  .offset-right {
    margin: 0;
  }
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
