* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2933;
  --muted: #51606a;
  --accent: #2557d6;
  --accent-dark: #1b3f9b;
  --paper: #f6f3ee;
  --sand: #efe7db;
  --mist: #e7eef5;
  --sage: #e3efe8;
  --border: #d6d2c7;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 16px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 36px 0 24px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-media {
  flex: 1 1 320px;
  position: relative;
}

.img-frame {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.img-frame img {
  width: 100%;
  height: 100%;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-3-4 {
  aspect-ratio: 3 / 4;
}

.ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.offset-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.offset-card {
  flex: 1 1 280px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.08);
}

.offset-card.shift {
  transform: translateY(24px);
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.story-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.story-columns .text {
  flex: 1 1 320px;
}

.story-columns .media {
  flex: 1 1 280px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  padding: 28px 0 44px;
  font-size: 14px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.badge {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
}

.bg-panel {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 33, 0.58);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.note-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.note-strip .cta-row {
  justify-content: flex-end;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 24px 0 12px;
}

.page-hero h1 {
  font-size: clamp(28px, 3vw, 38px);
}

.legal-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(31, 41, 51, 0.12);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent-dark);
  color: #fff;
}

.no-phone {
  font-weight: 600;
  color: var(--accent-dark);
}

.mt-14 {
  margin-top: 14px;
}

.mt-24 {
  margin-top: 24px;
}
