/* Base */
:root {
  color-scheme: light;
  --bg: #f5f4f1;
  --ink: #1f2521;
  --muted: #5b645c;
  --accent: #0e6b5b;
  --accent-dark: #0a4b3f;
  --sand: #efe7dd;
  --sea: #d8ece8;
  --sunset: #f7e1d0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 32, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 18px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding: 50px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  margin: 14px 0 12px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  border-bottom: 1px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 600;
}

.panel-card {
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background: rgba(14, 107, 91, 0.08);
  z-index: 0;
}

.layered .panel-card {
  position: relative;
  z-index: 1;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.grid-item {
  flex: 1 1 220px;
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sea);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-item span {
  font-weight: 600;
  color: var(--accent-dark);
}

.accent-section {
  background: var(--sand);
}

.sea-section {
  background: var(--sea);
}

.sunset-section {
  background: var(--sunset);
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--accent-dark);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 37, 33, 0.2);
  font: inherit;
  background: #fafafa;
}

.footer {
  padding: 32px 0 48px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 24px;
  background: var(--accent-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  border-radius: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-dark);
}

.page-hero {
  padding: 60px 0 40px;
}

.content-block {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-quote {
  font-style: italic;
  color: #3b4340;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
