@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("assets/fonts/afacad-flux-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("assets/fonts/afacad-flux-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("assets/fonts/afacad-flux-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("assets/fonts/afacad-flux-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-display: "Bricolage Grotesque", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Afacad Flux", "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --teal: #208080;
  --teal-deep: #0d4846;
  --teal-dark: #073836;
  --mint: #d9f6ee;
  --mint-strong: #9ff0c8;
  --lime: #c9f45b;
  --gold: #ffd74a;
  --coral: #f16d5d;
  --ink: #102220;
  --muted: #60706d;
  --line: #d9e5e1;
  --paper: #fbfdfb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 47, 44, 0.14);
  --soft-shadow: 0 12px 34px rgba(8, 47, 44, 0.1);
  --radius: 8px;
  --header-height: 78px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(217, 246, 238, 0.45), rgba(251, 253, 251, 0) 460px),
    var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--soft-shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(251, 253, 251, 0.92);
  border-bottom: 1px solid rgba(217, 229, 225, 0.7);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 253, 251, 0.98);
  box-shadow: 0 12px 30px rgba(7, 56, 54, 0.08);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal-dark);
}

.brand img {
  width: 38px;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 6px;
  color: rgba(16, 34, 32, 0.78);
  font-size: 1rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--teal-dark);
  background: rgba(32, 128, 128, 0.08);
}

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

.lang-toggle,
.menu-toggle,
.call-link,
.btn {
  min-height: 44px;
}

.lang-toggle {
  width: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(32, 128, 128, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(32, 128, 128, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flag-icon {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.42;
  filter: saturate(0.78);
  box-shadow: inset 0 0 0 1px rgba(7, 56, 54, 0.12);
  transition: opacity 180ms ease, filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.flag-icon.is-active {
  opacity: 1;
  filter: saturate(1.08);
  transform: scale(1.08);
  box-shadow: 0 5px 12px rgba(7, 56, 54, 0.22);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--teal);
  background: var(--mint);
}

.call-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(7, 56, 54, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.call-link:hover,
.call-link:focus-visible {
  transform: translateY(-1px);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  border: 1px solid rgba(32, 128, 128, 0.2);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-dark);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 40px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--teal-deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 56, 54, 0.92), rgba(7, 56, 54, 0.68) 45%, rgba(7, 56, 54, 0.22)),
    linear-gradient(0deg, rgba(7, 56, 54, 0.78), rgba(7, 56, 54, 0.1) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 180px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.85rem;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions,
.social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, border-color 190ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 520ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(115%);
}

.btn-primary {
  background: var(--lime);
  color: var(--teal-dark);
  box-shadow: 0 18px 38px rgba(201, 244, 91, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.16);
}

.social-row {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
}

.social-row > span {
  font-size: 0.98rem;
  font-weight: 600;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.social-button img {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.social-button.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
}

.social-button.facebook {
  background: #1877f2;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: var(--lime);
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  padding: 20px;
  background: rgba(7, 56, 54, 0.42);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
}

.service-ribbon {
  width: 100%;
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(7, 56, 54, 0.18);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonMove 34s linear infinite;
}

.ribbon-track span {
  display: inline-flex;
  align-items: center;
  min-height: 68px;
  padding: 0 34px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
}

.ribbon-track span::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 215, 74, 0.16);
}

@keyframes ribbonMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.system-copy h2,
.about-copy h2,
.area-panel h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 2.86rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.system-copy p,
.about-copy p,
.area-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.64;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal-dark);
  box-shadow: var(--soft-shadow);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 56, 54, 0.06), rgba(7, 56, 54, 0.86));
}

.service-card div {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.05);
}

.card-number {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.system-section {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  padding: 104px max(16px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(217, 246, 238, 0.95), rgba(255, 255, 255, 0.72)),
    var(--mint);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  gap: 40px;
  align-items: start;
}

.system-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  min-height: 232px;
  padding: 26px;
  border: 1px solid rgba(32, 128, 128, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(7, 56, 54, 0.06);
}

.process-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.process-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal-dark);
  box-shadow: var(--soft-shadow);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(7, 56, 54, 0.78);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  backdrop-filter: blur(14px);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 122px;
  height: 10px;
  border-radius: 8px;
  background: var(--gold);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy p {
  margin: 20px 0 0;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-points div {
  padding: 18px;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(8, 47, 44, 0.07);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-weight: 700;
}

.about-points span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-area {
  padding-top: 22px;
}

.area-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: end;
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 56, 54, 0.95), rgba(32, 128, 128, 0.9)),
    var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.area-panel .eyebrow {
  color: var(--lime);
}

.area-panel h2,
.area-panel p {
  color: var(--white);
}

.area-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.city-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.city-list span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-section {
  padding-top: 60px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(32, 128, 128, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 47, 44, 0.06);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 19px 54px 19px 20px;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) 1.14fr;
  gap: 34px;
  align-items: start;
  padding-top: 72px;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 3px;
  padding: 17px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(8, 47, 44, 0.07);
  border: 1px solid rgba(32, 128, 128, 0.1);
}

.contact-methods span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.quote-form {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(32, 128, 128, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.quote-form label {
  display: grid;
  gap: 7px;
}

.quote-form label span {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(32, 128, 128, 0.2);
  border-radius: 6px;
  padding: 12px 13px;
  background: #f8fbfa;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(32, 128, 128, 0.12);
}

.quote-form input.is-invalid,
.quote-form select.is-invalid,
.quote-form textarea.is-invalid {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(241, 109, 93, 0.12);
}

.quote-form .marketing-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(32, 128, 128, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(32, 128, 128, 0.08), rgba(255, 255, 255, 0.92));
}

.quote-form .marketing-consent input[type="checkbox"] {
  width: 19px;
  min-width: 19px;
  height: 19px;
  min-height: 19px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--teal);
}

.quote-form .marketing-consent span {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.quote-form .marketing-consent strong {
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}

.quote-form .marketing-consent small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.challenge-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.marketing-frame,
.marketing-background-form {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--teal-dark);
  font-weight: 600;
}

.form-status.error {
  color: #b63b30;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  border: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
}

.footer-brand img {
  width: 34px;
  height: 48px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(7, 56, 54, 0.24);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(7, 56, 54, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(980px, 100%);
  max-height: 78svh;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-proof.reveal {
  transform: translate(-50%, 22px);
}

.hero-proof.reveal.is-visible {
  transform: translate(-50%, 0);
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: rgba(251, 253, 251, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 36px rgba(7, 56, 54, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .mobile-nav {
    transform: translateY(0);
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 420px;
  }

  .system-layout,
  .about-section,
  .contact-section,
  .area-panel {
    grid-template-columns: 1fr;
  }

  .system-copy,
  .contact-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15px;
  }

  .nav-wrap {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    font-size: 0.98rem;
  }

  .brand img {
    width: 32px;
    height: 46px;
  }

  .call-link {
    display: none;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 56, 54, 0.94), rgba(7, 56, 54, 0.7)),
      linear-gradient(0deg, rgba(7, 56, 54, 0.75), rgba(7, 56, 54, 0.12));
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 38px 0 96px;
  }

  .hero h1 {
    font-size: 2.14rem;
    line-height: 1.03;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .hero-actions {
    margin-top: 22px;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .social-row {
    margin-top: 16px;
    gap: 8px;
  }

  .social-row span {
    display: none;
  }

  .hero-proof {
    bottom: 12px;
    width: min(100% - 28px, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof div {
    padding: 13px 14px;
  }

  .hero-proof div:nth-child(3) {
    display: none;
  }

  .hero-proof span {
    display: none;
  }

  .ribbon-track span {
    min-height: 58px;
    padding: 0 22px;
    font-size: 1rem;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading h2,
  .system-copy h2,
  .about-copy h2,
  .area-panel h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .services-grid,
  .gallery-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 390px;
  }

  .system-section {
    padding: 78px 14px;
  }

  .process-item {
    min-height: auto;
    padding: 22px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

  .area-panel,
  .quote-form {
    padding: 24px;
  }

  .city-list span {
    font-size: 0.82rem;
  }

  .contact-section {
    gap: 26px;
  }

  .form-grid .full {
    grid-column: auto;
  }

  .floating-cta {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 2.24rem;
  }

  .hero-proof div {
    padding: 12px;
  }

  .section-heading h2,
  .system-copy h2,
  .about-copy h2,
  .area-panel h2,
  .contact-copy h2 {
    font-size: 1.78rem;
  }

  .quote-form {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

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