* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #1b3b2f;
  --moss: #2f5d45;
  --sage: #8fa98f;
  --sand: #f1efe9;
  --river: #2a6f7f;
  --ink: #1b1e1c;
  --mist: #f7f6f3;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

header {
  padding: 2rem 6vw 1rem;
  background: var(--mist);
}

nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  background: var(--sand);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  color: var(--forest);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 6vw 2rem;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-visual {
  flex: 1 1 340px;
  position: relative;
  background: var(--sage);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.hero-visual img {
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--forest);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

.btn:hover {
  transform: translateY(-1px);
}

.offset-section {
  padding: 0 6vw;
}

.offset-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(27, 30, 28, 0.08);
  position: relative;
  margin-left: 8vw;
}

.offset-card.reverse {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 8vw;
}

.offset-card .text {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offset-card .media {
  flex: 1 1 280px;
  background: var(--sage);
  border-radius: 20px;
  overflow: hidden;
}

.split-band {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 6vw;
  background: var(--sand);
}

.split-band .panel {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(27, 30, 28, 0.08);
}

.card .media {
  background: var(--sage);
  border-radius: 16px;
  overflow: hidden;
}

.media-round {
  background: var(--sage);
  border-radius: 20px;
  overflow: hidden;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 6vw;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 18px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(27, 30, 28, 0.07);
}

.service-item .media {
  flex: 0 0 180px;
  background: var(--sage);
  border-radius: 14px;
  overflow: hidden;
  height: 140px;
}

.service-item .details {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price {
  font-weight: 700;
  color: var(--river);
}

.form-section {
  padding: 2rem 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #d3d6d0;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  color: var(--river);
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--river);
  color: white;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(27, 30, 28, 0.15);
  z-index: 10;
}

footer {
  padding: 2rem 6vw 4rem;
  background: #16251f;
  color: #e8f0ea;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer a {
  color: #e8f0ea;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(27, 30, 28, 0.15);
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.content-narrow {
  max-width: 760px;
}

.page-hero {
  padding: 3rem 6vw 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.simple-section {
  padding: 1rem 6vw 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-box {
  background: white;
  padding: 2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 520px;
}

.background-panel {
  background: var(--sand);
  padding: 2rem 6vw;
}

.note {
  font-size: 0.95rem;
  color: #4b5b55;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
