/* HHM CSS VERIFY: 20260621-LOCAL-LATEST */

:root {
  --paper: #f8f5f2;
  --paper-soft: #f1f1ef;
  --ink: #0d1b2a;
  --charcoal: #3e3e3e;
  --muted: #6d747b;
  --line: #d9d9d9;
  --blue: #15a4dc;
  --blue-dark: #087daf;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(13, 27, 42, .09);
  --shadow-strong: 0 18px 42px rgba(13, 27, 42, .14);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(22, 38, 51, .08);
  box-shadow: 0 2px 14px rgba(22, 38, 51, .06);
}

.nav-shell {
  width: min(calc(100% - 40px), 1240px);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
  min-width: 112px;
}

.brand img {
  width: 100%;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: #171b20;
  font-size: .95rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.35rem;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .48) 0%, rgba(255, 255, 255, .18) 42%, rgba(13, 27, 42, .08) 100%),
    rgba(255, 255, 255, .16);
  box-shadow:
    0 16px 30px rgba(13, 27, 42, .16),
    0 4px 12px rgba(13, 27, 42, .1),
    inset 0 1px 1px rgba(255, 255, 255, .78),
    inset 0 -12px 24px rgba(13, 27, 42, .1);
  backdrop-filter: blur(18px) saturate(1.2);
  padding: .82rem 1.18rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button > span {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  inset: 3px 8px auto;
  height: 48%;
  border-radius: inherit;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .26) 45%, rgba(255, 255, 255, .06) 68%, transparent),
    radial-gradient(ellipse at 84% 62%, rgba(255, 255, 255, .58), transparent 26%);
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .28), transparent 14%, transparent 84%, rgba(255, 255, 255, .2)),
    linear-gradient(0deg, rgba(255, 255, 255, .14), transparent 20%);
  opacity: .72;
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .68);
  box-shadow:
    0 20px 38px rgba(13, 27, 42, .18),
    0 6px 16px rgba(13, 27, 42, .12),
    inset 0 1px 1px rgba(255, 255, 255, .84),
    inset 0 -13px 24px rgba(13, 27, 42, .11);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .16) 44%, rgba(21, 164, 220, .12) 100%),
    rgba(21, 164, 220, .34);
  color: var(--ink);
  border-color: rgba(173, 230, 250, .58);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42), 0 1px 8px rgba(255, 255, 255, .18);
}

.button-primary::before,
.button-book::before {
  opacity: .46;
}

.button-primary::after,
.button-book::after {
  opacity: .28;
}

.button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .12) 44%, rgba(0, 0, 0, .1) 100%),
    rgba(13, 27, 42, .28);
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(13, 27, 42, .16);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .32) 45%, rgba(13, 27, 42, .035) 100%),
    rgba(255, 255, 255, .36);
}

.button-book {
  min-width: 146px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .18) 44%, rgba(21, 164, 220, .12) 100%),
    rgba(21, 164, 220, .36);
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42), 0 1px 8px rgba(255, 255, 255, .18);
}

.button-portal {
  min-width: 146px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .08) 44%, rgba(0, 0, 0, .14) 100%),
    rgba(5, 5, 5, .54);
  color: var(--white);
}

.button-small {
  min-height: 40px;
  padding: .62rem .9rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, calc(100vh - 84px));
  padding: clamp(118px, 13vw, 178px) 0 clamp(112px, 12vw, 160px);
  display: grid;
  align-items: center;
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .38) 0%, rgba(0, 0, 0, .48) 52%, rgba(0, 0, 0, .54) 100%),
    rgba(22, 38, 51, .18);
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 1220px;
  padding: 0;
}

.eyebrow {
  margin-bottom: .9rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-light {
  color: #d7c4b2;
}

h1,
h2,
h3 {
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 1120px;
  margin-inline: auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 4.9vw, 4.95rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0, 0, 0, .44), 0 2px 7px rgba(0, 0, 0, .28);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.14;
}

h3 {
  font-size: 1.28rem;
}

.hero-lede {
  max-width: 840px;
  margin: 1.65rem auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
  text-wrap: balance;
}

.hero-actions {
  justify-content: center;
  margin-top: 2.45rem;
}

.hero-actions .button {
  min-width: 224px;
  min-height: 58px;
  border-radius: 999px;
  font-size: 1rem;
}

.hero-actions .button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .18) 44%, rgba(21, 164, 220, .12) 100%),
    rgba(21, 164, 220, .36);
  color: var(--white);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42), 0 1px 8px rgba(255, 255, 255, .18);
}

.hero-actions .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .12) 44%, rgba(0, 0, 0, .11) 100%),
    rgba(5, 5, 5, .32);
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.review-ticker {
  overflow: hidden;
  padding: .72rem 0;
  border-top: 1px solid rgba(13, 27, 42, .08);
  border-bottom: 1px solid rgba(13, 27, 42, .08);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 10px 28px rgba(13, 27, 42, .04);
}

.review-ticker-track {
  display: flex;
  width: max-content;
  animation: review-marquee 62s linear infinite;
  will-change: transform;
}

.review-ticker:hover .review-ticker-track {
  animation-play-state: paused;
}

.review-ticker-row {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-right: clamp(2rem, 4vw, 3.5rem);
  color: rgba(13, 27, 42, .74);
  font-size: .92rem;
  line-height: 1;
  white-space: nowrap;
}

.review-ticker-row > span {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.review-stars {
  color: #b89446;
  font-size: .76rem;
  letter-spacing: .05em;
}

@keyframes review-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split-grid,
.feature-grid,
.editorial-grid,
.insight-grid,
.founder-grid,
.footer-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.split-grid,
.feature-grid,
.editorial-grid,
.insight-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.lead-block {
  color: var(--charcoal);
  font-size: 1.15rem;
}

.section-photo,
.property-strip figure,
.feature-photo,
.editorial-photo,
.rentals-gallery {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.section-photo {
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.section-photo-small {
  max-width: 420px;
}

.section-photo img,
.property-strip img,
.feature-photo img,
.editorial-photo img,
.rentals-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo img {
  aspect-ratio: 4 / 3;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.68;
}

.cinematic-copy > p:not(.eyebrow),
.guest-content > p:not(.eyebrow),
.rentals-copy p:not(.eyebrow),
.founder-lede,
.cta-panel > p:not(.eyebrow) {
  font-size: 1.02rem;
  line-height: 1.68;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.editorial-card,
.feature-panel,
.cta-panel,
.rentals-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 250px;
  padding: 1.35rem;
}

.service-card-wide {
  grid-column: span 3;
  min-height: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: .5rem 1.2rem;
  align-items: start;
}

.service-card-wide p {
  grid-column: 2;
}

.service-number {
  display: inline-flex;
  margin-bottom: 1.6rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: .8rem;
}

.service-card p,
.editorial-copy,
.feature-panel,
.issue-item span,
.founder-copy,
.cta-panel p,
.rentals-panel p,
.site-footer p {
  color: var(--charcoal);
}

.property-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.property-strip figure {
  min-height: 260px;
  margin: 0;
  box-shadow: var(--shadow);
}

.property-strip figure:first-child {
  min-height: 320px;
}

.property-strip img {
  aspect-ratio: 4 / 3;
}

.section-contrast {
  background: #3e3e3e;
  color: var(--white);
}

.section-contrast h2 {
  color: var(--white);
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .07) 52%, rgba(0, 0, 0, .08)),
    rgba(255, 253, 248, .08);
  border-color: rgba(255, 253, 248, .28);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .1), inset 0 1px 0 rgba(255, 255, 255, .34);
  backdrop-filter: blur(16px) saturate(1.12);
}

.feature-panel p,
.feature-panel li {
  color: rgba(255, 253, 248, .86);
}

.check-list {
  display: grid;
  gap: .85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--blue);
}

.feature-photo {
  margin: 1.75rem 0 0;
  border: 1px solid rgba(255, 253, 248, .16);
}

.feature-photo img {
  aspect-ratio: 16 / 9;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(247, 248, 248, .72), rgba(214, 218, 221, .5) 52%, rgba(75, 81, 89, .2)),
    rgba(229, 232, 234, .5);
  box-shadow:
    0 18px 42px rgba(76, 82, 88, .14),
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -14px 26px rgba(70, 75, 82, .1);
  backdrop-filter: blur(16px) saturate(1.14);
}

.editorial-photo {
  margin-top: 2rem;
}

.editorial-photo img {
  aspect-ratio: 4 / 5;
}

.editorial-copy {
  font-size: 1.1rem;
}

.insight-section {
  background: var(--white);
}

.issue-list {
  display: grid;
  gap: .75rem;
}

.issue-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}

.issue-item strong {
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4.5vw, 3.6rem);
  box-shadow: 0 18px 44px rgba(13, 27, 42, .08);
}

.rentals-section {
  position: relative;
  overflow: hidden;
  background: #0d1b2a;
}

.rentals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Tampa, FL.jpg") center / cover;
  opacity: .72;
  pointer-events: none;
}

.rentals-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, .9) 0%, rgba(13, 27, 42, .72) 48%, rgba(13, 27, 42, .52) 100%);
  pointer-events: none;
}

.rentals-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, .78fr);
  gap: clamp(2.6rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(1.3rem, 2.4vw, 2rem) 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rentals-panel h2,
.cta-panel h2 {
  max-width: 800px;
}

.rentals-panel p,
.cta-panel p {
  max-width: 720px;
  margin-top: 1rem;
}

.rentals-copy {
  max-width: 660px;
}

.rentals-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
  line-height: 1.68;
}

.rentals-section .eyebrow,
.rentals-section h2 {
  color: var(--white);
}

.rentals-copy .button {
  margin-top: 2rem;
}

.rentals-section .button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .18) 44%, rgba(21, 164, 220, .12) 100%),
    rgba(21, 164, 220, .36);
  color: var(--white);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42), 0 1px 8px rgba(255, 255, 255, .18);
}

.rentals-gallery {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: .7rem;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  opacity: 1;
}

.rentals-gallery::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.2rem -1.4rem 1.2rem;
  z-index: -1;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .13);
}

.rentals-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 8px;
  aspect-ratio: auto;
  box-shadow: 0 12px 30px rgba(13, 27, 42, .09);
}

.rentals-gallery img:first-child {
  grid-row: 1 / -1;
}

.rentals-gallery img:nth-child(2) {
  object-position: center;
}

.rentals-gallery img:nth-child(3) {
  object-position: center 42%;
}

/* Cinematic upgrade pass */
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy h1,
.section-heading h2,
.score-copy h2,
.cinematic-copy h2,
.guest-content h2,
.rentals-copy h2,
.founder-copy h2,
.cta-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: min(1120px, 100%);
  line-height: 1.12;
}

.section-heading-wide {
  max-width: 920px;
}

.section-heading-wide p:not(.eyebrow) {
  max-width: 670px;
  margin-inline: auto;
}

.process-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #fff 70%, var(--paper-soft) 100%);
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
      opacity .8s ease,
      transform .8s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .image-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(1.015);
    transition:
      opacity .95s ease,
      transform 1.05s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
  }

  .image-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.4vw, 2rem);
  margin-top: clamp(2.8rem, 5vw, 4rem);
}

.process-card {
  position: relative;
  min-height: 215px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .7);
  background:
    linear-gradient(145deg, rgba(247, 248, 248, .7), rgba(213, 216, 219, .5) 52%, rgba(72, 78, 86, .24)),
    rgba(229, 232, 234, .5);
  box-shadow:
    0 18px 42px rgba(79, 84, 91, .15),
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -14px 26px rgba(91, 96, 102, .1);
  backdrop-filter: blur(16px) saturate(1.14);
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, .84) 0%, rgba(255, 255, 255, .42) 13%, rgba(255, 255, 255, .1) 25%, transparent 46%),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, .42), transparent 28%);
  pointer-events: none;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -22% -10%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(76, 82, 88, .22), rgba(255, 255, 255, .08) 48%, transparent 72%);
  pointer-events: none;
}

.process-card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 21px 21px 0 0;
}

.process-card:hover .process-card-image {
  transform: none;
}

.process-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: auto;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1rem, 2vw, 1.35rem);
  color: var(--ink);
}

.process-card-content span {
  display: block;
  margin-bottom: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.process-card-content .situation-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 1.05rem;
  place-items: center;
  border: 1px solid rgba(21, 164, 220, .28);
  border-radius: 999px;
  background: rgba(21, 164, 220, .07);
  color: var(--blue-dark);
}

.situation-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.process-card-content h3 {
  max-width: 310px;
  margin-bottom: .72rem;
  color: var(--ink);
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(1.16rem, 1.75vw, 1.45rem);
  font-weight: 900;
  line-height: 1.16;
}

.process-card-content p {
  max-width: 330px;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.66;
}

.service-grid-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
}

#property-management {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

#property-management::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .64), rgba(255, 253, 248, .74)),
    url("images/Ybor Pic 4.jpeg") center / cover;
  transform: scale(1.02);
}

#property-management .container {
  position: relative;
  z-index: 1;
}

#property-management .section-heading h2,
#property-management .section-heading p {
  color: var(--ink);
}

#property-management .section-heading .eyebrow {
  color: var(--blue);
}

#property-management .section-heading p:not(.eyebrow) {
  color: var(--charcoal);
  max-width: 660px;
  margin-inline: auto;
}

.service-grid-six .service-card {
  position: relative;
  min-height: 245px;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(247, 248, 248, .66), rgba(212, 216, 219, .48) 52%, rgba(68, 74, 82, .24)),
    rgba(226, 230, 232, .42);
  box-shadow:
    0 18px 42px rgba(76, 82, 88, .18),
    inset 0 1px 0 rgba(255, 255, 255, .88),
    inset 0 -14px 26px rgba(70, 75, 82, .12);
  backdrop-filter: blur(18px) saturate(1.16);
  transition:
    transform .24s ease,
    border-color .24s ease,
    background-color .24s ease,
    box-shadow .24s ease;
}

.service-grid-six .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(158deg, rgba(255, 255, 255, .86) 0%, rgba(255, 255, 255, .42) 13%, rgba(255, 255, 255, .1) 25%, transparent 46%),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .42), transparent 28%);
  pointer-events: none;
}

.service-grid-six .service-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -24% -12%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(74, 80, 86, .24), rgba(255, 255, 255, .08) 48%, transparent 72%);
  pointer-events: none;
}

.service-grid-six .service-card > * {
  position: relative;
  z-index: 1;
}

.service-grid-six .service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(249, 250, 250, .72), rgba(218, 222, 225, .52) 52%, rgba(66, 72, 80, .24)),
    rgba(230, 234, 236, .46);
  box-shadow:
    0 22px 48px rgba(76, 82, 88, .22),
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 0 -14px 26px rgba(70, 75, 82, .14);
}

.service-grid-six .service-card h3,
.service-grid-six .service-card p {
  color: var(--ink);
}

.service-grid-six .service-card p {
  max-width: 340px;
  color: var(--charcoal);
  line-height: 1.7;
}

.service-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 1.55rem;
  place-items: center;
  border: 1px solid rgba(21, 164, 220, .52);
  border-radius: 999px;
  background: rgba(21, 164, 220, .08);
  color: var(--blue);
}

.service-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-grid-six .service-card h3 {
  margin-bottom: .8rem;
  font-size: 1.16rem;
  line-height: 1.25;
}

.score-section {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(5rem, 8vw, 7.4rem);
  background:
    linear-gradient(180deg, rgba(13, 27, 42, .035), transparent 16%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
}

@media (min-width: 981px) {
  .score-section {
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
  }
}

.score-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 253, 248, .62)),
    rgba(255, 255, 255, .72);
  box-shadow: 0 20px 48px rgba(13, 27, 42, .09);
  padding: clamp(1.55rem, 4vw, 3.25rem);
}

.score-copy {
  max-width: 720px;
}

.score-copy h2 {
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
}

.score-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: .95rem;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.68;
}

.score-button {
  min-width: min(100%, 260px);
  margin-top: 2rem;
  padding-inline: 1.65rem;
  padding-block: 1rem;
  font-weight: 850;
  box-shadow:
    0 18px 40px rgba(13, 27, 42, .16),
    inset 0 1px 1px rgba(255, 255, 255, .78);
}

.score-note {
  margin-top: .85rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.score-preview {
  position: relative;
  isolation: isolate;
  min-height: clamp(410px, 42vw, 560px);
}

.score-preview::before {
  content: "";
  position: absolute;
  inset: 10% 2% 7% 10%;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 12%, rgba(21, 164, 220, .16), transparent 34%),
    linear-gradient(145deg, rgba(13, 27, 42, .08), rgba(255, 255, 255, .28));
  filter: blur(18px);
}

.score-shot {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  border: 1px solid rgba(13, 27, 42, .12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(13, 27, 42, .14);
}

.score-shot-results {
  max-width: 430px;
  margin-left: auto;
}

.score-shot-quiz {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 76%;
  max-width: 330px;
  transform: rotate(-1.25deg);
  box-shadow: 0 20px 48px rgba(13, 27, 42, .18);
}

.cinematic-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.cinematic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 27, 42, .9) 0%, rgba(13, 27, 42, .72) 48%, rgba(13, 27, 42, .52) 100%);
}

.cinematic-bg {
  position: absolute;
  inset: 0;
}

.cinematic-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.cinematic-grid,
.insight-cinema-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cinematic-copy h2,
.cinematic-copy p {
  color: var(--white);
}

.cinematic-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .82);
}

.glass-panel,
.glass-card-light {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .07) 52%, rgba(0, 0, 0, .08)),
    rgba(255, 255, 255, .1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .13), inset 0 1px 0 rgba(255, 255, 255, .38);
  backdrop-filter: blur(16px) saturate(1.14);
}

.glass-panel::before,
.glass-card-light::before,
.cta-panel::before,
.feature-panel::before,
.editorial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .34) 0%, transparent 42%),
    radial-gradient(circle at 16% 9%, rgba(255, 255, 255, .36), transparent 28%);
  pointer-events: none;
}

.glass-panel > *,
.glass-card-light > *,
.cta-panel > *,
.feature-panel > *,
.editorial-card > * {
  position: relative;
  z-index: 1;
}

.control-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 8px;
}

.control-panel.glass-panel {
  border-color: rgba(255, 255, 255, .44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .045) 18%, rgba(33, 43, 52, .48) 52%, rgba(13, 20, 27, .58) 100%),
    rgba(20, 29, 37, .56);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .58),
    inset 0 -1px 0 rgba(255, 255, 255, .22),
    inset 0 0 30px rgba(255, 255, 255, .035),
    inset 0 -18px 30px rgba(0, 0, 0, .2);
  backdrop-filter: blur(12px) saturate(1.04) brightness(.9);
}

.control-panel.glass-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, .11) 5%, transparent 16%),
    linear-gradient(90deg, rgba(255, 255, 255, .34), transparent 4%, transparent 96%, rgba(255, 255, 255, .2)),
    linear-gradient(153deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .035) 18%, transparent 34%),
    linear-gradient(0deg, rgba(255, 255, 255, .18), transparent 8%);
}

.control-panel.glass-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), transparent 17%),
    linear-gradient(315deg, rgba(255, 255, 255, .12), transparent 14%),
    radial-gradient(ellipse at 50% 112%, rgba(255, 255, 255, .16), transparent 42%);
  pointer-events: none;
}

.owner-control-section .check-list {
  gap: 1.05rem;
  margin: 0;
}

.owner-control-section .check-list li {
  color: rgba(255, 255, 255, .88);
  font-size: 1.02rem;
  line-height: 1.62;
}

.control-notes {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.control-notes p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.control-notes strong {
  color: var(--white);
}

.guest-experience-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 1) 0%, rgba(247, 242, 233, .72) 100%);
}

.guest-layout {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr);
  gap: clamp(2.8rem, 6vw, 5.8rem);
  align-items: center;
}

.guest-image {
  position: relative;
  margin: 0;
  min-height: 0;
  height: clamp(460px, 48vw, 575px);
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 15px 36px rgba(13, 27, 42, .09);
}

.guest-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, .04) 0%, rgba(13, 27, 42, .18) 100%),
    linear-gradient(90deg, rgba(255, 253, 248, .1), transparent 45%);
}

.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.guest-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1.35rem;
  margin-inline: auto;
  color: var(--charcoal);
  line-height: 1.62;
  text-align: center;
}

.guest-content h2,
.guest-eyebrow {
  text-align: center;
}

.guest-detail-list {
  display: grid;
  gap: 0;
  max-width: 610px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-left: clamp(1.1rem, 2vw, 1.6rem);
  border-left: 1px solid rgba(13, 27, 42, .16);
}

.guest-detail-list p {
  position: relative;
  margin: 0;
  padding: 0 0 1.55rem;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.68;
}

.guest-detail-list p:last-child {
  padding-bottom: 0;
}

.guest-detail-list p::before {
  content: "";
  position: absolute;
  top: .55rem;
  left: calc(clamp(1.1rem, 2vw, 1.6rem) * -1 - .23rem);
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(27, 83, 117, .1);
}

.guest-detail-list span {
  display: block;
  margin-bottom: .28rem;
  color: var(--ink);
  font-size: .96rem;
  font-weight: 800;
}

.glass-card-light {
  padding: 1rem;
  border-color: rgba(13, 27, 42, .08);
  background: rgba(248, 245, 242, .72);
  box-shadow: 0 18px 40px rgba(13, 27, 42, .08);
}

.glass-card-light span {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
}

.glass-card-light strong {
  display: block;
  margin-top: .6rem;
  color: var(--ink);
}

.glass-card-light p {
  margin-top: .35rem;
  color: var(--muted);
  font-size: .92rem;
}

.insight-cinema-grid {
  grid-template-columns: minmax(0, .82fr) minmax(360px, .95fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.insight-section::before {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, .86) 0%, rgba(13, 27, 42, .68) 52%, rgba(13, 27, 42, .5) 100%);
}

.insight-section .cinematic-bg img {
  opacity: .62;
}

.insight-section .cinematic-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, .78);
}

.insight-section .issue-list {
  gap: 0;
  padding: .35rem 0 .35rem clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.insight-section .issue-item {
  position: relative;
  overflow: visible;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  padding: 1.15rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.insight-section .issue-item:last-child {
  border-bottom: 0;
}

.insight-section .issue-item::before {
  content: "";
  position: absolute;
  inset: auto;
  top: 1.65rem;
  left: calc(clamp(1rem, 2vw, 1.5rem) * -1 - .23rem);
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: rgba(21, 164, 220, .9);
  box-shadow: 0 0 0 7px rgba(21, 164, 220, .1);
  z-index: 2;
  pointer-events: none;
}

.insight-section .issue-item strong,
.insight-section .issue-item span {
  color: var(--white);
}

.insight-section .issue-item strong {
  font-size: 1.04rem;
  line-height: 1.35;
}

.insight-section .issue-item span {
  max-width: 520px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.68;
}

.works-section {
  background: var(--paper);
}

.works-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
}

.works-timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(21, 164, 220, .24);
}

.works-step {
  position: relative;
  min-width: 0;
  padding-top: .35rem;
  text-align: center;
}

.works-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 0 0 6px rgba(21, 164, 220, .1);
  animation: markerPulse 3.4s ease-in-out infinite;
}

.works-step h3 {
  max-width: 11rem;
  margin: 0 auto;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.22;
}

.works-step p {
  max-width: 13rem;
  margin: .7rem auto 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.58;
}

.works-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.2rem, 4vw, 3.25rem);
}

.visibility-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.visibility-section::before,
.visibility-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visibility-section::before {
  background: url("images/HHM Chelsea Inn 2.jpg") center / cover no-repeat;
  opacity: .52;
}

.visibility-section::after {
  background:
    linear-gradient(90deg, rgba(13, 27, 42, .86) 0%, rgba(13, 27, 42, .72) 52%, rgba(13, 27, 42, .58) 100%),
    linear-gradient(180deg, rgba(9, 25, 40, .74), rgba(16, 48, 70, .58));
}

.visibility-section .container {
  position: relative;
  z-index: 1;
}

.visibility-section .eyebrow {
  color: var(--blue);
}

.visibility-section h2 {
  color: var(--white);
}

.visibility-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.platform-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.25rem, 5vw, 3.4rem);
  padding: .78rem 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .12), rgba(255, 255, 255, .05)),
    rgba(8, 22, 34, .58);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 45px rgba(0, 0, 0, .12);
}

.platform-marquee::before,
.platform-marquee::after {
  display: none;
}

.platform-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, .88), rgba(13, 27, 42, 0));
}

.platform-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 27, 42, .82), rgba(13, 27, 42, 0));
}

.platform-track {
  display: flex;
  width: max-content;
  animation: platform-marquee 44s linear infinite;
  will-change: transform;
}

.platform-marquee:hover .platform-track {
  animation-play-state: paused;
}

.platform-row {
  display: flex;
  flex-shrink: 0;
  gap: clamp(.85rem, 2vw, 1.25rem);
  padding-right: clamp(.85rem, 2vw, 1.25rem);
}

.platform-card {
  display: inline-flex;
  min-width: clamp(132px, 14vw, 178px);
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(.92rem, 1.35vw, 1.06rem);
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: none;
  white-space: nowrap;
}

.platform-card img {
  display: block;
  max-width: 150px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, .42)) drop-shadow(0 0 12px rgba(255, 255, 255, .28)) brightness(1.18) contrast(1.12) saturate(1.05);
}

.platform-fallback {
  display: none;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  line-height: 1.2;
}

.platform-card.logo-missing {
  flex-direction: column;
}

.platform-card.logo-missing .platform-fallback {
  display: block;
}

.visibility-note {
  max-width: 690px;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.02rem;
  line-height: 1.68;
  text-align: center;
}

@keyframes platform-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(21, 164, 220, .1);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(21, 164, 220, .15);
  }
}

.owner-feedback-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 1) 0%, rgba(241, 241, 239, .86) 100%);
}

.owner-feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
}

.owner-testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, .88), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(232, 236, 238, .56) 54%, rgba(116, 126, 134, .16)),
    rgba(255, 253, 248, .74);
  box-shadow:
    0 16px 40px rgba(13, 27, 42, .08),
    inset 0 1px 0 rgba(255, 255, 255, .86);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.owner-testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(138deg, rgba(255, 255, 255, .36), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(21, 164, 220, .1), transparent 26%);
  pointer-events: none;
}

.owner-testimonial-card > * {
  position: relative;
  z-index: 1;
}

.owner-testimonial-stars {
  color: #b89446;
  font-size: .86rem;
  letter-spacing: .08em;
}

.owner-testimonial-card blockquote {
  margin: 1.35rem 0 2rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.56;
}

.owner-testimonial-meta {
  display: grid;
  gap: .2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(13, 27, 42, .1);
}

.owner-testimonial-meta strong {
  color: var(--ink);
  font-size: 1rem;
}

.owner-testimonial-meta span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.founder-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef3f5 0%, #f6f4ef 54%, #e9eff2 100%);
}

.founder-section::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 4%;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  border-radius: 999px;
  background: rgba(21, 164, 220, .08);
  filter: blur(42px);
  pointer-events: none;
}

.founder-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(300px, 500px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.2rem);
}

.founder-media {
  position: relative;
}

.founder-media::before {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  z-index: 0;
  border: 1px solid rgba(13, 27, 42, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 16px 40px rgba(13, 27, 42, .07);
}

.founder-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(13, 27, 42, .11);
}

.founder-copy {
  max-width: 690px;
}

.founder-copy h2 {
  max-width: 650px;
}

.founder-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--charcoal);
  line-height: 1.72;
}

.founder-lede {
  margin-top: 1.35rem;
  color: var(--ink);
}

.founder-closing {
  max-width: 580px;
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(13, 27, 42, .12);
  color: var(--ink);
}

.about-next-cta {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, #e9eff2 0%, #f6f4ef 100%);
}

.about-next-panel {
  max-width: 860px;
  padding: clamp(1.7rem, 4vw, 2.8rem);
  text-align: center;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(244, 241, 234, .66)),
    var(--paper-soft);
  box-shadow: 0 18px 45px rgba(13, 27, 42, .08);
}

.about-next-panel .eyebrow {
  color: var(--blue);
}

.about-next-panel h2 {
  max-width: 620px;
  margin: .55rem auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-next-panel p:not(.eyebrow) {
  max-width: 640px;
  margin: .95rem auto 0;
  color: var(--charcoal);
  line-height: 1.65;
}

.about-next-panel .button {
  margin-top: 1.35rem;
  color: #071827;
}

.about-next-panel .button span {
  color: inherit;
}

.final-cta {
  padding-top: clamp(6.5rem, 11vw, 9rem);
  padding-bottom: clamp(6.5rem, 11vw, 9rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(21, 164, 220, .18), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 253, 248, .08), transparent 30%),
    linear-gradient(135deg, #081420 0%, #0d1b2a 52%, #102b40 100%);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 980px;
  padding: clamp(2.3rem, 5.5vw, 4.6rem);
  border-color: rgba(255, 255, 255, .22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .045) 46%, rgba(21, 164, 220, .08)),
    rgba(6, 16, 26, .72);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 -16px 28px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px) saturate(1.16);
}

.final-cta .cta-panel::before {
  background:
    linear-gradient(132deg, rgba(255, 255, 255, .085) 0%, rgba(255, 255, 255, .035) 34%, transparent 68%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .055), transparent 58%);
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto 8% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 164, 220, .42), transparent);
  pointer-events: none;
}

.cta-panel .eyebrow {
  margin-bottom: 1rem;
  color: var(--blue);
}

.cta-panel h2 {
  max-width: 780px;
  color: var(--white);
}

.cta-panel p {
  max-width: 680px;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  line-height: 1.72;
}

.cta-panel .button-row {
  gap: .9rem;
  margin-top: 2.25rem;
  align-items: center;
}

.cta-panel .button {
  min-width: 205px;
  justify-content: center;
}

.cta-panel .button-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, .18) 44%, rgba(21, 164, 220, .12) 100%),
    rgba(21, 164, 220, .36);
  color: #071624;
  box-shadow:
    0 20px 44px rgba(21, 164, 220, .25),
    inset 0 1px 0 rgba(255, 255, 255, .82),
    inset 0 -18px 28px rgba(13, 27, 42, .11);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42), 0 1px 8px rgba(255, 255, 255, .18);
}

.cta-panel .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .08) 48%, rgba(0, 0, 0, .14) 100%),
    rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.2fr .8fr .8fr;
}

.footer-brand {
  display: inline-block;
  margin-bottom: .75rem;
  font-family: "DM Sans", Inter, Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  color: rgba(255, 253, 248, .96);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 253, 248, .72);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: .6rem;
  align-content: start;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 253, 248, .84);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .35rem;
}

.site-footer .footer-social a {
  display: inline-flex;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: 999px;
  background: rgba(255, 253, 248, .05);
  color: rgba(255, 253, 248, .78);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background-color .2s ease;
}

.site-footer .footer-social a:hover,
.site-footer .footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 253, 248, .38);
  background: rgba(255, 253, 248, .1);
  color: var(--white);
}

.site-footer .footer-social svg {
  display: block;
  flex: 0 0 20px;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  fill: currentColor;
  stroke: none;
}

.site-footer .footer-social svg path {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 253, 248, .14);
  color: rgba(255, 253, 248, .68);
  font-size: .9rem;
}

@media (max-width: 980px) {
  .section {
    padding: 78px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 84px 0 auto 0;
    display: grid;
    gap: 0;
    padding: .75rem 20px 1.25rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: .9rem 0;
  }

  .nav-links .button {
    margin-top: .5rem;
  }

  .split-grid,
  .feature-grid,
  .editorial-grid,
  .insight-grid,
  .score-panel,
  .cinematic-grid,
  .insight-cinema-grid,
  .guest-layout,
  .founder-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 112px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .score-preview {
    width: min(100%, 620px);
    min-height: clamp(390px, 64vw, 520px);
    margin-inline: auto;
  }

  .score-shot-results {
    width: 86%;
    max-width: 440px;
  }

  .score-shot-quiz {
    width: 66%;
    max-width: 320px;
    left: 4%;
  }

  .owner-feedback-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .service-grid-six {
    grid-template-columns: 1fr;
  }

  .service-grid-six {
    gap: 1.2rem;
    margin-top: 3rem;
  }

  .process-card {
    min-height: auto;
  }

  .process-card-content {
    min-height: auto;
  }

  .guest-image {
    height: 460px;
    margin-top: 0;
  }

  .property-strip {
    grid-template-columns: 1fr 1fr;
  }

  .property-strip figure:first-child {
    grid-column: span 2;
  }

  .founder-media {
    max-width: 560px;
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .rentals-panel {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .rentals-gallery {
    width: min(100%, 520px);
    min-height: 360px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .founder-copy,
  .founder-copy .eyebrow,
  .founder-copy h2,
  .founder-copy p:not(.eyebrow) {
    text-align: center;
  }

  .founder-copy h2,
  .founder-copy p:not(.eyebrow),
  .founder-closing {
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .works-timeline {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 0;
    margin-inline: auto;
  }

  .works-timeline::before {
    top: 0;
    bottom: 0;
    left: 16px;
    right: auto;
    width: 1px;
    height: auto;
  }

  .works-step {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: .9rem;
    align-items: start;
    padding: 0 0 1.65rem;
    text-align: left;
  }

  .works-step:last-child {
    padding-bottom: 0;
  }

  .works-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 1px 0 0;
  }

  .works-step h3,
  .works-step p {
    grid-column: 2;
    max-width: none;
    margin-inline: 0;
  }

  .works-step h3 {
    margin-top: .05rem;
  }

  .works-step p {
    margin-top: .45rem;
  }

  .platform-card {
    min-width: 138px;
    min-height: 58px;
  }

  .visibility-note {
    max-width: 32rem;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand {
    width: 166px;
    min-width: 148px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 92px 0 88px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .button-row,
  .button,
  .rentals-panel .button {
    width: 100%;
  }

  .button-row {
    flex-direction: column;
  }

  .hero-actions .button {
    min-width: 0;
    width: 100%;
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .review-ticker {
    padding: .62rem 0;
  }

  .review-ticker-row {
    gap: 1.7rem;
    padding-right: 1.7rem;
    font-size: .84rem;
  }

  .review-stars {
    font-size: .68rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .score-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(1.15rem, 5vw, 1.35rem);
    row-gap: 1rem;
  }

  .score-copy {
    display: contents;
  }

  .score-copy .eyebrow {
    order: 1;
  }

  .score-copy h2 {
    order: 2;
  }

  .score-copy p:not(.eyebrow):not(.score-note) {
    order: 4;
  }

  .score-button {
    order: 5;
  }

  .score-note {
    order: 6;
  }

  .score-preview {
    display: block;
    order: 3;
    width: min(100%, 430px);
    height: clamp(340px, 104vw, 430px);
    min-height: 0;
    margin: clamp(1rem, 4vw, 1.25rem) auto .85rem;
  }

  .score-preview::before {
    inset: 7% 4% 8%;
  }

  .score-shot {
    position: absolute;
    height: auto;
    margin-inline: 0;
  }

  .score-shot-results {
    top: 0;
    right: 2%;
    width: 78%;
    max-width: 330px;
    margin-left: 0;
  }

  .score-shot-quiz {
    left: 2%;
    bottom: .15rem;
    width: 72%;
    max-width: 300px;
    transform: rotate(-1.25deg);
  }

  .process-card {
    min-height: auto;
  }

  .process-card-content {
    min-height: auto;
    padding: 1rem;
  }

  .cinematic-grid,
  .insight-cinema-grid {
    gap: 1.4rem;
  }

  .cinematic-copy > p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .control-panel {
    padding: 1rem;
  }

  .guest-image {
    height: 360px;
    margin-top: 0;
  }

  .guest-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    row-gap: 0;
  }

  .guest-content {
    display: contents;
  }

  .guest-eyebrow {
    order: 1;
  }

  .guest-content h2 {
    order: 2;
  }

  .guest-image {
    order: 3;
    width: 100%;
    margin: clamp(1.15rem, 4vw, 1.5rem) 0 clamp(1rem, 4vw, 1.35rem);
  }

  .guest-content > p:not(.eyebrow) {
    order: 4;
  }

  .guest-detail-list {
    order: 5;
  }

  .guest-detail-list {
    padding-left: 1rem;
  }

  .guest-detail-list p::before {
    left: -1.23rem;
  }

  .insight-section .issue-item {
    grid-template-columns: 1fr;
    gap: .4rem;
    padding: 1rem 0;
  }

  .property-strip,
  .property-strip figure:first-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .property-strip figure,
  .property-strip figure:first-child {
    min-height: auto;
  }

  .founder-media::before {
    inset: .65rem -.65rem -.65rem .65rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-grid-six .service-card p {
    max-width: none;
  }

  .service-card-wide {
    grid-column: span 1;
    display: block;
  }

  .service-card-wide p {
    grid-column: auto;
  }

  .issue-item {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .cta-panel,
  .rentals-panel,
  .feature-panel,
  .editorial-card {
    padding: 1.35rem;
  }

  .cta-panel .button {
    min-width: 0;
  }

  .section-photo {
    margin-top: 1.35rem;
  }

  .rentals-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .rentals-gallery img,
  .rentals-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 96px 0 88px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.05rem);
    line-height: 1.12;
  }

  .hero-lede {
    max-width: 34rem;
    font-size: .98rem;
    line-height: 1.68;
  }

  .hero-actions {
    align-items: center;
    gap: .75rem;
    margin-top: 2rem;
  }

  .hero-actions .button {
    width: min(88%, 330px);
    min-height: 50px;
    padding: .72rem 1rem;
  }

  .process-section .section-heading {
    max-width: 34rem;
  }

  .process-section .section-heading .eyebrow {
    margin-bottom: 1.15rem;
  }

  .process-section #trust-title {
    max-width: 32rem;
    margin-inline: auto;
    font-size: clamp(2rem, 8.3vw, 2.7rem);
    line-height: 1.14;
  }

  .insight-section .cinematic-copy,
  .owner-control-section .cinematic-copy,
  .rentals-section .rentals-copy {
    text-align: center;
  }

  .insight-section .cinematic-copy > p:not(.eyebrow),
  .owner-control-section .cinematic-copy > p:not(.eyebrow),
  .rentals-section .rentals-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .insight-section .issue-list,
  .owner-control-section .control-panel,
  .rentals-section .rentals-gallery {
    text-align: left;
  }

  .founder-copy h2 {
    max-width: 32rem;
    font-size: clamp(2rem, 8.2vw, 2.65rem);
    line-height: 1.14;
  }

  .founder-copy p:not(.eyebrow),
  .founder-lede,
  .founder-closing {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.68;
  }

  .founder-lede {
    margin-top: 1.15rem;
  }

  .founder-closing {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    max-width: 34rem;
    margin-bottom: 2.35rem;
  }

  .eyebrow,
  .guest-eyebrow,
  .cta-panel .eyebrow,
  .process-section .section-heading .eyebrow {
    margin-bottom: .95rem;
    font-size: .74rem;
    letter-spacing: .08em;
  }

  .hero h1 {
    max-width: 36rem;
    font-size: clamp(2.18rem, 8.8vw, 3rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-heading h2,
  .score-copy h2,
  .cinematic-copy h2,
  .guest-content h2,
  .rentals-copy h2,
  .founder-copy h2,
  .cta-panel h2 {
    max-width: 34rem;
    margin-inline: auto;
    font-size: clamp(2rem, 8vw, 2.62rem);
    line-height: 1.14;
    text-wrap: balance;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .score-copy p:not(.eyebrow),
  .cinematic-copy > p:not(.eyebrow),
  .guest-content > p:not(.eyebrow),
  .rentals-copy p:not(.eyebrow),
  .founder-copy p:not(.eyebrow),
  .cta-panel > p:not(.eyebrow) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.68;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .score-copy p:not(.eyebrow),
  .cinematic-copy > p:not(.eyebrow),
  .guest-content > p:not(.eyebrow),
  .rentals-copy p:not(.eyebrow),
  .cta-panel > p:not(.eyebrow) {
    max-width: 33rem;
    margin-inline: auto;
  }

  .hero {
    padding: 92px 0 82px;
  }

  .hero-lede {
    margin-top: 1.25rem;
  }

  .process-section .section-heading .eyebrow {
    margin-bottom: .95rem;
  }

  .guest-content > p:not(.eyebrow),
  .founder-lede,
  .cta-panel p {
    margin-top: 1.05rem;
  }

  .guest-experience-section .guest-eyebrow {
    margin-bottom: .9rem;
  }

  .guest-experience-section .guest-image {
    margin: clamp(1.5rem, 6vw, 2rem) 0 clamp(1.5rem, 6vw, 2rem);
  }

  .guest-experience-section .guest-content > p:not(.eyebrow) {
    margin-top: 0;
  }

  .owner-feedback-section {
    padding-bottom: 2.5rem;
  }

  .founder-section {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .about-next-cta {
    padding-top: 0;
  }

  .founder-closing {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
  }

  .issue-list,
  .guest-detail-list,
  .control-panel,
  .service-grid,
  .process-grid {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .review-ticker-track {
    animation: none;
  }

  .platform-track {
    animation: none;
  }

  .works-marker {
    animation: none;
  }
}

/* Final hero headline spacing override */
.hero .hero-copy h1 {
  max-width: min(1180px, 100%);
  margin-inline: auto;
  font-size: clamp(2.8rem, 4.55vw, 4.65rem);
  line-height: 1.14;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .hero .hero-copy h1 {
    max-width: 34rem;
    font-size: clamp(2.05rem, 8.4vw, 2.85rem);
    line-height: 1.16;
  }
}
