* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #c0502f;
  --accent-dark: #8f3922;
  --cream: #fff8ef;
  --sand: #f4efe9;
  --leaf: #3a6b4f;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Source Serif 4", "Merriweather", serif;
  color: var(--ink);
  background: #fbfbfb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  padding: 28px 6vw 12px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.25rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 20px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.8rem);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 12px 16px;
  background: rgba(255, 248, 239, 0.9);
  border-radius: 14px;
  font-size: 0.95rem;
}

.section {
  padding: 48px 6vw;
}

.section-accent {
  background: var(--sand);
}

.section-cream {
  background: var(--cream);
}

.magazine-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.magazine-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.magazine-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: var(--leaf);
  font-family: "Poppins", sans-serif;
}

.card-title {
  font-size: 1.4rem;
  line-height: 1.3;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 24px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.dark {
  background: var(--accent-dark);
}

.split-feature {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
}

.tag {
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #eee;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: "Poppins", sans-serif;
}

.divider {
  height: 1px;
  background: #e4ded7;
  margin: 24px 0;
}

footer {
  padding: 40px 6vw 60px;
  background: #141414;
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #141414;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  z-index: 10;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Poppins", sans-serif;
}

.stat {
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.2rem;
  display: block;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Poppins", sans-serif;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wide-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wide-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top,
  .hero-media {
    flex: 1;
  }

  .magazine-columns {
    flex-direction: row;
  }

  .magazine-columns .magazine-card {
    flex: 1;
  }

  .split-feature {
    flex-direction: row;
    align-items: center;
  }

  .split-feature.reverse {
    flex-direction: row-reverse;
  }

  .split-feature > div {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-grid .magazine-card {
    flex: 1;
  }

  .stats-grid {
    flex-direction: row;
  }

  .footer-grid,
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
