* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #111218;
  --muted: #585e6b;
  --soft: #f4f1ec;
  --sand: #ece3d7;
  --mist: #e2e8f0;
  --accent: #2b6d5e;
  --accent-dark: #1f4b41;
  --sun: #f2c46d;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: var(--white);
  border-bottom: 1px solid rgba(17, 18, 24, 0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--sun);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 88px 6vw 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 420px;
  background: var(--mist);
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 18, 24, 0.65), rgba(17, 18, 24, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section-cta {
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--sun);
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.hero .btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 80px 6vw;
}

.section.alt {
  background: var(--white);
}

.section.mist {
  background: var(--mist);
}

.section.bg-story {
  background-color: var(--ink);
  background-image:
    linear-gradient(120deg, rgba(17, 18, 24, 0.7), rgba(17, 18, 24, 0.2)),
    url("https://images.unsplash.com/photo-1478098711619-5ab0b478d6e2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.offset-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px;
  flex: 1 1 320px;
  box-shadow: 0 18px 38px rgba(17, 18, 24, 0.12);
  position: relative;
  top: -22px;
}

.offset-card.tight {
  top: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 26px;
  overflow: hidden;
  background: #c6d2cc;
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  min-width: 240px;
  box-shadow: 0 12px 28px rgba(17, 18, 24, 0.08);
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.testimonial {
  background: var(--sand);
  border-radius: 20px;
  padding: 22px;
  flex: 1 1 260px;
}

.form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(17, 18, 24, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7cdd6;
  font-size: 0.95rem;
  background: var(--white);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 28px rgba(17, 18, 24, 0.18);
  z-index: 10;
}

.sticky-cta button {
  background: var(--white);
  color: var(--accent-dark);
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  width: min(360px, 90vw);
  box-shadow: 0 14px 28px rgba(17, 18, 24, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hero-offset {
  margin-top: -52px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
}

.notice {
  background: var(--mist);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
