* {
  box-sizing: border-box;
}

:root {
  --ink: #0c1b2a;
  --muted: #4f5f6f;
  --accent: #2c7a7b;
  --accent-dark: #1f5f60;
  --sand: #f4f1ec;
  --sky: #e8f2f5;
  --stone: #e2e6ea;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

main {
  flex: 1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 64px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-half {
  flex: 1 1 320px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.button,
button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background: var(--sand);
  color: var(--ink);
}

.media-frame {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  padding: 12px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.layered {
  background: var(--sky);
}

.band {
  padding: 56px 6vw;
  background: var(--sand);
}

.band-image {
  background-image: url("https://images.unsplash.com/photo-1756913453779-ea366264b54a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.band-overlay {
  background: rgba(12, 27, 42, 0.65);
  padding: 64px 6vw;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--ink);
  border-radius: 24px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.cta-inline {
  color: var(--accent-dark);
  text-decoration: underline;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin-bottom: 16px;
}

.form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--stone);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
  font-family: inherit;
}

.sticky-box {
  position: sticky;
  top: 24px;
  background: var(--sand);
  border-radius: 24px;
  padding: 22px;
  border: 1px solid var(--stone);
}

.stack-gap {
  margin-top: 20px;
}

.footer {
  padding: 36px 6vw;
  background: var(--ink);
  color: var(--white);
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d0d7dd;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  inset: auto 24px 24px auto;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(12, 27, 42, 0.2);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.page-title {
  padding: 40px 6vw 0;
}

.simple-section {
  padding: 32px 6vw;
}
