/* Base */
:root {
  --bg: #f8f7f5;
  --surface: #ffffff;
  --text: #1e1f21;
  --muted: #5a5f66;
  --brand: #1c4b5a;
  --brand-2: #2c7a7b;
  --accent: #d7a95f;
  --border: #e6e1d9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 2.5rem 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--brand-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn:focus {
  outline: 3px solid rgba(44, 122, 123, 0.35);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
  background: #173e4a;
}

/* Header & Navigation */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.2rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand);
}

.menu-toggle:focus {
  outline: 3px solid rgba(44, 122, 123, 0.35);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.mobile-menu a:focus,
.mobile-menu a:hover {
  background: var(--bg);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0;
}

.hero .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-highlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

/* Services */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 60;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  width: min(520px, 95%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Utility */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(28, 75, 90, 0.08);
  color: var(--brand);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero .hero-actions {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    width: calc(50% - 0.75rem);
  }

  .two-col {
    flex-direction: row;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
