* {
  box-sizing: border-box;
}

:root {
  --ink: #111111;
  --muted: #5b5f66;
  --paper: #f6f3ee;
  --cloud: #ffffff;
  --accent: #2f6f6b;
  --accent-dark: #1c4f4b;
  --sun: #d9b96e;
  --shadow: rgba(17, 17, 17, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw 8px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 20px 7vw 40px;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 320px;
}

.hero-media .image-frame {
  width: min(520px, 90%);
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d3c7;
  box-shadow: 0 18px 45px var(--shadow);
}

.offset-card {
  position: absolute;
  left: -30px;
  bottom: -30px;
  background: var(--cloud);
  border-radius: 16px;
  padding: 18px 20px;
  width: 260px;
  box-shadow: 0 12px 30px var(--shadow);
}

.offset-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn-light {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn-accent {
  background: var(--sun);
  color: var(--ink);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #cda452;
}

.section {
  padding: 50px 7vw;
}

.section-alt {
  background: var(--cloud);
}

.section-bg {
  position: relative;
  color: #ffffff;
  background-image: url("https://images.unsplash.com/photo-1629997352827-8f07675c2c41?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 1.7rem;
  margin: 0 0 12px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.split > div {
  flex: 1 1 280px;
}

.image-tile {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d3c7;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.info-card {
  flex: 1 1 220px;
  background: var(--cloud);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 25px var(--shadow);
}

.info-card h3 {
  margin-top: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: var(--cloud);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-media {
  flex: 1 1 240px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #d8d3c7;
}

.service-body {
  flex: 1 1 280px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--cloud);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 35px var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d0c9;
  font-size: 1rem;
  background: #ffffff;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.footer {
  padding: 36px 7vw 60px;
  background: #1b1a17;
  color: #f6f3ee;
}

.footer a {
  color: #f6f3ee;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--cloud);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-wrap {
  max-width: 760px;
}

.thanks-hero {
  padding: 80px 7vw 40px;
}

.highlight {
  background: #f0e6d1;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ad-label {
    text-align: left;
  }

  .offset-card {
    position: static;
    margin-top: 12px;
  }

  .hero-media {
    justify-content: center;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
