@font-face {
  font-family: "Acumin Pro";
  src: url("/fonts/acumin-pro-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acumin Pro";
  src: url("/fonts/acumin-pro-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acumin Pro Condensed";
  src: url("/fonts/acumin-pro-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/oswald-400-700.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #eb2427;
  --ink: #2b2b2b;
  --paper: #e9e9e9;
  --soft: #f4f4f4;
  --line: #d2d2d2;
  --dark: #222;
  --white: #fff;
  --header: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Acumin Pro", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: var(--white);
  border-bottom: 1px solid #e4e4e4;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) 1.75fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--ink);
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  font-size: 28px;
}

.brand-text span:last-child {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link,
.nav-button,
.header-action,
.mobile-link,
.footer-link {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-link,
.nav-button {
  height: 100%;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #2f2f2f;
  padding: 0 15px;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-phone {
  color: var(--red);
  white-space: nowrap;
  font-size: 15px;
}

.nav-link:hover,
.nav-button:hover,
.nav-item:focus-within .nav-button,
.nav-item:hover .nav-button {
  color: var(--red);
}

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 14px);
  width: min(780px, 92vw);
  background: #2d2d2d;
  color: var(--white);
  box-shadow: 0 22px 52px rgb(0 0 0 / 0.24);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-feature {
  min-height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 0.2), rgb(0 0 0 / 0.58));
}

.mega-group {
  padding: 28px 30px 32px;
  border-left: 1px solid rgb(255 255 255 / 0.14);
}

.mega-kicker,
.section-kicker,
.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.mega-title {
  margin: 0 0 18px;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: 40px;
  line-height: 0.95;
  text-transform: uppercase;
}

.mega-list {
  display: grid;
  gap: 12px;
}

.mega-list a {
  font-size: 15px;
  line-height: 1.25;
  color: #f4f4f4;
}

.mega-list a:hover {
  color: var(--red);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.header-action:hover {
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: var(--white);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 22px 2px;
  color: var(--red);
  position: relative;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle::before {
  top: 16px;
}

.menu-toggle span {
  top: 24px;
}

.menu-toggle::after {
  top: 32px;
}

.menu-open .menu-toggle::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle {
  background-image: none;
  background-color: var(--red);
  color: var(--white);
}

.menu-open .menu-toggle::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #2b2b2b;
  color: var(--white);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
}

.mobile-panel .brand-text {
  color: var(--white);
}

.mobile-panel .brand-text span:last-child {
  color: var(--red);
}

.menu-open .mobile-panel {
  transform: translateX(0);
}

.mobile-top {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.mobile-close {
  width: 50px;
  height: 50px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.mobile-phone {
  margin-top: 18px;
  padding: 16px 18px;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-bottom: 0;
}

.mobile-links {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 24px 26px 40px;
  overflow: auto;
}

.mobile-link {
  padding: 18px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111 center / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.74), rgb(0 0 0 / 0.26) 54%, rgb(0 0 0 / 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgb(0 0 0 / 0.5), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: 110px 0 88px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title,
.footer-title {
  margin: 0;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title {
  max-width: 840px;
  margin-top: 18px;
  font-size: clamp(74px, 8.8vw, 142px);
}

.hero:not(.hero-home) .hero-title {
  max-width: 980px;
  font-size: clamp(54px, 6.4vw, 104px);
}

.hero-title .red-block {
  display: inline-block;
  margin-top: 6px;
  padding: 0 16px 10px;
  background: var(--red);
  color: var(--white);
}

.hero-copy {
  width: min(610px, 100%);
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.square-btn,
.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.square-btn {
  width: auto;
  min-width: 58px;
  height: 58px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
}

.contact-btn {
  letter-spacing: 0;
}

.hero-phone {
  background: var(--white);
  color: var(--ink);
}

.square-btn:hover,
.text-btn:hover {
  background: var(--ink);
  color: var(--white);
}

.text-btn {
  min-height: 52px;
  padding: 0 24px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--paper);
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 7vw, 112px);
}

.split-copy p {
  max-width: 580px;
  margin: 22px 0 0;
}

.split-links,
.dark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.inline-link:hover {
  background: var(--ink);
}

.inline-link-light {
  background: var(--white);
  color: var(--ink);
}

.inline-link-light:hover {
  background: var(--red);
  color: var(--white);
}

.split-image {
  min-height: 460px;
  background: #333 center / cover no-repeat;
}

.section-title {
  max-width: 720px;
  font-size: clamp(52px, 6vw, 96px);
}

.work-band {
  padding: 82px 40px 92px;
  background: #d7d7d7;
}

.band-inner,
.content-inner,
.footer-inner {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.band-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.band-head p {
  margin: 0;
  font-size: 19px;
}

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

.card {
  min-height: 278px;
  background: var(--white);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgb(0 0 0 / 0.04);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.card:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.card:hover .card-kicker,
.card:hover .card-arrow {
  color: var(--white);
}

.card-title {
  margin: 0;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: 42px;
  line-height: 0.96;
  text-transform: uppercase;
}

.card p {
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.45;
}

.card-arrow {
  align-self: flex-start;
  margin-top: 28px;
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.dark-band {
  background: #303030;
  color: var(--white);
  padding: 92px 40px;
}

.dark-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.red-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  padding: 42px;
  text-align: center;
}

.red-panel strong {
  display: block;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.78;
  text-transform: uppercase;
}

.red-panel span {
  margin-top: 22px;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.detail-main {
  padding: 88px 40px 96px;
  background: var(--paper);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: start;
}

.red-lead {
  margin: 0;
  color: var(--red);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 700;
}

.body-copy {
  max-width: 740px;
}

.body-copy p {
  margin: 26px 0 0;
}

.side-stack {
  display: grid;
  gap: 18px;
}

.side-box {
  background: #d6d6d6;
  padding: 30px;
}

.side-box h3 {
  margin: 0 0 14px;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: 38px;
  line-height: 0.96;
  text-transform: uppercase;
}

.side-box p {
  margin: 0;
  font-size: 16px;
}

.image-panel {
  min-height: 370px;
  background: #333 center / cover no-repeat;
}

.listing-section {
  padding: 78px 40px 98px;
  background: #d7d7d7;
}

.listing-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.listing-head p {
  margin: 0;
  align-self: end;
}

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

.listing-card {
  min-height: 244px;
  padding: 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.listing-card:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.listing-card h3 {
  margin: 0;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: 38px;
  line-height: 0.96;
  text-transform: uppercase;
}

.listing-card p {
  margin: 18px 0 0;
  font-size: 15.5px;
  line-height: 1.44;
}

.thumb-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  background: var(--white);
  min-height: 440px;
  transition: transform 180ms ease;
}

.thumb-card:hover {
  transform: translateY(-3px);
}

.thumb-card .thumb {
  background: #333 center / cover no-repeat;
}

.thumb-card .card-body {
  padding: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 54px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-line {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line b {
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--red);
}

.contact-form {
  background: #d6d6d6;
  padding: 34px;
}

body .wdxln-h-breadcrumbs {
  width: min(1240px, calc(100% - 80px));
  padding: 18px 0 0;
  color: var(--ink);
  opacity: 1;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

body .wdxln-h-breadcrumbs a {
  border-bottom: 0;
  color: var(--red);
}

.fortmyers-hero {
  width: min(1240px, calc(100% - 80px));
  margin: 54px auto 0;
  overflow: hidden;
  background: #1e1e1e;
}

.fortmyers-hero img {
  width: 100%;
  height: clamp(260px, 34vw, 440px);
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.fortmyers-hero-small {
  margin-top: 46px;
}

.fortmyers-title-band {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px) 0 clamp(28px, 4vw, 46px);
  background: var(--paper);
}

.fortmyers-title-band h1 {
  width: min(980px, 100%);
  margin: 0;
  color: #111827;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: clamp(50px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fortmyers-detail {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 46px;
  align-items: start;
}

.fortmyers-copyblock {
  background: var(--white);
  padding: clamp(32px, 5vw, 62px);
  box-shadow: 0 24px 58px rgb(0 0 0 / 0.06);
}

.fortmyers-copyblock p {
  margin: 0 0 24px;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.72;
}

.fortmyers-copyblock p:first-child {
  color: #171717;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
}

.fortmyers-faq {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 3px solid var(--red);
}

.fortmyers-faq h2,
.fortmyers-band-title,
.fortmyers-sidebar h2,
.fortmyers-sidebar h3 {
  margin: 0;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
}

.fortmyers-faq h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 58px);
}

.fortmyers-faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.fortmyers-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.fortmyers-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.fortmyers-sidebar {
  position: sticky;
  top: calc(var(--header) + 24px);
  align-self: start;
  display: grid;
  gap: 18px;
  background: #292929;
  color: var(--white);
  padding: 30px;
}

.fortmyers-sidebar h2 {
  font-size: 46px;
}

.fortmyers-sidebar h3 {
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  font-size: 30px;
}

.fortmyers-sidebar p {
  margin: 0;
  word-break: break-word;
}

.fortmyers-sidebar a:not(.fortmyers-button) {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  color: #f7f7f7;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.fortmyers-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.fortmyers-contact-band {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 4vw, 44px);
  background: #2f2f2f;
  color: var(--white);
}

.fortmyers-band-title {
  color: var(--white);
  font-size: clamp(52px, 7vw, 104px);
}

.fortmyers-contact-band .fortmyers-form,
.fortmyers-contact-band .wdxln-h-contact-form {
  background: transparent;
  padding: 0;
}

.fortmyers-contact-band .wdxln-h-contact-form label,
.fortmyers-contact-band .fortmyers-form label {
  color: var(--white);
}

.fortmyers-contact-band .wdxln-h-contact-form button[type="submit"],
.fortmyers-contact-band .fortmyers-form button[type="submit"] {
  width: auto;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--ink);
  padding: 15px 14px;
  font: inherit;
}

.form-row textarea {
  min-height: 136px;
  resize: vertical;
}

.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 54px 40px;
}

.cta-inner {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0;
  font-family: "Acumin Pro Condensed", Arial, sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.9;
  text-transform: uppercase;
}

.cta-inner p {
  margin: 14px 0 0;
}

.cta-inner .text-btn {
  background: var(--white);
  color: var(--red);
}

.site-footer {
  background: #333;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 40px;
  padding: 66px 0 58px;
}

.footer-title {
  max-width: 320px;
  color: var(--white);
  font-size: 48px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 10px;
  color: #e7e7e7;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding: 22px 0;
  color: #cfcfcf;
  font-size: 13px;
}

.footer-bottom .footer-inner {
  display: flex;
  justify-content: space-between;
  padding: 0;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

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

  .card-grid,
  .listing-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header: 82px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .brand-text {
    font-size: 22px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content,
  .band-inner,
  .content-inner,
  .fortmyers-hero,
  .fortmyers-title-band,
  .fortmyers-detail,
  .fortmyers-contact-band,
  .footer-inner,
  .cta-inner {
    width: min(100% - 36px, 640px);
  }

  .hero-content {
    padding: 90px 0 56px;
  }

  .hero-title {
    font-size: clamp(58px, 16vw, 82px);
  }

  .hero:not(.hero-home) .hero-title {
    font-size: clamp(46px, 13vw, 72px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .split-section,
  .band-head,
  .dark-layout,
  .detail-layout,
  .fortmyers-detail,
  .fortmyers-contact-band,
  .listing-head,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .split-copy {
    padding: 54px 18px;
  }

  .split-image {
    min-height: 320px;
  }

  .work-band,
  .dark-band,
  .detail-main,
  .listing-section,
  .cta-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card-grid,
  .listing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .listing-card,
  .card {
    min-height: auto;
  }

  .cta-inner .text-btn {
    justify-self: start;
  }

  .fortmyers-sidebar {
    position: static;
  }

  .fortmyers-copyblock {
    padding: 28px 22px;
  }

  .fortmyers-title-band h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .footer-bottom .footer-inner {
    display: grid;
    gap: 10px;
  }
}

/* ============================================================
   Mobile optimization + hamburger hardening (Pass B)
   ============================================================ */

/* Horizontal-overflow safety net at any width */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Media never overflows its column */
img,
iframe,
video,
svg {
  max-width: 100%;
}

iframe,
video {
  height: auto;
}

/* Scrollable wide content instead of pushing the page wide */
table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

/* Native, on-theme, tappable contact-form fields (forms use label-wrapped
   inputs with .wdxln-h-contact-form / .fortmyers-form, not .form-row). */
.wdxln-h-contact-form label,
.fortmyers-form label {
  display: block;
  margin-bottom: 16px;
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.wdxln-h-contact-form input,
.wdxln-h-contact-form select,
.wdxln-h-contact-form textarea,
.fortmyers-form input,
.fortmyers-form select,
.fortmyers-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 7px;
  min-height: 48px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  padding: 14px;
  font: inherit;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.wdxln-h-contact-form select,
.fortmyers-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}

.wdxln-h-contact-form textarea,
.fortmyers-form textarea {
  min-height: 140px;
  resize: vertical;
}

.wdxln-h-contact-form input:focus,
.wdxln-h-contact-form select:focus,
.wdxln-h-contact-form textarea:focus,
.fortmyers-form input:focus,
.fortmyers-form select:focus,
.fortmyers-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.wdxln-h-contact-form button[type="submit"],
.fortmyers-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 6px;
  padding: 0 26px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}

.wdxln-h-contact-form button[type="submit"]:hover,
.fortmyers-form button[type="submit"]:hover {
  background: var(--ink);
}

/* Lock body scroll while the mobile drawer is open */
html.menu-open,
html.menu-open body {
  overflow: hidden;
}

/* Crisp, centered close (X) glyph */
.mobile-close {
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Dim scrim behind the drawer; tapping it closes the menu (JS-wired) */
.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgb(0 0 0 / 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.menu-open .menu-scrim {
  opacity: 1;
  visibility: visible;
}

/* Make sure the drawer sits above the scrim and the whole nav fits */
.mobile-panel {
  z-index: 100;
  max-width: 100%;
}

/* Reinforced phone breakpoint: stacking, readability, tap targets.
   (Complements the existing 1120px / 780px rules.) */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Desktop nav hidden, burger shown (belt-and-suspenders) */
  .desktop-nav,
  .header-action {
    display: none;
  }

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

  /* Single-column stacking for every multi-column block */
  .card-grid,
  .listing-grid,
  .footer-inner,
  .split-section,
  .band-head,
  .dark-layout,
  .detail-layout,
  .fortmyers-detail,
  .fortmyers-contact-band,
  .listing-head,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  /* Comfortable side gutters so content isn't jammed to the edge */
  .hero-content,
  .band-inner,
  .content-inner,
  .fortmyers-hero,
  .fortmyers-title-band,
  .fortmyers-detail,
  .fortmyers-contact-band,
  .footer-inner,
  .cta-inner {
    width: min(100% - 32px, 640px);
  }

  /* Tap targets >= 44px */
  .mobile-link {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-link,
  .square-btn,
  .text-btn,
  .header-action,
  .footer-col a,
  .card,
  .listing-card {
    min-height: 44px;
  }

  .text-btn,
  .header-action {
    padding: 14px 22px;
  }

  /* Clamp hero/section type so it never forces overflow */
  .hero-title {
    font-size: clamp(40px, 12vw, 72px);
  }

  .hero:not(.hero-home) .hero-title {
    font-size: clamp(38px, 11vw, 64px);
  }

  .section-title {
    font-size: clamp(34px, 8vw, 60px);
  }

  .cta-inner h2 {
    font-size: clamp(32px, 8vw, 56px);
  }

  /* Form container breathing room on small screens */
  .contact-form,
  .fortmyers-form {
    padding: 24px 20px;
  }

  .fortmyers-hero {
    margin-top: 28px;
  }

  .fortmyers-hero img {
    height: 240px;
  }

  .fortmyers-title-band {
    padding: 32px 0 24px;
  }

  .fortmyers-copyblock,
  .fortmyers-sidebar,
  .fortmyers-contact-band {
    padding: 24px 20px;
  }

  .fortmyers-copyblock p {
    font-size: 16.5px;
  }

  .fortmyers-sidebar {
    position: static;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 0 48px;
  }

  .brand-text {
    font-size: 20px;
  }

  .mobile-link {
    font-size: 21px;
  }
}

/*brand-logo-css*/
.brand{display:inline-flex !important;align-items:center}
.brand-logo{height:46px;width:auto;display:block;max-width:300px}
