* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: #1e2320;
  background: #f8f7f3;
}

a {
  color: #1b4b3f;
  text-decoration: none;
}

a:focus {
  outline: 2px solid #1b4b3f;
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f3efe6;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1b4b3f;
}

.ad-label {
  font-size: 0.85rem;
  background: #1b4b3f;
  color: #f8f7f3;
  padding: 6px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.cta-button,
.ghost-button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-button {
  background: #1b4b3f;
  color: #f8f7f3;
}

.ghost-button {
  background: transparent;
  border: 1px solid #1b4b3f;
  color: #1b4b3f;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 6vw 56px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  margin: 0;
}

.hero-copy p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 28px;
  overflow: hidden;
  background: #d6d1c2;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.asym-section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.offset-left {
  margin-left: -4vw;
}

.offset-right {
  margin-right: -4vw;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #4e5a54;
}

.feature-panel {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(27, 75, 63, 0.08);
}

.image-frame {
  flex: 1 1 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #cdc7b6;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.06);
}

.card-image {
  min-height: 160px;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.price {
  font-weight: 600;
  color: #1b4b3f;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1b4b3f;
}

.layered {
  background: #efe9dd;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 48px rgba(27, 75, 63, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3b4;
  font-size: 1rem;
  font-family: inherit;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-section > div {
  flex: 1 1 280px;
}

.footer {
  margin-top: auto;
  background: #1e2320;
  color: #f8f7f3;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f8f7f3;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d5c9;
  line-height: 1.5;
}

.sticky-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #1b4b3f;
  color: #f8f7f3;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 6vw;
  background: #f3efe6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-content {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 860px;
}

.legal-content h2 {
  margin-bottom: 0;
}

.contact-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
}
