:root {
  --navy-950: #062733;
  --navy-900: #082f3c;
  --navy-800: #0c4150;
  --teal-600: #087f78;
  --teal-500: #0a9b90;
  --teal-100: #d9f3ee;
  --teal-50: #edf9f6;
  --coral-500: #f4845f;
  --coral-100: #ffe4da;
  --ink: #15323b;
  --muted: #60757b;
  --line: #dce7e8;
  --surface: #ffffff;
  --mist: #f4f8f7;
  --cream: #faf8f2;
  --shadow: 0 24px 60px rgba(6, 39, 51, 0.12);
  --shadow-soft: 0 12px 30px rgba(6, 39, 51, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --header-height: 126px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--surface);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(8, 47, 60, 0.08);
  backdrop-filter: blur(14px);
}

.announcement {
  color: #dff7f3;
  background: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.announcement-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement p {
  margin: 0;
}

.announcement p span {
  margin: 0 7px;
  color: var(--coral-500);
}

.announcement a {
  font-weight: 700;
  color: var(--surface);
}

.navbar {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  color: var(--surface);
  background: var(--teal-600);
  border-radius: 50% 50% 50% 14%;
}

.brand-mark::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--coral-500);
  border-radius: 50%;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--teal-600);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #34525b;
  font-size: 0.89rem;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--teal-600);
  box-shadow: 0 12px 26px rgba(8, 127, 120, 0.22);
}

.button-primary:hover {
  background: #076e69;
  box-shadow: 0 16px 32px rgba(8, 127, 120, 0.3);
}

.button-secondary {
  color: var(--navy-950);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 60, 0.18);
}

.button-secondary:hover {
  box-shadow: inset 0 0 0 1px var(--teal-600), 0 10px 24px rgba(6, 39, 51, 0.08);
}

.button-dark {
  color: var(--surface);
  background: var(--navy-950);
  box-shadow: 0 12px 26px rgba(6, 39, 51, 0.2);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 0;
  background: linear-gradient(115deg, #f9fcfb 0%, var(--teal-50) 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -18vw;
  width: 65vw;
  height: 100%;
  content: "";
  background: linear-gradient(145deg, rgba(10, 155, 144, 0.08), rgba(244, 132, 95, 0.06));
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-pattern {
  position: absolute;
  top: 44px;
  left: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  background-image: radial-gradient(var(--teal-500) 1.5px, transparent 1.5px);
  background-size: 17px 17px;
  mask-image: linear-gradient(to right, #000, transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  padding: 24px 0 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal-600);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #89ded5;
}

.hero h1,
.section-heading h2,
.industries-intro h2,
.about-copy h2,
.area-copy h2,
.quote-intro h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.2rem, 5.3vw, 5.5rem);
}

.hero h1 em {
  position: relative;
  color: var(--teal-600);
  font-weight: inherit;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 5%;
  height: 10px;
  content: "";
  background: var(--coral-500);
  border-radius: 50%;
  opacity: 0.24;
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #4b6871;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 34px 0 0;
  color: #405d65;
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  place-items: center;
  color: var(--teal-600);
  background: var(--teal-100);
  border-radius: 50%;
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 610px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  left: 38px;
  overflow: hidden;
  border-radius: 42% 42% 0 0 / 20% 20% 0 0;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 39, 51, 0.38), transparent 45%);
}

.service-badge {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 0;
  display: flex;
  width: 275px;
  min-height: 88px;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid rgba(8, 47, 60, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.service-badge-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-600);
  background: var(--teal-100);
  border-radius: 50%;
  font-size: 1.2rem;
}

.service-badge p {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1.35;
}

.service-badge strong {
  color: var(--navy-950);
  font-size: 0.87rem;
}

.service-badge span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.73rem;
}

.location-stamp {
  position: absolute;
  z-index: 3;
  top: 48px;
  right: -12px;
  display: grid;
  width: 130px;
  height: 130px;
  place-content: center;
  color: var(--navy-950);
  background: var(--coral-100);
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 1.12;
  text-align: center;
  transform: rotate(5deg);
}

.location-stamp span,
.location-stamp small {
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-stamp strong {
  margin: 5px 0;
  color: var(--teal-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.quick-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--surface);
  background: var(--navy-950);
}

.quick-strip > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 18px;
  padding: 24px 30px;
}

.quick-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.quick-strip > div > span {
  color: var(--coral-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-style: italic;
}

.quick-strip p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quick-strip strong {
  font-size: 0.88rem;
}

.quick-strip small {
  margin-top: 4px;
  color: #a9c2c7;
  font-size: 0.7rem;
}

.section {
  padding: 118px 0;
}

.services {
  background: var(--surface);
}

.section-heading h2,
.industries-intro h2,
.about-copy h2,
.area-copy h2,
.quote-intro h2 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 58px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  padding: 34px 30px 30px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  border-color: var(--teal-100);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.service-card-featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--surface);
  background: var(--teal-600);
}

.service-number {
  color: var(--teal-600);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-style: italic;
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.44);
  font-size: 5rem;
  text-align: center;
}

.service-card h3 {
  margin: 42px 0 15px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.52rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-card-featured h3 {
  margin-top: 0;
  color: var(--surface);
  font-size: 2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card-featured p {
  color: #d5f3ee;
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  color: #47636b;
  font-size: 0.82rem;
  list-style: none;
}

.service-card li::before {
  margin-right: 9px;
  color: var(--teal-500);
  content: "+";
  font-weight: 900;
}

.service-card-featured ul {
  grid-template-columns: 1fr 1fr;
  color: var(--surface);
}

.service-card-featured li::before {
  color: #9ce6dd;
}

.service-card-project {
  grid-column: 1 / -1;
  min-height: 0;
}

.project-card-heading {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.service-card-project .service-number {
  color: var(--teal-200);
  font-size: 5rem;
  text-align: center;
}

.service-card-project h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.project-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.project-service-item {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.project-service-item h4 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.3;
}

.project-service-item p {
  font-size: 0.82rem;
}

.industries {
  position: relative;
  overflow: hidden;
  color: var(--surface);
  background: var(--navy-950);
}

.industries::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.018);
}

.industries-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}

.industries-intro {
  position: sticky;
  top: 170px;
  align-self: start;
}

.industries-intro h2 {
  color: var(--surface);
}

.industries-intro > p:not(.eyebrow) {
  margin: 28px 0;
  color: #abc1c6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  color: #9ce6dd;
  border-bottom: 1px solid rgba(156, 230, 221, 0.5);
  font-weight: 800;
}

.industry-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-row {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-toggle {
  display: grid;
  width: 100%;
  grid-template-columns: 52px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 27px 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.industry-copy {
  display: flex;
  flex-direction: column;
}

.industry-index {
  color: var(--coral-500);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.industry-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}

.industry-summary {
  margin: 3px 0 0;
  color: #9db6bb;
  font-size: 0.84rem;
}

.industry-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #9ce6dd;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease, transform 220ms ease;
}

.industry-toggle:hover .industry-symbol,
.industry-toggle:focus-visible .industry-symbol {
  color: var(--navy-950);
  background: #9ce6dd;
}

.industry-row.is-expanded .industry-symbol {
  transform: rotate(180deg);
}

.industry-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 320ms ease, opacity 220ms ease, visibility 0s linear 320ms;
}

.industry-row.is-expanded .industry-details {
  max-height: 240px;
  opacity: 1;
  visibility: visible;
  transition: max-height 320ms ease, opacity 220ms ease, visibility 0s linear 0s;
}

.industry-details-inner {
  padding: 0 68px 27px 72px;
}

.industry-details p {
  margin: 0;
  color: #c4d4d7;
  font-size: 0.84rem;
  line-height: 1.75;
}

.why-us {
  background: var(--cream);
}

.centered {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 610px;
  margin: 22px auto 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(8, 47, 60, 0.08);
  border-radius: var(--radius-md);
}

.benefit-card > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--teal-600);
  background: var(--teal-100);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 30px 0 10px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.benefit-card-accent {
  color: var(--surface);
  background: var(--coral-500);
  border-color: transparent;
}

.benefit-card-accent > span {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.2);
}

.benefit-card-accent h3,
.benefit-card-accent p {
  color: var(--surface);
}

.about {
  overflow: hidden;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  align-items: center;
  gap: 100px;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.about-panel {
  position: absolute;
  border-radius: var(--radius-lg);
}

.about-panel-main {
  top: 0;
  right: 70px;
  bottom: 70px;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: var(--surface);
  background: var(--teal-600);
}

.about-panel-main::before,
.about-panel-main::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.about-panel-main::before {
  top: -70px;
  right: -20px;
  width: 290px;
  height: 290px;
}

.about-panel-main::after {
  top: -25px;
  right: 25px;
  width: 200px;
  height: 200px;
}

.about-panel-main p {
  margin: 0 0 7px;
  color: #bdebe5;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-panel-main strong {
  position: relative;
  z-index: 1;
  max-width: 390px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-shadow: 0 2px 2px rgba(6, 39, 51, 0.5), 0 8px 24px rgba(6, 39, 51, 0.28);
}

.about-headline-accent {
  color: #ffd1c2;
  font-style: normal;
  -webkit-text-stroke: 0.7px var(--navy-950);
  text-shadow: 0 2px 2px rgba(6, 39, 51, 0.75), 0 0 12px rgba(6, 39, 51, 0.45);
}

.about-panel-small {
  right: 0;
  bottom: 0;
  display: grid;
  width: 210px;
  height: 180px;
  place-content: center;
  color: var(--navy-950);
  background: var(--coral-100);
  box-shadow: var(--shadow);
  text-align: center;
}

.about-panel-small span {
  color: var(--coral-500);
  font-size: 1.5rem;
}

.about-panel-small p {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.15;
}

.about-lines {
  position: absolute;
  top: 34px;
  left: -30px;
  display: grid;
  gap: 8px;
  transform: rotate(-35deg);
}

.about-lines i {
  display: block;
  width: 78px;
  height: 3px;
  background: var(--coral-500);
  border-radius: 3px;
}

.about-copy > p:not(.eyebrow):not(.placeholder-note) {
  margin: 26px 0 0;
  color: var(--muted);
}

.placeholder-note {
  margin: 22px 0 30px;
  padding: 18px 20px;
  color: #526a71;
  background: var(--teal-50);
  border-left: 3px solid var(--teal-500);
  font-size: 0.82rem;
}

.service-area {
  background: var(--mist);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 0.94fr;
  align-items: center;
  gap: 84px;
}

.area-copy > p:not(.eyebrow):not(.area-note) {
  margin: 26px 0 0;
  color: var(--muted);
}

.city-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.city-cards article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.city-cards span {
  color: var(--coral-500);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.city-cards h3 {
  margin: 15px 0 6px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.city-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.area-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 0;
  color: #4a666e;
  font-size: 0.82rem;
  font-weight: 700;
}

.area-note span {
  color: var(--teal-600);
  font-size: 1.1rem;
}

.map-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background-color: #e9e5d9;
  background-image: linear-gradient(28deg, transparent 45%, rgba(8, 47, 60, 0.08) 46%, transparent 47%), linear-gradient(112deg, transparent 44%, rgba(8, 47, 60, 0.06) 45%, transparent 46%);
  background-size: 85px 85px, 105px 105px;
  border: 12px solid var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.map-water {
  position: absolute;
  top: -30px;
  bottom: -40px;
  left: -90px;
  width: 46%;
  color: rgba(255, 255, 255, 0.68);
  background: #74b9bd;
  border-radius: 0 58% 48% 0;
}

.map-water span {
  position: absolute;
  bottom: 155px;
  left: 80px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  transform: rotate(-18deg);
}

.map-road {
  position: absolute;
  height: 5px;
  background: #fffdf7;
  border: 1px solid rgba(8, 47, 60, 0.09);
  border-radius: 50%;
}

.road-one {
  top: 50%;
  right: -30px;
  left: 25%;
  transform: rotate(-15deg);
}

.road-two {
  top: 20%;
  right: 24%;
  width: 6px;
  height: 76%;
  transform: rotate(20deg);
}

.map-radius {
  position: absolute;
  top: 50%;
  left: 57%;
  width: 320px;
  height: 320px;
  border: 1px dashed rgba(8, 127, 120, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
}

.map-pin span {
  position: relative;
  width: 23px;
  height: 23px;
  background: var(--teal-600);
  border: 6px solid var(--surface);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 5px 13px rgba(6, 39, 51, 0.24);
  transform: rotate(-45deg);
}

.map-pin strong {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 5px;
  font-size: 0.74rem;
}

.map-pin-tampa {
  top: 45%;
  left: 42%;
}

.map-pin-brandon {
  top: 56%;
  left: 70%;
}

.map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 15px 18px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.map-label strong {
  color: var(--navy-950);
  font-size: 0.77rem;
}

.quote-section {
  padding: 118px 0;
  color: var(--surface);
  background: var(--navy-950);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 75px;
}

.quote-intro {
  position: sticky;
  top: 165px;
}

.quote-intro h2 {
  color: var(--surface);
}

.quote-intro > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: #aac0c5;
}

.quote-contact {
  display: grid;
  gap: 18px;
  padding-top: 35px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-contact p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.quote-contact span {
  margin-bottom: 3px;
  color: #7f9ca2;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-contact a,
.quote-contact strong {
  color: var(--surface);
  font-size: 0.9rem;
}

.quote-form {
  display: grid;
  gap: 24px;
  padding: 42px;
  color: var(--ink);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-three {
  grid-template-columns: 1.25fr 0.78fr 1fr;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field legend {
  color: var(--navy-950);
  font-size: 0.77rem;
  font-weight: 800;
}

.field label span,
.field legend span {
  color: #bd4d2f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #f9fbfa;
  border: 1px solid #d8e3e4;
  border-radius: 9px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--surface);
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(10, 155, 144, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #93a3a7;
}

.address-input-wrap {
  position: relative;
}

.address-input-wrap input {
  padding-right: 128px;
}

.google-attribution {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #7b8e93;
  font-size: 0.62rem;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.google-attribution strong {
  color: #52676d;
  font-weight: 800;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.address-validation {
  display: none;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.45;
}

.address-validation.address-valid,
.address-validation.address-invalid,
.address-validation.address-neutral {
  display: flex;
}

.address-validation.address-valid {
  color: #17664e;
  background: #e5f5ed;
  border: 1px solid #b8dfcf;
}

.address-validation.address-invalid {
  color: #9d3527;
  background: #fff0ed;
  border: 1px solid #f0c2b9;
}

.address-validation.address-neutral {
  color: #7b5a00;
  background: #fff8dd;
  border: 1px solid #ead997;
}

.pac-container {
  z-index: 120;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-soft);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.checkbox-fieldset,
.contact-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.checkbox-fieldset legend,
.contact-fieldset legend {
  margin-bottom: 10px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.checkbox-grid label,
.radio-row label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  cursor: pointer;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  transition: border-color 160ms ease, background 160ms ease;
}

.checkbox-grid label:has(input:checked),
.radio-row label:has(input:checked) {
  background: var(--teal-50);
  border-color: var(--teal-500);
}

.checkbox-grid input,
.radio-row input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--teal-600);
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-row label {
  min-width: 105px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit-row p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
}

.form-status {
  display: none;
  margin: -8px 0 0;
  padding: 13px 15px;
  color: var(--teal-600);
  background: var(--teal-50);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 750;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  color: #a9bdc2;
  background: #041f29;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr 1fr;
  gap: 55px;
  padding-top: 76px;
  padding-bottom: 68px;
}

.brand-footer .brand-copy strong {
  color: var(--surface);
}

.footer-brand > p {
  max-width: 330px;
  margin: 22px 0 0;
  font-size: 0.8rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: var(--surface);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #a9bdc2;
  font-size: 0.76rem;
}

.footer-column a:hover {
  color: var(--surface);
}

.footer-column p {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-column p + p {
  margin-top: 8px;
}

.footer-column p span {
  color: #66878e;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #6f8c92;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1100px) {
  :root {
    --header-height: 116px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-panel {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 38px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .quick-strip > div {
    padding-inline: 20px;
  }

  .about-grid,
  .area-grid {
    gap: 55px;
  }

  .quote-grid {
    gap: 46px;
  }

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

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .navbar {
    min-height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    z-index: 99;
    top: 114px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    padding: 36px 22px;
    overflow-y: auto;
    background: var(--surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-panel .button {
    align-self: stretch;
  }

  .hero {
    padding-top: 54px;
  }

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

  .hero-copy {
    max-width: 760px;
    padding-bottom: 25px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 9vw, 5rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-image-wrap {
    left: 50px;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-strip > div {
    min-height: 125px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .quick-strip small {
    line-height: 1.35;
  }

  .section,
  .quote-section {
    padding: 90px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .project-services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .industries-intro,
  .quote-intro {
    position: static;
  }

  .industries-intro {
    max-width: 700px;
  }

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

  .about-grid,
  .area-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .area-copy,
  .quote-intro {
    max-width: 720px;
  }

  .about-visual {
    max-width: 660px;
  }

  .area-copy {
    order: 1;
  }

  .map-card {
    width: min(100%, 660px);
    min-height: 500px;
  }

  .quote-form {
    max-width: 780px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 108px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement-inner {
    min-height: 30px;
    justify-content: center;
  }

  .announcement p {
    font-size: 0.65rem;
  }

  .announcement a {
    display: none;
  }

  .navbar {
    min-height: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 0.79rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .nav-panel {
    top: 106px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy {
    padding: 10px 0 14px;
  }

  .hero h1 {
    font-size: clamp(2.78rem, 13vw, 4rem);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 20px;
  }

  .hero-image-wrap {
    right: 0;
    left: 25px;
    border-radius: 34% 34% 0 0 / 14% 14% 0 0;
  }

  .location-stamp {
    top: 18px;
    right: -5px;
    width: 105px;
    height: 105px;
    border-width: 6px;
  }

  .service-badge {
    bottom: 22px;
    width: 250px;
  }

  .quick-strip {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .quick-strip > div {
    min-height: 88px;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 18px 22px;
  }

  .quick-strip > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .quick-strip small {
    font-size: 0.68rem;
  }

  .section,
  .quote-section {
    padding: 74px 0;
  }

  .section-heading h2,
  .industries-intro h2,
  .about-copy h2,
  .area-copy h2,
  .quote-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .service-card,
  .service-card-featured {
    grid-column: auto;
    min-height: 0;
  }

  .service-card-featured {
    display: block;
  }

  .service-card-featured .service-number {
    font-size: 3.2rem;
    text-align: left;
  }

  .service-card h3,
  .service-card-featured h3 {
    margin-top: 22px;
  }

  .service-card-featured ul {
    grid-template-columns: 1fr;
  }

  .project-card-heading {
    display: block;
  }

  .service-card-project .service-number {
    font-size: 3.2rem;
    text-align: left;
  }

  .service-card-project h3 {
    margin-top: 22px;
  }

  .project-services-grid {
    grid-template-columns: 1fr;
  }

  .industry-toggle {
    grid-template-columns: 36px 1fr 40px;
    gap: 12px;
  }

  .industry-symbol {
    display: grid;
  }

  .industry-title {
    font-size: 1.22rem;
  }

  .industry-details-inner {
    padding: 0 8px 24px 48px;
  }

  .address-input-wrap input {
    padding-right: 108px;
  }

  .google-attribution {
    right: 10px;
    font-size: 0.56rem;
  }

  .benefit-grid,
  .city-cards {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 480px;
  }

  .about-panel-main {
    right: 28px;
    bottom: 74px;
    padding: 32px;
  }

  .about-panel-small {
    width: 170px;
    height: 150px;
  }

  .about-lines {
    left: -15px;
  }

  .map-card {
    min-height: 430px;
    border-width: 8px;
  }

  .map-radius {
    width: 245px;
    height: 245px;
  }

  .map-pin-brandon {
    left: 63%;
  }

  .quote-form {
    gap: 21px;
    padding: 25px 20px;
    border-radius: 20px;
  }

  .form-row,
  .form-row-three,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    gap: 7px;
  }

  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 20px 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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