﻿:root {
  --teal-950: #042f2e;
  --teal-850: #0b5f59;
  --teal-750: #0d9488;
  --teal-650: #14b8a6;
  --mint-100: #ecfdf8;
  --mint-200: #d5f9f1;
  --gray-50: #f8fafc;
  --gray-100: #eef2f7;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --max: 72rem;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --shadow: 0 20px 40px rgba(12, 85, 79, 0.12);
  --shadow-sm: 0 10px 24px rgba(12, 85, 79, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--gray-900);
  background:
    radial-gradient(60rem 30rem at 10% -5%, #dcfaf3 0%, transparent 60%),
    radial-gradient(45rem 28rem at 95% -10%, #ecfffb 0%, transparent 52%),
    var(--white);
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin: 0 0 0.9rem;
  color: var(--gray-700);
}

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

a:hover,
a:focus-visible {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.5rem 0.8rem;
  background: var(--teal-950);
  color: var(--white);
  border-radius: 0.4rem;
  z-index: 200;
}

.skip-link:focus {
  left: 0.6rem;
  top: 0.6rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.top-strip {
  background: var(--teal-950);
  color: #ccf8f2;
  font-size: 0.86rem;
}

.top-strip-inner {
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  color: #eafffb;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #fbbf24;
}

.status-pill.open .status-dot {
  background: #34d399;
}

.status-pill.closed .status-dot {
  background: #f87171;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gray-900);
  text-decoration: none;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-750), var(--teal-850));
  color: var(--white);
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  max-width: 14rem;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
}

.menu-toggle {
  border: 1px solid var(--teal-750);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-850);
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.site-nav {
  position: absolute;
  top: 4.8rem;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.9rem 1rem 1rem;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  padding: 0.45rem 0.65rem;
  border-radius: 0.6rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mint-100);
  color: var(--teal-850);
}

.page-hero,
.hero {
  padding: 3rem 0 2.4rem;
}

.hero-grid,
.split,
.footer-grid,
.contact-layout,
.stats-grid,
.steps-grid,
.quick-grid,
.card-grid,
.services-grid {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal-750);
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  margin: 0.2rem 0 0.9rem;
}

.lead {
  font-size: 1.04rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip {
  background: var(--mint-100);
  border: 1px solid var(--mint-200);
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--teal-850);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.1rem 0;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 0.66rem 1.1rem;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--teal-750), var(--teal-850));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.25);
}

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

.section {
  padding: 2.8rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7fffd 0%, #f0fdfa 100%);
  border-block: 1px solid #ddf2ed;
}

.card,
.hero-panel,
.info-panel {
  background: var(--white);
  border: 1px solid #d8eeeb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.hero-panel ul,
.hours-list,
.check-list,
.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li,
.hours-list li,
.step-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  border-bottom: 1px solid var(--gray-100);
  padding: 0.38rem 0;
  font-size: 0.94rem;
}

.hero-panel li:last-child,
.hours-list li:last-child,
.step-list li:last-child {
  border-bottom: 0;
}

.info-panel {
  background: linear-gradient(150deg, #0d9488, #0a6e68);
  color: var(--white);
}

.info-panel p,
.info-panel h3 {
  color: #e8fffc;
}

.info-panel .btn-primary {
  background: var(--white);
  color: var(--teal-850);
  box-shadow: none;
}

.stat {
  text-align: center;
  padding: 0.95rem;
  background: var(--white);
  border: 1px solid #daf1ed;
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: var(--teal-850);
  font-size: 1.4rem;
  line-height: 1.2;
}

.step {
  padding: 1.05rem;
  background: var(--white);
  border: 1px solid #daf1ed;
  border-radius: var(--radius);
}

.step .step-number {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  line-height: 1.9rem;
  border-radius: 50%;
  text-align: center;
  font-weight: 800;
  color: var(--white);
  background: var(--teal-750);
  margin-bottom: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--teal-650);
}

.map-wrap,
.mini-map {
  border: 1px solid #d8eeeb;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 18rem;
}

.map-wrap iframe,
.mini-map iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 0.62rem;
}

label {
  font-weight: 700;
  font-size: 0.94rem;
}

input,
textarea,
select,
summary {
  font: inherit;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 0.65rem;
  padding: 0.63rem 0.72rem;
  background: var(--white);
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.35);
  outline-offset: 2px;
}

input.error,
textarea.error {
  border-color: #ef4444;
  background: #fff7f7;
}

.field-error {
  margin: 0.1rem 0 0.25rem;
  font-size: 0.84rem;
  color: #b91c1c;
  min-height: 1.1em;
}

.form-feedback {
  min-height: 1.2em;
  margin: 0.2rem 0 0;
  color: var(--teal-950);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  background: var(--white);
  border: 1px solid #daf1ed;
  border-radius: 0.85rem;
  padding: 0.65rem 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gray-900);
}

.footer-grid {
  padding: 2.2rem 0 1.3rem;
}

.site-footer {
  background: #062a28;
  color: #d7f5f0;
  margin-top: 2.2rem;
  padding-bottom: 4.4rem;
}

.site-footer p,
.site-footer h2 {
  color: inherit;
}

.site-footer h2 {
  font-size: 1.05rem;
}

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

.copyright {
  margin: 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.95rem 0 1.1rem;
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #d7ebe8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.floating-actions a {
  text-align: center;
  padding: 0.7rem 0.35rem;
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--teal-850);
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 4.8rem;
  z-index: 121;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 0;
  background: var(--teal-850);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (min-width: 48rem) {
  .site-header {
    top: 0;
  }

  .brand-text {
    max-width: none;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: 0;
    background: transparent;
    padding: 0;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 1fr;
    align-items: start;
  }

  .split {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .card-grid,
  .services-grid,
  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    padding-bottom: 0;
  }

  .floating-actions {
    display: none;
  }

  .to-top {
    bottom: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .reveal,
  .to-top {
    transition: none;
  }
}


