* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a30;
  --muted: #5d6b73;
  --paper: #f6f4ef;
  --mist: #e7eef1;
  --moss: #1f5b4a;
  --clay: #d9c9b6;
  --sky: #cfe1ea;
  --accent: #d18c5a;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
  background: var(--paper);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 40px 6vw 50px;
  background: var(--paper);
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 42, 48, 0.15), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #1a4a3d;
  transform: translateY(-1px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--ink);
  font-weight: 600;
}

.ghost-btn:hover {
  background: var(--ink);
  color: #fff;
}

.magazine-block {
  padding: 40px 6vw;
}

.split-columns {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 260px;
}

.column.narrow {
  flex: 0.7;
}

.column.wide {
  flex: 1.4;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

.img-frame {
  background: var(--sky);
  padding: 8px;
  border-radius: 20px;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.highlight {
  background: var(--mist);
  padding: 22px;
  border-radius: 20px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  min-width: 230px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(31, 42, 48, 0.08);
}

.service-card h4 {
  margin: 0;
}

.service-price {
  font-weight: 700;
  color: var(--moss);
}

.info-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.info-box {
  flex: 1;
  min-width: 220px;
  background: var(--clay);
  padding: 18px;
  border-radius: 18px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(31, 42, 48, 0.08);
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(31, 42, 48, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7d0d4;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(31, 42, 48, 0.25);
}

.sticky-cta:hover {
  background: #c47744;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 36px 6vw 60px;
}

footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.disclaimer {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 14px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #ccd6db;
  padding: 16px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hide {
  display: none;
}

.banner-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--moss);
  color: #fff;
  font-weight: 600;
}

.banner-btn.secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.banner-btn:hover {
  filter: brightness(0.95);
}

.page-hero {
  padding: 34px 6vw;
  background: var(--mist);
}

.page-hero h1 {
  margin-top: 0;
}

.content-block {
  padding: 30px 6vw 50px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(31, 42, 48, 0.08);
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg .highlight {
  background: rgba(31, 42, 48, 0.7);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-image {
    min-height: 260px;
  }
}
