* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ef;
  --ink: #1f1f1d;
  --muted: #5d5a54;
  --accent: #2b5b9a;
  --accent-dark: #234a7c;
  --surface: #ffffff;
  --warm: #efe6dc;
  --sage: #e2ebe5;
  --shadow: rgba(18, 18, 18, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 28px 6vw 12px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:focus,
.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 230px;
}

.main-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.main-cta:hover,
.main-cta:focus {
  background: var(--accent-dark);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  padding: 44px 6vw;
  gap: 32px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1 1 320px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--warm);
  box-shadow: 0 12px 30px var(--shadow);
}

.bg-sand {
  background: #e4ded4;
}

.bg-blue {
  background: #dfe5ed;
}

.bg-cream {
  background: #ede4da;
}

.bg-mist {
  background: #e0e5ee;
}

.bg-ink {
  background: #2d2d2b;
}

.bg-oat {
  background: #e8e0d6;
}

.bg-paper {
  background: #e8e1d7;
}

.bg-sky {
  background: #dde6eb;
}

.bg-linen {
  background: #e6ded3;
}

.bg-sage {
  background: #dfe8e1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  line-height: 1.15;
}

.muted {
  color: var(--muted);
}

.callout {
  background: var(--surface);
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  background: var(--sage);
  padding: 16px 18px;
  border-radius: 12px;
  min-width: 140px;
}

.stat strong {
  font-size: 1.4rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  height: 160px;
  background: #e9e1d8;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-band {
  background: #1f1f1d;
  color: #f6f3ef;
  padding: 40px 6vw;
}

.section-band .split-section {
  padding: 0;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.form-wrap {
  background: var(--surface);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 12px 22px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfcac4;
  font-family: inherit;
  font-size: 1rem;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice label {
  background: var(--warm);
  padding: 12px 14px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
}

.service-choice input:checked + span {
  border-bottom: 2px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px var(--shadow);
  z-index: 5;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

footer {
  padding: 40px 6vw 60px;
  background: #efede8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 6;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid #c9c1b8;
  background: #fff;
  cursor: pointer;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  background: var(--surface);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px var(--shadow);
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 6vw 40px;
}

@media (max-width: 760px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    max-width: none;
  }

  .sticky-cta {
    left: 18px;
    right: auto;
  }
}
