* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b1b;
  --muted: #5b5656;
  --accent: #1f6b62;
  --accent-dark: #134742;
  --sand: #f6f1ea;
  --mist: #eef1f4;
  --sun: #f4c36f;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  border-bottom: 1px solid #e3e0dc;
  background: #fffdfa;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-bottom: 80px;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 0;
}

.feature-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-media {
  flex: 1 1 320px;
  position: relative;
}

.feature-media img {
  border-radius: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.85rem;
  font-weight: 600;
}

.headline {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.cta-button {
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.mag-section {
  padding: 0 6vw;
}

.mag-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editorial-card {
  background: var(--mist);
  padding: 24px;
  border-radius: 20px;
}

.city-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.city-card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid #ece7e0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 18px;
}

.city-card img {
  height: 160px;
  object-fit: cover;
}

.city-card .card-body {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.split-story {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: var(--sand);
  border-radius: 26px;
  padding: 32px;
}

.split-story .story-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-story .story-media {
  flex: 1 1 280px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eee7de;
}

.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #efe7df;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--mist);
  border-radius: 16px;
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  border: 1px solid #e6e0d7;
  border-radius: 20px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--mist);
  border-radius: 24px;
  padding: 28px;
}

.form-info {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d4cd;
  font-size: 1rem;
  font-family: inherit;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
}

.footer {
  margin-top: auto;
  background: #181615;
  color: #f9f4ee;
  padding: 28px 6vw 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #f9f4ee;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta a {
  background: var(--sun);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fffdfa;
  border: 1px solid #e6ded6;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: #ece5dc;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.panel {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid #ebe4da;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .top-nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
