* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f2328;
  --muted: #5b6066;
  --accent: #3454d1;
  --accent-dark: #24349c;
  --soft: #efe7dd;
  --highlight: #c8d2f1;
  --sand: #e6d9cb;
  --paper: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
  width: fit-content;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 420px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  background: var(--sand);
  padding: 16px;
  border-radius: 26px;
}

.hero-media img {
  border-radius: 22px;
}

.hero-callout {
  position: absolute;
  left: -24px;
  bottom: 24px;
  background: var(--paper);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.15);
  max-width: 240px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.cta-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.asym-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 56px;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.asym-card {
  flex: 1 1 280px;
  background: var(--paper);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.08);
}

.asym-card.offset {
  margin-top: 28px;
  background: var(--highlight);
}

.asym-image {
  flex: 1 1 300px;
  background: var(--soft);
  border-radius: 22px;
  padding: 12px;
}

.asym-image img {
  border-radius: 18px;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 520px;
}

.services-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  padding: 16px 18px;
}

.service-item img {
  width: 120px;
  height: 90px;
  border-radius: 14px;
}

.service-price {
  margin-left: auto;
  font-weight: 600;
  color: var(--accent-dark);
}

.story-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--paper);
  border-radius: 26px;
  padding: 28px;
  margin-top: 48px;
}

.story-panel .text {
  flex: 1 1 320px;
}

.story-panel .image {
  flex: 1 1 300px;
  background: var(--sand);
  border-radius: 22px;
  padding: 12px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.list-inline li {
  background: var(--soft);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-section {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-panel {
  flex: 1 1 360px;
  background: var(--paper);
  padding: 24px;
  border-radius: 24px;
}

.form-panel h3 {
  margin-top: 0;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--soft);
}

.service-option input {
  accent-color: var(--accent);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d3ce;
  font-size: 1rem;
  width: 100%;
}

.form-action {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(31, 35, 40, 0.2);
  cursor: pointer;
}

.footer {
  margin-top: 70px;
  background: var(--paper);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.footer .col {
  flex: 1 1 220px;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.18);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: var(--soft);
  color: var(--ink);
}

.legal-page {
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  margin-top: 32px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
}

.muted {
  color: var(--muted);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.image-band .frame {
  flex: 1 1 260px;
  background: var(--soft);
  border-radius: 18px;
  padding: 10px;
}

.image-band img {
  border-radius: 14px;
}

.wide-band {
  margin-top: 56px;
  background: var(--highlight);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.wide-band img {
  width: 240px;
  height: 180px;
  border-radius: 18px;
}

.bg-brand {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1496307653780-42ee777d4833?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hidden {
  display: none;
}
