/* Mobile-first — Island local biz + marketing landing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f3efe6;
  --card: #fffcf6;
  --text: #172421;
  --muted: #5a6b63;
  --border: #d6cec0;
  --accent: #0c5552;
  --accent-deep: #073836;
  --accent-soft: #e4f1ef;
  --accent-text: #fff;
  --warm: #c45f35;
  --warm-soft: #f8ebe3;
  --sand: #e8dfd0;
  --banner: #fff3cd;
  --banner-border: #e6c200;
  --danger: #b00020;
  --max: 40rem;
  --lp-max: 68rem;
  --radius: 14px;
  --shadow: 0 14px 36px rgba(23, 36, 33, 0.1);
  --shadow-sm: 0 3px 12px rgba(23, 36, 33, 0.07);
}

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #172421;
  background: #f3efe6;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--accent);
}

.banner {
  background: var(--banner);
  border-bottom: 1px solid var(--banner-border);
  color: #5c4b00;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1rem 3rem;
}

header.site-header {
  margin-bottom: 1.25rem;
}

.category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0.25rem 0;
}

.cta {
  /* Safari-safe solid fallbacks if vars fail */
  color: #fff !important;
  background: #0c5552;

  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: var(--accent-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  margin: 0.35rem 0;
  border: 2px solid transparent;
}

.cta:hover,
.cta:focus {
  background: var(--accent-deep);
  color: var(--accent-text);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}

.card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.card li {
  margin: 0.25rem 0;
}

.about {
  white-space: pre-wrap;
}

footer.site-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

.not-found {
  text-align: center;
  padding: 3rem 1rem;
}

.not-found h1 {
  font-size: 2rem;
}

.demo-hello {
  text-align: center;
  padding: 2.5rem 1rem;
}

.demo-hello code {
  background: #eee;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.demo-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.demo-links li {
  margin: 0.5rem 0;
}

@media (min-width: 640px) {
  .cta {
    display: inline-block;
    width: auto;
    min-width: 12rem;
  }
}

/* —— Marketing landing (/) —— */
body.landing {
  background: var(--bg);
}

body.landing .landing-wrap {
  max-width: var(--lp-max);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 206, 192, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.lp-nav-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-mark {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1a7a72, #0d4f4f 55%, #b85c38);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.lp-nav-links {
  display: none;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.92rem;
}

.lp-nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.lp-nav-links a:hover,
.lp-nav-links a:focus {
  color: var(--accent);
}

.lp-nav-mail {
  background: var(--accent);
  color: #fff !important;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.lp-hero {
  position: relative;
  color: #fff;
  min-height: min(82vh, 40rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.lp-hero-media {
  position: absolute;
  inset: 0;
}

.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.lp-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(185deg, rgba(6, 28, 28, 0.28) 0%, rgba(6, 28, 28, 0.58) 38%, rgba(6, 28, 28, 0.82) 68%, rgba(5, 24, 24, 0.94) 100%),
    linear-gradient(95deg, rgba(7, 36, 34, 0.62) 0%, rgba(7, 36, 34, 0.22) 55%, rgba(180, 110, 70, 0.12) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 3rem;
  margin: 0 auto;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #d7ebe8;
  margin: 0 0 0.85rem;
}

.lp-hero .lp-eyebrow {
  color: #e4f3f0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 17ch;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
  font-weight: 700;
}

.lp-hero .hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 2.2vw, 1.14rem);
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.lp-hero .hero-sub strong {
  color: #fff;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0.5rem 0 1rem;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1rem 0 0.5rem;
  align-items: stretch;
}

.cta-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.lp-hero .cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.cta-secondary:hover,
.cta-secondary:focus {
  filter: none;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.lp-hero .cta-secondary:hover,
.lp-hero .cta-secondary:focus {
  background: #fff;
  color: var(--accent-deep);
}

.cta-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.cta-ghost:hover,
.cta-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-pending {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
  color: var(--muted);
  border-color: var(--border);
  background: #eee;
}

.lp-hero .cta-pending {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.phone-note {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
}

.lp-hero .phone-note {
  color: rgba(255, 255, 255, 0.75);
}

.lp-hero .phone-note code {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lp-trust-bar {
  background: linear-gradient(90deg, #073836 0%, #0c5552 55%, #1a4a40 100%);
  color: #e8f4f3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.lp-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-trust-item strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.lp-trust-item span {
  font-size: 0.85rem;
  opacity: 0.85;
}

.lp-body {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.lp-section {
  margin: 2.85rem 0;
}

.lp-section-head {
  margin-bottom: 1.25rem;
  max-width: 40rem;
}

.lp-section-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.lp-section-head .lp-eyebrow {
  color: var(--warm);
}

.lp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.lp-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}

.lp-step p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.lp-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-feature-grid {
  display: grid;
  gap: 1rem;
}

.lp-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lp-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lp-feature-cap {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp-split {
  display: grid;
  gap: 1rem;
}

.lp-checklist {
  margin: 0;
  padding: 1.1rem 1.1rem 1.1rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.lp-checklist li {
  margin: 0.45rem 0;
}

.lp-aside {
  background: var(--warm-soft);
  border: 1px solid #efd3c4;
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.lp-proof-grid {
  display: grid;
  gap: 0.9rem;
}

.proof-card,
.trust-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.trust-card-title {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}

.trust-card p {
  margin: 0;
  line-height: 1.5;
}

.proof-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.proof-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lp-proof-band {
  margin-top: 1.35rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 11rem;
  display: grid;
  align-items: end;
  box-shadow: var(--shadow);
}

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

.lp-proof-band p {
  position: relative;
  margin: 0;
  padding: 1.4rem 1.3rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  max-width: 36rem;
  background: linear-gradient(180deg, transparent, rgba(6, 28, 28, 0.88));
}

.lp-price-card {
  display: grid;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
}

.price-line {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
  color: var(--accent-deep);
}

.lp-price-range {
  margin: 0 0 0.75rem;
}

.lp-trial {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 0.75rem 0.9rem;
  border-radius: 0 8px 8px 0;
  margin: 0 0 1rem;
}

.lp-price-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.lp-price-card li {
  margin: 0.35rem 0;
}

.gallery {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
}

.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  height: 100%;
}

.gallery-card:hover,
.gallery-card:focus {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-thumb img,
.gallery-card:focus .gallery-thumb img {
  transform: scale(1.04);
}

.gallery-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(214, 206, 192, 0.9);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.gallery-body {
  padding: 1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-body strong {
  color: var(--accent-deep);
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.gallery-cta {
  margin-top: 0.55rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.draft-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.draft-form input[type="text"] {
  font: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  background: #fff;
}

.btn-secondary {
  font: inherit;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
}

.draft-result {
  margin-top: 0.5rem;
}

.faq {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.35rem 1.15rem 1rem;
  box-shadow: var(--shadow-sm);
}

.faq dt {
  font-weight: 600;
  margin: 0.95rem 0 0.25rem;
}

.faq dt:first-child {
  margin-top: 0.65rem;
}

.faq dd {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.footer-cta {
  text-align: left;
  background: linear-gradient(155deg, #0c5552 0%, #0a4542 48%, #1a3f36 100%);
  color: #f4fffe;
  border-radius: calc(var(--radius) + 2px);
  padding: 1.75rem 1.35rem;
  box-shadow: var(--shadow);
}

.footer-cta h2 {
  color: #fff;
  margin-top: 0;
}

.footer-cta .meta,
.footer-cta .casl-note {
  color: rgba(255, 255, 255, 0.78);
}

.footer-cta a:not(.cta) {
  color: #b7ece6;
}

.footer-cta .cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.footer-cta .cta-secondary:hover,
.footer-cta .cta-secondary:focus {
  background: #fff;
  color: var(--accent-deep);
}

.footer-cta .cta-pending {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.footer-cta .phone-note {
  color: rgba(255, 255, 255, 0.7);
}

.footer-cta .phone-note code {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lp-footer {
  background: #e7e0d2;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding: 1.65rem 0 2.15rem;
}

.lp-footer .wrap {
  padding-top: 0;
  padding-bottom: 0;
}

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

.landing code {
  background: #eee;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

@media (min-width: 640px) {
  .lp-nav-links {
    display: flex;
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-ctas .cta {
    margin: 0;
    width: auto;
  }

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

  .draft-form input[type="text"] {
    flex: 1;
  }

  .lp-trust-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .lp-split {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .lp-price-card {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-hero-content {
    padding-top: 6rem;
    padding-bottom: 3.75rem;
  }
}

@media (max-width: 639px) {
  .lp-nav-inner {
    padding: 0.65rem 1rem;
  }

  .lp-hero {
    min-height: 30rem;
  }

  .lp-hero-content {
    padding-top: 4.25rem;
    padding-bottom: 2.35rem;
  }

  .lp-hero h1 {
    max-width: none;
  }

  .lp-nav-mail {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
  }
}


/* mobile-cta-stack */
@media (max-width: 639px) {
  .hero-ctas, .lp-hero .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .cta, .lp-hero .hero-ctas .cta {
    width: 100%;
    text-align: center;
    display: block;
    box-sizing: border-box;
  }
  .lp-nav-links a {
    color: #0c5552;
    text-decoration: none;
  }
}

/* —— Tenant prepared pages (Pass 1/2 quality bar) —— */
body.tenant-page {
  background: var(--bg);
}

.tenant-hero {
  position: relative;
  width: 100%;
  max-height: 9.5rem;
  overflow: hidden;
  background: var(--accent-deep);
}

.tenant-hero img {
  display: block;
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  object-position: center;
}

.tenant-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 56, 54, 0.15) 0%,
    rgba(7, 56, 54, 0.05) 40%,
    rgba(243, 239, 230, 0.55) 100%
  );
  pointer-events: none;
}

.tenant-page .wrap {
  position: relative;
  margin-top: -1rem;
  padding-top: 0.85rem;
  padding-bottom: 5.5rem; /* room for sticky mobile Call CTA */
}

.tenant-page .site-header {
  margin-bottom: 0.65rem;
}

.tenant-page .site-header h1 {
  font-size: clamp(1.45rem, 5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.tenant-page .phone-line {
  font-size: 1.05rem;
  font-weight: 600;
}

.tenant-page .phone-line a {
  text-decoration: none;
  color: var(--accent-deep);
}

.tenant-page .cta,
.tenant-page .cta-call {
  box-shadow: var(--shadow-sm);
  margin: 0.5rem 0 0.35rem;
}

.cta-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.35rem 0 1rem;
  line-height: 1.45;
}

.service-list {
  margin: 0;
  padding-left: 1.2rem;
}

.service-list li {
  margin: 0.4rem 0;
  padding-left: 0.15rem;
}

.tenant-page .card-hours,
.tenant-page .card-services {
  box-shadow: var(--shadow-sm);
}

.tenant-page .site-footer a {
  color: var(--accent);
}

/* Mobile: denser hero + sticky Call CTA above the fold / always reachable */
@media (max-width: 639px) {
  .tenant-hero,
  .tenant-hero img {
    max-height: 8.25rem;
    height: 8.25rem;
  }

  .tenant-page .cta-call {
    position: sticky;
    top: 0.5rem;
    z-index: 40;
    margin: 0.35rem 0 0.5rem;
    box-shadow: 0 6px 20px rgba(23, 36, 33, 0.18);
  }

  .tenant-page .site-header .location {
    font-size: 0.9rem;
  }
}

@media (min-width: 640px) {
  .tenant-hero,
  .tenant-hero img {
    max-height: 16rem;
    height: 16rem;
  }

  .tenant-page .wrap {
    margin-top: -1.5rem;
    padding-bottom: 3rem;
  }

  .tenant-page .cta-call {
    position: static;
  }
}
