:root {
  --teal: #055f7a;
  --teal-dark: #0b4258;
  --teal-light: #e8f2f6;
  --burgundy: #7a0524;
  --burgundy-dark: #65031d;
  --text: #222;
  --text-muted: #5a5a5a;
  --white: #fff;
  --shadow: 0 12px 40px rgba(11, 66, 88, 0.12);
  --radius: 14px;
  --font-display: "Passion One", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-dark);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 95, 122, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--teal-dark);
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--teal-light);
  color: var(--teal-dark);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.4rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--teal-dark);
  padding: 0.35rem 0.15rem;
}

.site-nav a:hover {
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(122, 5, 36, 0.28);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(11, 66, 88, 0.92) 0%, rgba(5, 95, 122, 0.78) 45%, rgba(122, 5, 36, 0.55) 100%),
    url("../images/hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  max-width: 38rem;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 1.25rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.15rem;
  margin: 0 0 2rem;
  opacity: 0.95;
  max-width: 32ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Sections */
section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--teal-dark);
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(5, 95, 122, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--teal-light);
}

.service-card h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--teal-dark);
}

.service-card p {
  margin: 0;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.service-card .btn {
  align-self: flex-start;
}

/* Why us */
.why-us {
  background: var(--teal-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin: 0 0 0.75rem;
  color: var(--burgundy);
  font-size: 1.15rem;
}

.why-card p {
  margin: 0;
  color: var(--text-muted);
}

/* Lists */
.split-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("../images/section-bg.jpg") center / cover no-repeat fixed;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.split-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.split-panel h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--teal-dark);
}

.split-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.split-panel li {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

.split-panel li::marker {
  color: var(--teal);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.quote-card {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text);
}

.quote-card figcaption {
  font-weight: 700;
  color: var(--teal-dark);
}

.quote-card figcaption span {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 0.5rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.phone-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.phone-link:hover {
  color: #ffe8ee;
}

.hours {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  background: #0a2e3d;
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.site-footer a {
  color: #b8dce8;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-links a {
  text-decoration: none;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Cookie notice */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, 92vw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 1.25rem 1.5rem;
  z-index: 200;
  display: none;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  min-width: 200px;
}

@media (max-width: 900px) {
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(5, 95, 122, 0.12);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.open {
    max-height: 420px;
    padding: 1rem 4vw 1.25rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .split-section {
    background-attachment: scroll;
  }
}
