:root {
  --navy: #0f2f4a;
  --blue: #1f6fa2;
  --light-blue: #d9e7f3;
  --sand: #f4b740;
  --cream: #f7f1ea;
  --charcoal: #1a1f24;
  --white: #ffffff;
  --muted: #6b7682;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--light-blue);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: column;
}

.split-section .content,
.split-section .media {
  flex: 1;
}

.split-section .content {
  max-width: 520px;
}

.split-section .media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-section.narrow .content {
  max-width: 440px;
}

.split-section.highlight {
  background: var(--cream);
}

.split-section.deep {
  background: var(--navy);
  color: var(--white);
}

.split-section.deep a {
  color: var(--sand);
}

.split-section.pattern {
  background: url("assets/waterflow.svg") center/cover no-repeat;
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.deep .eyebrow,
.pattern .eyebrow {
  color: #d6e4f2;
}

h1,
h2,
h3 {
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.light {
  background: var(--sand);
  color: var(--navy);
}

.button.outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 180px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 25px rgba(15, 47, 74, 0.08);
}

.info-card img {
  margin-bottom: 10px;
}

.testimonial {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(15, 47, 74, 0.12);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  border-radius: 18px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #e5edf4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 47, 74, 0.12);
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #d6e4f0;
  border-radius: 14px;
}

.service-option input {
  accent-color: var(--navy);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #ccd8e3;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

footer {
  padding: 40px 6vw;
  background: var(--navy);
  color: var(--white);
}

footer a {
  color: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 30px;
  background: var(--sand);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(15, 47, 74, 0.18);
}

#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  display: none;
  z-index: 30;
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

#cookie-banner button {
  padding: 8px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

#cookie-accept {
  background: var(--sand);
  color: var(--navy);
}

#cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.page-hero {
  padding: 60px 6vw 20px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    justify-content: space-between;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }
}
