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

@font-face {
  font-family: "Manrope";
  src: url("/fonts/CircularStd-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --orange: #ff5e33;
  --black: #282828;
  --paper: #ffffff;
  --soft: #f4f4f2;
  --line: #c8c8c8;
  --cyan: #a2cecf;
  --header: 67px;
  --pad: clamp(1rem, 5.2vw, 6rem);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  font-family: "Manrope", Arial, sans-serif;
}

body {
  margin: 0;
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

main {
  overflow: hidden;
}

body,
button,
input,
textarea {
  font-family: "Manrope", Arial, sans-serif;
}

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

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

/* Mobile safety net: never allow horizontal scroll, keep media in-bounds */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

/* Lock body scroll while the overlay nav is open */
html.nav-open,
html.nav-open body {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header);
  background: var(--black);
  color: #fff;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 28px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 14px;
  border: 5px solid var(--orange);
  border-radius: 999px;
}

.brand-mark::before {
  left: 0;
  top: 0;
}

.brand-mark::after {
  right: 0;
  bottom: 0;
}

.menu-button {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-height: 48px;
  margin-left: auto;
  padding: 0.42rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 999px;
  color: #fff;
  line-height: 1.02;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.header-phone span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
}

.header-phone:hover {
  border-color: var(--orange);
  background: rgb(255 255 255 / 0.08);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 3px;
  border-radius: 10px;
  background: currentColor;
}

.menu-button::before {
  top: 12px;
}

.menu-button span {
  top: 22px;
}

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

.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.16, 0.88, 0.45, 1);
  display: grid;
  grid-template-rows: var(--header) 1fr;
}

.nav-open .overlay-nav {
  transform: translateX(0);
}

.overlay-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--pad);
}

.close-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--orange);
  font-size: 46px;
  line-height: 1;
}

.overlay-links {
  display: grid;
  align-content: center;
  padding: 4rem var(--pad);
}

.overlay-links a {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  font-size: clamp(42px, 6vw, 104px);
  font-weight: 500;
  line-height: 1;
}

.overlay-links a::after {
  content: "\2192";
  flex: 0 0 auto;
  font-size: 0.82em;
  color: var(--orange);
}

.overlay-links .overlay-phone {
  color: var(--orange);
}

.power-hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  background: #000;
  color: #fff;
  display: grid;
  align-items: end;
}

.power-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.88), rgb(0 0 0 / 0.44)), var(--hero-image) center / cover no-repeat;
  opacity: 0.78;
}

.power-hero::after {
  content: "";
  position: absolute;
  width: min(70vw, 980px);
  height: min(70vw, 980px);
  right: -28vw;
  bottom: -36vw;
  border: 1px solid rgb(255 94 51 / 0.48);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1872px);
  padding: clamp(4rem, 8vw, 10rem) var(--pad) clamp(3rem, 6vw, 6rem);
}

.hero-label,
.eyebrow {
  margin: 0 0 1.8rem;
  color: var(--orange);
  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.card-title {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(52px, 8vw, 154px);
}

.hero-copy {
  max-width: 670px;
  margin: 2rem 0 0;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.12;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 2.3rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.pill-button:hover {
  background: #fff;
  border-color: var(--black);
  transform: translateY(-2px);
}

.intro-panel {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: clamp(5rem, 8vw, 10rem) var(--pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(3rem, 10vw, 12rem);
  align-items: start;
}

.section-title {
  font-size: clamp(48px, 5.2vw, 96px);
}

.intro-copy {
  font-size: clamp(23px, 1.7vw, 34px);
  font-weight: 700;
  line-height: 1.08;
}

.oval-media {
  min-height: clamp(340px, 38vw, 600px);
  margin-top: clamp(4rem, 7vw, 9rem);
  margin-right: calc(var(--pad) * -1);
  border-radius: 999px 0 0 999px;
  background: #000;
  overflow: hidden;
}

.oval-media .media-fill {
  width: 100%;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(90deg, rgb(0 0 0 / 0.12), rgb(0 0 0 / 0.52)), var(--media-image) center / cover no-repeat;
  transition: transform 1.2s cubic-bezier(0.16, 0.88, 0.45, 1);
}

.oval-media:hover .media-fill {
  transform: scale(1.06);
}

.split-dark {
  background: var(--black);
  color: #fff;
  padding: clamp(5rem, 8vw, 10rem) var(--pad);
}

.split-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
}

.metric {
  color: var(--orange);
  font-size: clamp(66px, 11vw, 180px);
  font-weight: 500;
  line-height: 0.82;
}

.listing {
  background: #fff;
  padding: clamp(5rem, 8vw, 10rem) var(--pad);
}

.listing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 8vw, 10rem);
  margin-bottom: clamp(3rem, 5vw, 6rem);
}

.filter-row {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: 700;
}

.filter-pill::after {
  content: "";
  width: 28px;
  height: 28px;
  border-right: 4px solid var(--orange);
  border-bottom: 4px solid var(--orange);
  transform: rotate(45deg) translateY(-5px);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.item-card {
  min-height: 280px;
  padding: clamp(1.4rem, 2.2vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
}

.item-card:hover {
  background: var(--orange);
  color: var(--black);
}

.item-card p {
  margin: 1.25rem 0 0;
  font-size: 17px;
  line-height: 1.28;
}

.item-card .arrow {
  align-self: flex-end;
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.item-card:hover .arrow {
  color: var(--black);
  transform: translateX(5px);
}

.card-title {
  font-size: clamp(32px, 3vw, 58px);
}

.detail-body {
  background: #fff;
  padding: clamp(5rem, 8vw, 10rem) var(--pad);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.58fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.detail-copy,
.roof-scope-help,
.sarasota-sidebar {
  min-width: 0;
}

.detail-copy .lead-text {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.lead-text {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 64px);
  font-weight: 500;
  line-height: 1.04;
}

.body-copy {
  font-size: clamp(20px, 1.4vw, 27px);
}

.body-copy p {
  margin: 0 0 2rem;
}

.roof-scope-help,
.sarasota-sidebar {
  position: sticky;
  top: calc(var(--header) + 24px);
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.08);
}

.roof-scope-help h2,
.sarasota-sidebar h2 {
  margin: 0 0 1rem;
  color: var(--black);
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.roof-scope-help .sarasota-button,
.sarasota-sidebar .sarasota-button,
.scope-phone {
  width: 100%;
  margin-top: 1rem;
}

.scope-phone {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-weight: 700;
}

.sarasota-sidebar p,
.sarasota-sidebar a,
.roof-scope-help p,
.footer-col a,
.footer-col p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.side-box {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.side-box h3 {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: clamp(18px, 1.1vw, 24px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-box p {
  margin: 0;
  font-size: clamp(19px, 1.35vw, 25px);
  font-weight: 500;
  line-height: 1.12;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1rem;
  color: var(--black);
  font: inherit;
  letter-spacing: -0.02em;
}

.contact-form textarea {
  min-height: 150px;
}

.footer-cta {
  background: var(--orange);
  color: var(--black);
  padding: clamp(4rem, 7vw, 8rem) var(--pad);
}

.footer-cta .section-title {
  max-width: 940px;
}

.site-footer {
  background: var(--black);
  color: #fff;
  padding: clamp(3rem, 5vw, 6rem) var(--pad) 2rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) repeat(2, minmax(0, 0.72fr)) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.footer-brand {
  font-size: clamp(30px, 3.1vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.footer-col h3 {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col {
  min-width: 0;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.footer-map,
.site-footer iframe {
  display: block;
  width: 100%;
  min-height: 210px;
  margin-top: 1rem;
  border: 0;
  border-radius: 16px;
  background: #111;
}

.delxi-h-footer-map {
  display: none !important;
}

.sticky-phone {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 14px 40px rgb(0 0 0 / 0.28);
  font-size: 25px;
  font-weight: 700;
}

.sarasota-title-band {
  padding: clamp(2.5rem, 5vw, 5rem) var(--pad) 0;
}

.sarasota-title-band h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(36px, 4.4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.sarasota-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4rem) var(--pad) clamp(3rem, 6vw, 6rem);
}

.sarasota-copyblock {
  min-width: 0;
}

.sarasota-copyblock p {
  margin: 0 0 1.1rem;
  color: var(--black);
  font-size: clamp(18px, 1.18vw, 21px);
  line-height: 1.68;
}

.sarasota-copyblock h2,
.sarasota-copyblock h3 {
  margin: 2rem 0 0.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sarasota-faq {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.sarasota-faq h2 {
  margin: 0 0 1rem;
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.02em;
}

.sarasota-faq details {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.sarasota-faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.sarasota-faq summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 700;
}

.sarasota-faq details[open] summary::after {
  content: "\2013";
}

.sarasota-faq details p {
  margin: 0.7rem 0 0;
  color: var(--black);
  line-height: 1.6;
}

.sarasota-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.8rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
}

.sarasota-button:hover {
  background: #fff;
  border-color: var(--black);
}

.sarasota-contact-band {
  background: var(--black);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 5rem) var(--pad);
}

.sarasota-contact-band .sarasota-band-title {
  margin-bottom: 1.2rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sarasota-contact-band label {
  display: block;
  margin-bottom: 0.9rem;
}

.sarasota-contact-band input,
.sarasota-contact-band select,
.sarasota-contact-band textarea {
  display: block;
  width: 100%;
  max-width: 620px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
}

.sarasota-contact-band button {
  min-height: 48px;
  margin-top: 0.4rem;
  padding: 0.78rem 2.3rem;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-weight: 500;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
}

@media (max-width: 1024px) {
  :root {
    --header: 50px;
    --pad: 1rem;
  }

  body {
    font-size: 18px;
  }

  .brand {
    font-size: 16px;
  }

  .header-phone {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 25px;
  }

  .brand-mark::before,
  .brand-mark::after {
    width: 23px;
    height: 12px;
    border-width: 4px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

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

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

  .intro-grid,
  .split-dark-grid,
  .listing-head,
  .detail-grid,
  .sarasota-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .listing,
  .detail-body,
  .split-dark {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .oval-media {
    min-height: 310px;
    margin-right: calc(var(--pad) * -1);
    border-radius: 999px 0 0 999px;
  }

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

  .item-card {
    min-height: auto;
  }

  .filter-row {
    display: none;
  }

  .filter-pill {
    width: 100%;
    justify-content: space-between;
    font-size: 34px;
  }

  .overlay-links a {
    font-size: clamp(36px, 13vw, 64px);
  }

  .overlay-top .brand {
    max-width: calc(100% - 70px);
  }

  .overlay-top .brand span:first-child {
    max-width: 100%;
  }

  .overlay-top .brand-mark {
    display: none;
  }

  .close-button {
    position: absolute;
    top: 1px;
    right: calc(var(--pad) + 8px);
    z-index: 2;
    font-size: 40px;
  }

  .roof-scope-help,
  .sarasota-sidebar {
    position: static;
  }

  .sticky-phone {
    display: inline-flex;
  }

  .footer-bottom {
    display: grid;
  }
}

/* ---- Phone refinements (<=768px) ---- */
@media (max-width: 768px) {
  body {
    font-size: 17px;
    line-height: 1.4;
  }

  /* Ensure single-column stacking even if a wider rule is overridden */
  .intro-grid,
  .split-dark-grid,
  .listing-head,
  .detail-grid,
  .footer-grid,
  .intro-grid > *,
  .detail-grid > * {
    grid-template-columns: 1fr;
  }

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

  /* Hero readability + no overflow */
  .power-hero {
    min-height: calc(100svh - var(--header));
  }

  .hero-inner {
    padding: clamp(2.5rem, 9vw, 5rem) var(--pad) clamp(2rem, 6vw, 4rem);
  }

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

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

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

  .lead-text {
    font-size: clamp(26px, 7vw, 44px);
  }

  .intro-copy {
    font-size: 21px;
  }

  /* Trim vertical padding so sections aren't huge on phones */
  .intro-panel,
  .listing,
  .detail-body,
  .split-dark,
  .footer-cta,
  .site-footer {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .intro-panel,
  .listing,
  .detail-body,
  .split-dark {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  /* Comfortable tap targets for all links/buttons/fields */
  .overlay-links a,
  .footer-col a,
  .side-box a,
  .pill-button,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
  }

  .footer-col a {
    display: inline-flex;
    align-items: center;
    padding: 6px 0;
    margin-bottom: 0.35rem;
  }

  .side-box p a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* prevents iOS zoom-on-focus */
  }

  /* Footer to a single readable column */
  .footer-grid {
    gap: 2rem;
  }

  /* ---- -fl location pages (wrapped fragments) use sarasota-* classes ---- */
  .sarasota-detail {
    grid-template-columns: 1fr;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .sarasota-contact-band input,
  .sarasota-contact-band select,
  .sarasota-contact-band textarea {
    max-width: 100%;
    font-size: 16px;
    min-height: 44px;
  }

  .sarasota-contact-band textarea {
    min-height: 120px;
  }

  .sarasota-button {
    min-height: 46px;
  }
}

/* ---- Small phones (<=480px) ---- */
@media (max-width: 480px) {
  :root {
    --pad: 1rem;
  }

  .hero-title {
    font-size: clamp(32px, 10.5vw, 48px);
  }

  .overlay-links {
    padding: 2.5rem var(--pad);
  }

  .overlay-links a {
    font-size: clamp(30px, 11vw, 48px);
    padding: 1.05rem 0;
  }

  .footer-bottom {
    gap: 0.5rem;
  }
}
/* brand-logo-css */.brand-logo{height:40px;width:auto;display:block;max-width:320px}.brand{display:inline-flex;align-items:center}.footer-brand .brand-logo{height:56px;max-width:380px}
