* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111416;
  --soft-ink: #31363b;
  --muted: #6a7177;
  --sand: #f4f1ed;
  --mist: #f7f8fa;
  --clay: #e7dfd4;
  --accent: #2b6d5d;
  --accent-dark: #1e4a40;
  --line: #e1e4e8;
  --shadow: 0 14px 40px rgba(17, 20, 22, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.nav-disclosure {
  font-size: 0.85rem;
  color: var(--accent-dark);
  border: 1px solid var(--clay);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
}

.hero {
  padding: 90px 6vw 80px;
  background-image: url("https://images.unsplash.com/photo-1754666104619-78f00467d260?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.6);
}

.hero-content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  color: #e6ebef;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-row.spaced {
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.cta.primary {
  background: var(--accent);
  color: #ffffff;
}

.cta.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.section {
  padding: 70px 6vw;
}

.section.soft {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
  min-width: 260px;
}

.split .visual {
  flex: 1 1 320px;
  min-width: 260px;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: var(--clay);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card .select-service {
  align-self: flex-start;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.selected-card {
  border-color: var(--accent);
  box-shadow: 0 10px 26px rgba(43, 109, 93, 0.18);
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 200px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--soft-ink);
}

.pricing-reveal {
  background-image: url("https://images.unsplash.com/photo-1558611848-73f7eb4001a1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.pricing-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 26, 0.7);
}

.pricing-inner {
  position: relative;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.price-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(6px);
}

.price-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.submit {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  background: #0f1316;
  color: #d3d8dc;
  padding: 40px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #a8afb5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  max-width: 320px;
  display: none;
  z-index: 100;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--soft-ink);
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.simple-hero {
  padding: 70px 6vw;
  background: var(--mist);
}

.simple-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.simple-hero p {
  max-width: 760px;
  color: var(--soft-ink);
}

.page-visual {
  padding: 40px 6vw 0;
}

.page-visual .image-frame {
  max-width: 860px;
}

.content-block {
  padding: 30px 6vw 70px;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--soft-ink);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
}

.highlight {
  color: var(--accent-dark);
  font-weight: 600;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
