@charset "UTF-8";
/* ======================================================================================================== */
/* ====================================================================================== assets/_tags.scss */
/* ======================================================================================================== */
:root {
  --navy: #1fa9a3;
  /*--navy:#0B1D26;*/
  --foam: #F7FAFA;
  --teal: #1FA9A3;
  /*--amber:#E8A33D;*/
  --amber: #e8cd69;
  --charcoal: #2c3f44;
  --slate: #5B7480;
  --radius: 14px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--charcoal);
  /*background: var(--foam);*/
  line-height: 1.55;
  /* Recommended additional properties for proper scaling */
  background: url("../../images/bg1.webp") no-repeat fixed center;
  background-size: cover;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--display);
  margin: 0 0 0.5em;
  line-height: 1.15;
  color: var(--navy);
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: var(--foam);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-contact a {
  opacity: 0.9;
}

.topbar-contact a:hover {
  color: var(--amber);
}

.topbar-address {
  opacity: 0.75;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  color: var(--foam);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.social-icons a:hover {
  opacity: 1;
  color: var(--teal);
}

/* Header */
.site-header {
  background: var(--foam);
  border-bottom: 1px solid rgba(11, 29, 38, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  background: var(--navy);
  color: var(--foam);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.2;
  font-size: 1rem;
  color: var(--navy);
}

.brand-text small {
  font-family: var(--body);
  font-weight: 500;
  color: var(--slate);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.primary-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

.primary-nav > ul > li > a, .mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
  background: none;
  border: none;
  font-family: var(--body);
  cursor: pointer;
  color: var(--charcoal);
}

.primary-nav > ul > li > a:hover, .mega-trigger:hover {
  background: rgba(31, 169, 163, 0.1);
  color: var(--teal);
}

.has-mega {
  position: relative;
}

.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(11, 29, 38, 0.18);
  padding: 20px;
  width: 640px;
  z-index: 50;
}

.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.15s;
}

.mega-item:hover {
  background: rgba(31, 169, 163, 0.08);
}

.mega-item img {
  border-radius: 8px;
  flex-shrink: 0;
}

.mega-item span {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  color: var(--slate);
}

.mega-item strong {
  font-family: var(--display);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--body);
  font-size: 0.9rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 169, 163, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(31, 169, 163, 0.45);
}

.btn-ghost {
  border: 1.5px solid var(--foam);
  color: var(--foam);
}

.btn-ghost:hover {
  background: rgba(247, 250, 250, 0.12);
}

.header-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 38, 0.35) 0%, rgba(11, 29, 38, 0.55) 55%, rgba(11, 29, 38, 0.92) 100%);
}

.hero-content {
  position: relative;
  color: var(--foam);
  padding-bottom: 76px;
  max-width: 720px;
}

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--teal);
  margin: 0 0 12px;
}

.eyebrow.center {
  text-align: center;
}

.eyebrow.light {
  color: var(--amber);
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--foam);
}

.hero-lede {
  font-size: 1.05rem;
  color: rgba(247, 250, 250, 0.88);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.foam-divider {
  display: block;
  width: 100%;
  height: 44px;
}

.foam-divider.flip {
  transform: scaleY(-1);
}

/* Breadcrumb */
.breadcrumb {
  padding: 18px 24px 0;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--slate);
  flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--slate);
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 600;
}

.breadcrumb li[aria-current] {
  color: var(--charcoal);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.section-title.center {
  text-align: center;
}

.section-title.light {
  color: var(--foam);
}

.section-sub {
  color: var(--slate);
  max-width: 600px;
}

.section-sub.center {
  margin: 0 auto 8px;
  text-align: center;
}

.center {
  text-align: center;
}

.light {
  color: rgba(247, 250, 250, 0.85);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(11, 29, 38, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 29, 38, 0.12);
}

.service-card img {
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.08rem;
}

.service-card p {
  color: var(--slate);
  font-size: 0.92rem;
}

.service-card a {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
}

/* Parallax photo banner */
.banner-photo {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.banner-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 29, 38, 0.88) 0%, rgba(11, 29, 38, 0.55) 55%, rgba(31, 169, 163, 0.45) 100%);
}

.banner-photo-content {
  position: relative;
  text-align: center;
  color: var(--foam);
  padding: 60px 24px;
}

.banner-photo-content h2 {
  color: var(--foam);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  max-width: 640px;
  margin: 0 auto 22px;
}

@media (min-width: 900px) {
  .banner-photo img {
    background-attachment: fixed;
  }
}
/* Texture overlays (self-authored SVG patterns, no external stock) */
.why-textured {
  position: relative;
}

.why-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("foam-bubbles-pattern.svg");
  background-size: 120px 120px;
  opacity: 0.9;
  pointer-events: none;
}

.why-textured .wrap {
  position: relative;
}

.areas-textured {
  position: relative;
}

.areas-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("water-droplet-pattern.svg");
  background-size: 140px 140px;
  pointer-events: none;
}

.areas-textured .wrap {
  position: relative;
}

.testimonials-textured {
  position: relative;
}

.testimonials-textured::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("foam-bubbles-pattern.svg");
  background-size: 120px 120px;
  opacity: 0.6;
  pointer-events: none;
}

.testimonials-textured .wrap {
  position: relative;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-list li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: var(--slate);
  border-bottom: 1px solid rgba(11, 29, 38, 0.08);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.why-list strong {
  color: var(--charcoal);
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat {
  background: var(--navy);
  color: var(--foam);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(247, 250, 250, 0.75);
}

/* Explainers */
.explainer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.explainer {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}

.explainer h3 {
  font-size: 1.02rem;
}

.explainer p {
  color: var(--slate);
  font-size: 0.92rem;
  margin: 0;
}

/* Areas */
.areas {
  background: var(--navy);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

.area-list li {
  font-family: var(--mono);
  background: rgba(247, 250, 250, 0.08);
  color: var(--foam);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(247, 250, 250, 0.15);
  font-size: 0.85rem;
}

.areas-note {
  text-align: center;
}

.areas-note a {
  color: var(--amber);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 6px 18px rgba(11, 29, 38, 0.05);
}

.faq-list summary {
  font-family: var(--display);
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.testimonial {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 29, 38, 0.06);
}

.testimonial p {
  font-style: italic;
  color: var(--charcoal);
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--slate);
}

.stars {
  color: var(--amber);
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Related */
.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.related-links a {
  background: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  box-shadow: 0 6px 16px rgba(11, 29, 38, 0.06);
}

.related-links a:hover {
  background: var(--teal);
  color: #fff;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

address {
  font-style: normal;
  margin: 20px 0;
  color: var(--slate);
}

address p {
  margin: 0 0 6px;
}

address a {
  color: var(--teal);
  font-weight: 700;
}

.contact-map iframe {
  border-radius: var(--radius);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(247, 250, 250, 0.8);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand p {
  font-size: 0.85rem;
  margin: 12px 0;
}

.footer-col h4 {
  font-family: var(--display);
  color: var(--foam);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 250, 250, 0.12);
  padding: 18px 24px;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(247, 250, 250, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .explainer-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-toggle {
    display: flex;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 16px 30px rgba(11, 29, 38, 0.12);
  }
  .primary-nav.open {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    display: none;
  }
  .has-mega.open .mega-menu {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .header-cta {
    display: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 78vh;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn, .service-card {
    transition: none;
  }
}
.bgWhite {
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 0.01em solid rgba(0, 0, 0, 0.1);
}

/*# sourceMappingURL=master.css.map */
