* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5e667a;
  --light: #f5f6f8;
  --accent: #2f5d62;
  --accent-soft: #d7e6e4;
  --sand: #f0ede7;
  --sky: #e6edf5;
  --border: #dde2ea;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.split {
  display: flex;
  gap: 40px;
  padding: 70px 6vw;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split.compact {
  padding: 40px 6vw;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split .media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.hero {
  background: var(--light);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-size: 40px;
  line-height: 1.2;
}

h2 {
  font-size: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(47, 93, 98, 0.2);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  align-items: stretch;
}

.service-card .card-media {
  width: 180px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 600;
  color: var(--ink);
}

.info-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-pill {
  flex: 1 1 220px;
  padding: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.section-tone {
  background: var(--sand);
}

.section-tone-alt {
  background: var(--sky);
}

.section-bg-office {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.section-bg-office::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 34, 0.65);
}

.section-bg-office > .text,
.section-bg-office > .media {
  position: relative;
  z-index: 1;
}

.section-bg-office p,
.section-bg-office .muted {
  color: #dfe7f5;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #111825;
  color: #d9dee8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #d9dee8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #b6c0d2;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 100;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 120;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.bg-sky {
  background-color: var(--sky);
}

.bg-sand {
  background-color: var(--sand);
}

.bg-mint {
  background-color: var(--accent-soft);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.table-row .label {
  flex: 0 0 180px;
  font-weight: 600;
}

.table-row .value {
  flex: 1;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card .card-media {
    width: 100%;
    height: 180px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }
}
