* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1d23;
  --muted: #5b6571;
  --accent: #c84630;
  --accent-dark: #8c2f1f;
  --mist: #f4f1ed;
  --sand: #efe8df;
  --leaf: #0f3d3e;
  --line: #d7d0c8;
  --shadow: 0 18px 40px rgba(22, 23, 32, 0.12);
  font-size: 16px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-layout {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-copy {
  flex: 1 1 420px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.hero-card {
  flex: 1 1 360px;
  background: var(--mist);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.section-header p {
  flex: 1;
  color: var(--muted);
  max-width: 520px;
}

.magazine-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1 1 280px;
}

.note {
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.sticky-box {
  position: sticky;
  top: 1.5rem;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  width: 56px;
  height: 56px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--leaf);
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.4rem;
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  border-left: 4px solid var(--accent);
}

.media-split {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.media-split img {
  border-radius: 20px;
  flex: 1 1 320px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-bg {
  background-image: url("assets/pattern.svg");
  background-size: cover;
  background-position: center;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  display: none;
  width: min(680px, 92vw);
  box-shadow: var(--shadow);
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
}

.page-hero {
  padding: 3rem 0 2rem;
  background: var(--mist);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.6rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 700px;
}

.info-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--line);
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.section-cta {
  margin-top: 1.5rem;
}

@media (max-width: 720px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero-card {
    order: -1;
  }
}
