:root {
  --ink: #0d2b45;
  --muted: #4d6170;
  --line: #dde6e4;
  --paper: #fffdf8;
  --white: #ffffff;
  --aqua: #1fa6b4;
  --aqua-dark: #147582;
  --coral: #e85945;
  --sun: #f0c36a;
  --sand: #f2e6d6;
  --seafoam: #a8d9de;
  --leaf: #507760;
  --deep: #0d2b45;
  --shadow: 0 20px 60px rgba(13, 43, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  min-height: 104px;
  padding: 10px clamp(14px, 2vw, 24px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid rgba(13, 43, 69, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 320px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 320px;
  height: 82px;
  object-fit: contain;
}

.header-tagline {
  max-width: none;
  margin: 0 0 0 -10px;
  color: var(--deep);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  .header-tagline {
    display: none;
  }
}

@media (max-width: 1220px) {
  .header-actions {
    gap: 4px;
    padding: 4px;
  }

  .header-contact,
  .header-call,
  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.86rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 0.8vw, 12px);
  flex: 1 1 auto;
  flex-wrap: nowrap;
  color: #0d2b45;
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  font-weight: 800;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--aqua-dark);
}

.header-contact,
.header-call,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 5px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 43, 69, 0.14);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(13, 43, 69, 0.1);
}

.header-actions .header-contact,
.header-actions .header-call,
.header-actions .header-cta {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 0.9rem;
  line-height: 1;
}

.header-cta {
  color: var(--white);
  background: var(--aqua-dark);
  white-space: nowrap;
}

.header-contact {
  color: var(--deep);
  background: transparent;
  border: 1px solid transparent;
  white-space: nowrap;
}

.header-call {
  position: relative;
  color: var(--white);
  background: #071f35;
  border: 1px solid #071f35;
  box-shadow: none;
  white-space: nowrap;
}

.header-contact:hover {
  color: var(--aqua-dark);
  background: rgba(31, 166, 180, 0.08);
}

.header-cta:hover {
  background: #0f6570;
}

.header-call:hover {
  background: #031423;
  border-color: #031423;
}

.button.primary {
  color: var(--white);
  background: var(--aqua-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--sun);
}

.button.text {
  justify-content: flex-start;
  padding: 0;
  color: var(--aqua-dark);
  background: transparent;
}

.disabled-link {
  cursor: default;
  opacity: 0.82;
}

.hero {
  position: relative;
  min-height: clamp(520px, 68vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 43, 69, 0.88) 0%, rgba(13, 43, 69, 0.64) 42%, rgba(13, 43, 69, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 80px);
  padding: 58px 0 68px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7cf7b;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 4.8vw, 4.3rem);
}

.medium-page-title {
  font-size: clamp(2.15rem, 3.5vw, 3.35rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

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

.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-proof div {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--sun);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.platform-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--sand);
}

.platform-strip p {
  margin: 0 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.platform-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.platform-pill.airbnb::before {
  background: #ff5a5f;
}

.platform-pill.vrbo::before {
  background: #1a5cff;
}

.platform-pill.booking::before {
  background: #003580;
}

.platform-pill.expedia::before {
  background: #f5c400;
}

.platform-pill.hotels::before {
  background: #d32f2f;
}

.platform-pill.direct::before {
  background: var(--sun);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.35rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) 0;
}

.split,
.two-column,
.calculator-wrap,
.revenue-example,
.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.about-brand-split {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  align-items: center;
}

.profile-photo-card {
  display: grid;
  place-items: center;
  min-height: clamp(420px, 52vw, 560px);
  overflow: hidden;
  padding: clamp(12px, 2vw, 20px);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.profile-photo-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.profile-photo-caption {
  width: 100%;
  padding: 20px;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.profile-photo-caption .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.profile-photo-caption h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.profile-photo-caption p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.profile-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  min-height: inherit;
  padding: 32px;
  color: var(--white);
  text-align: center;
}

.profile-photo-placeholder span {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-photo-placeholder strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.copy-stack p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-stack a {
  color: inherit;
  font-weight: 800;
  text-decoration-color: rgba(20, 117, 130, 0.35);
  text-underline-offset: 3px;
}

.feature-grid,
.location-grid,
.package-grid,
.system-list,
.advantage-list,
.process-grid,
.faq-grid,
.comparison-grid,
.analysis-benefits,
.property-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-advantage-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-system-grid,
.local-comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.proof-system-grid article,
.local-comparison-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 35, 43, 0.06);
}

.proof-system-grid h3,
.local-comparison-grid h3 {
  margin-bottom: 10px;
}

.proof-system-grid p,
.local-comparison-grid p {
  margin: 0;
  color: var(--muted);
}

.proof-system-grid a {
  color: var(--aqua-dark);
  font-weight: 900;
  text-underline-offset: 3px;
}

.proof-systems-section {
  border-top: 1px solid var(--line);
}

.owner-operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  margin-top: 18px;
}

.owner-checklist-card,
.owner-report-preview {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 35, 43, 0.06);
}

.owner-checklist-card {
  background: #fbfffe;
}

.owner-checklist-card h3,
.owner-report-preview h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.compact-check-list {
  gap: 10px;
  margin-top: 16px;
}

.compact-check-list li {
  font-size: 0.96rem;
}

.report-preview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.report-preview-header h3 {
  margin-bottom: 0;
}

.report-preview-header > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--sun);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.report-metrics div {
  padding: 14px;
  border: 1px solid rgba(13, 43, 69, 0.1);
  border-radius: 8px;
  background: #fff9ed;
}

.report-metrics span,
.report-line-list li {
  color: var(--muted);
}

.report-metrics span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-metrics strong {
  display: block;
  color: var(--deep);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.report-line-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-line-list li {
  padding-left: 16px;
  border-left: 3px solid var(--seafoam);
  font-size: 0.96rem;
}

.report-line-list strong {
  color: var(--deep);
}

.guest-feedback-band {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #e7d8bf;
  border-radius: 8px;
  background: #fff9ed;
}

.guest-feedback-intro {
  max-width: 860px;
}

.guest-feedback-intro h2 {
  max-width: none;
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.guest-feedback-intro > p:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.guest-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.guest-review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 43, 69, 0.07);
}

.review-rating {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--sun);
  font-size: 0.72rem;
  font-weight: 900;
}

.guest-review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
}

.guest-review-card blockquote p {
  margin: 0;
}

.guest-review-card footer {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  background: transparent;
}

.guest-review-card footer strong {
  color: var(--ink);
}

.service-location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-care-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
}

.property-care-grid article {
  border-style: dashed;
  background: #fbfffe;
}

.care-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0;
  color: var(--deep);
}

.care-price strong {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 0.95;
}

.care-price span {
  color: var(--muted);
  font-weight: 800;
}

.feature-grid article,
.location-grid article,
.property-care-grid article,
.package-card,
.system-list article,
.advantage-list article,
.process-grid article,
.faq-grid article,
.comparison-grid article,
.analysis-benefits article,
.property-card,
.panel,
.results-panel,
.analysis-form,
.quote-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 35, 43, 0.06);
}

.feature-grid article,
.location-grid article,
.property-care-grid article,
.package-card,
.system-list article,
.advantage-list article,
.process-grid article,
.faq-grid article,
.comparison-grid article,
.analysis-benefits article {
  padding: 28px;
}

.feature-grid article h2,
.location-grid article h2,
.property-care-grid article h2,
.system-list article h2,
.analysis-benefits article h2,
.comparison-grid article h2,
.faq-grid article h2 {
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  line-height: 1.15;
}

.feature-grid p,
.location-grid p,
.property-care-grid p,
.system-list p,
.advantage-list p,
.process-grid p,
.faq-grid p,
.comparison-grid p,
.analysis-benefits p,
.package-card p,
.property-card p,
.quote-box span,
.panel p,
.page-hero p,
.form-note,
.results-panel p,
.listing-details p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf);
  font-weight: 900;
}

.competitive-band,
.process-section,
.comparison-section,
.owner-promise,
.reference-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.home-competitive-band {
  grid-template-columns: 1fr;
}

.compact-process-section {
  display: block;
}

.compact-process-section > div:first-child {
  margin-bottom: 16px;
}

.compact-process-section h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
}

.compact-process-section .process-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.compact-process-section .process-grid article {
  padding: 14px;
}

.compact-process-section .process-grid article span {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.compact-process-section .process-grid h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.1;
}

.compact-process-section .process-grid p {
  font-size: 0.78rem;
  line-height: 1.38;
}

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: var(--aqua-dark);
  font-weight: 900;
}

.faq-section h2 {
  margin-bottom: 24px;
}

.analysis-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.reference-band {
  align-items: center;
  padding: clamp(32px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  color: var(--white);
}

.reference-band p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading-row h2 {
  max-width: 760px;
}

.service-area-heading > p {
  max-width: 560px;
  color: var(--muted);
  font-weight: 650;
}

.service-area-heading {
  align-items: flex-start;
  display: block;
}

.service-area-heading h2 {
  max-width: none;
}

.service-area-heading > p {
  margin-top: 10px;
  max-width: 860px;
}

.service-location-grid h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.listings-preview {
  padding-top: 0;
}

.property-card {
  overflow: hidden;
}

.property-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.property-card > div {
  padding: 24px;
}

.property-card.muted-card,
.placeholder-property {
  display: flex;
  min-height: 100%;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(238, 247, 246, 0.96), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(45deg, rgba(14, 138, 154, 0.08), rgba(14, 138, 154, 0.08) 10px, transparent 10px, transparent 20px);
}

.property-experience-section {
  padding-top: 0;
}

.experience-property-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.experience-property-card {
  display: flex;
  flex-direction: column;
}

.experience-property-card > div:last-child,
.next-showcase-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.experience-property-card .button,
.next-showcase-card .button {
  width: 100%;
  margin-top: auto;
}

.experience-property-banner {
  display: grid;
  min-height: 168px;
  place-items: center;
  color: var(--white);
  background: var(--deep);
}

.experience-property-banner span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.riviera-banner {
  background:
    linear-gradient(135deg, rgba(13, 43, 69, 0.9), rgba(20, 117, 130, 0.78)),
    url("assets/wildwood-sign-sunset.jpg") center / cover;
}

.stardust-banner {
  background:
    linear-gradient(135deg, rgba(13, 43, 69, 0.92), rgba(232, 89, 69, 0.68)),
    url("assets/wildwood-fireworks-boardwalk.jpg") center / cover;
}

.directory-grid {
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
}

.single-property-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
}

.property-meta,
.owner-listing-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 24px;
}

.property-meta span,
.owner-listing-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.owner-listing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 32px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}

.owner-listing-band p {
  color: rgba(255, 255, 255, 0.78);
}

.owner-listing-band .owner-listing-points span {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.panel {
  min-height: 330px;
  padding: clamp(26px, 4vw, 44px);
}

.panel.deep {
  color: var(--white);
  background: var(--deep);
}

.panel.deep p {
  color: rgba(255, 255, 255, 0.78);
}

.panel.light {
  background: #eef9f9;
}

.lead-focus {
  max-width: 860px;
}

.lead-focus .panel {
  min-height: 0;
}

.service-areas {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
}

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

.area-list a,
.seo-link-grid a,
.amenities span,
.check-list p {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.seo-links-section h2 {
  margin-bottom: 24px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: start;
  width: min(1180px, calc(100% - 36px));
  margin-bottom: 80px;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form,
.analysis-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.optional-text {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.hidden-field {
  display: none;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c7d7da;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-success-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 32px);
  z-index: 1000;
  width: min(420px, calc(100% - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(31, 166, 180, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 22px 54px rgba(11, 43, 69, 0.26);
  font-weight: 800;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-success-toast::before {
  content: "Submitted";
  display: block;
  margin-bottom: 4px;
  color: var(--sun);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-success-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.22);
}

.form-contact-card {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.form-contact-card span {
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-contact-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-contact-card a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.form-contact-card a:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 0 clamp(34px, 7vw, 76px);
}

.page-hero.compact {
  padding-bottom: 36px;
}

.page-hero.property {
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 790px;
  font-size: 1.18rem;
}

.page-hero-slogan {
  margin: 8px 0 14px;
  color: var(--teal-deep);
  font-size: clamp(1.22rem, 2vw, 1.55rem) !important;
  font-weight: 900;
}

.hero-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-service-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  min-height: 168px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 43, 69, 0.06);
}

.hero-service-grid article:nth-child(1) {
  background: #e8f3f5;
  border-color: rgba(20, 117, 130, 0.42);
}

.hero-service-grid article:nth-child(2) {
  background: #e8f3f5;
  border-color: rgba(20, 117, 130, 0.42);
}

.hero-service-grid article:nth-child(3) {
  background: #e8f3f5;
  border-color: rgba(20, 117, 130, 0.42);
}

.hero-service-grid article:nth-child(4) {
  background: #e6f1ea;
  border-color: rgba(80, 119, 96, 0.46);
}

.hero-service-grid article:nth-child(5) {
  background: #fff1c9;
  border-color: rgba(181, 126, 30, 0.5);
}

.hero-service-grid article:nth-child(6) {
  background: #e5f4f7;
  border-color: rgba(20, 117, 130, 0.36);
}

.hero-service-grid span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--aqua-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-service-grid article:nth-child(1) span {
  background: var(--deep);
}

.hero-service-grid article:nth-child(2) span {
  background: var(--deep);
}

.hero-service-grid article:nth-child(3) span {
  color: var(--white);
  background: var(--deep);
}

.hero-service-grid article:nth-child(4) span {
  background: var(--leaf);
}

.hero-service-grid article:nth-child(5) span {
  color: var(--white);
  background: #9f6818;
}

.hero-service-grid article:nth-child(6) span {
  color: var(--white);
  background: var(--aqua-dark);
}

.hero-service-grid strong {
  color: var(--deep);
  font-size: 0.92rem;
  line-height: 1.12;
}

.hero-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

.service-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.service-focus-main,
.service-focus-tiers article,
.support-service-strip article {
  border: 1px solid rgba(13, 43, 69, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(13, 43, 69, 0.08);
}

.service-focus-main {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 265px;
  padding: clamp(20px, 3vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, #0d2b45 0%, #147582 100%);
}

.service-focus-main span,
.service-focus-tiers span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-focus-main span {
  color: var(--deep);
  background: var(--gold);
}

.service-focus-main h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.service-focus-main p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.service-focus-main .button.primary {
  width: fit-content;
  color: #0d2b45;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.service-focus-main .button.primary:hover {
  color: #0d2b45;
  background: #f7cf7b;
  border-color: #f7cf7b;
}

.service-focus-tiers {
  display: grid;
  gap: 10px;
}

.service-focus-tiers article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: start;
  min-height: 78px;
  padding: 14px;
  background: #e8f3f5;
  border-color: rgba(20, 117, 130, 0.34);
}

.service-focus-tiers span {
  grid-row: span 2;
  justify-content: center;
  min-width: 34px;
  color: var(--white);
  background: var(--deep);
}

.service-focus-tiers strong,
.support-service-strip strong {
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.12;
}

.service-focus-tiers p,
.support-service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.support-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.support-service-strip article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 14px;
  background: var(--white);
}

.support-service-strip article:nth-child(1) {
  background: #fff1c9;
  border-color: rgba(181, 126, 30, 0.38);
}

.support-service-strip article:nth-child(2) {
  background: #e6f1ea;
  border-color: rgba(80, 119, 96, 0.38);
}

.support-service-strip article:nth-child(3) {
  background: #e5f4f7;
  border-color: rgba(20, 117, 130, 0.3);
}

.support-service-strip article:nth-child(4) {
  background: #f7f2e8;
  border-color: rgba(13, 43, 69, 0.14);
}

.owner-paperwork-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding-top: 0;
}

.owner-paperwork-section > div:first-child {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(20, 117, 130, 0.22);
  border-radius: 8px;
  background: #e8f3f5;
}

.owner-paperwork-section h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
}

.owner-paperwork-section p {
  color: var(--muted);
}

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

.paperwork-grid article {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(13, 43, 69, 0.06);
}

.paperwork-grid h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.paperwork-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.48;
}

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

.calculator-wrap {
  align-items: stretch;
}

.analysis-form,
.results-panel {
  padding: clamp(24px, 4vw, 40px);
}

.results-panel {
  background: #eef9f9;
}

.metric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #c9dcdf;
}

.metric span {
  color: var(--muted);
  font-weight: 800;
}

.metric strong {
  flex: 0 0 auto;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  white-space: nowrap;
}

.package-card {
  min-height: 420px;
}

.package-card.featured {
  border-color: var(--aqua);
  background: #eef9f9;
  box-shadow: var(--shadow);
}

.service-tier-card h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  line-height: 1.12;
}

.service-tier-card {
  min-height: 0;
}

.core-service-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.91fr);
}

.core-service-section {
  padding-top: clamp(28px, 5vw, 58px);
}

.website-building-section {
  padding-top: 0;
}

.compact-section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
}

.compact-section-heading .eyebrow {
  flex: 0 0 auto;
  margin: 0;
}

.compact-section-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.services-overview-section {
  padding-top: clamp(18px, 4vw, 42px);
  padding-bottom: clamp(30px, 5vw, 60px);
}

.services-overview-section .section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  align-items: start;
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfb;
}

.services-overview-section .section-heading-row h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.services-overview-section .section-heading-row > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.service-overview-grid a {
  display: grid;
  grid-template-rows: auto minmax(46px, auto) 1fr;
  gap: 8px;
  min-height: 205px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(13, 43, 69, 0.06);
}

.service-overview-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--aqua-dark);
  font-weight: 900;
}

.service-overview-grid strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.service-overview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.42;
}

.single-line-heading {
  max-width: none;
}

@media (min-width: 981px) {
  .single-line-heading {
    white-space: nowrap;
    font-size: clamp(2rem, 3vw, 3.35rem);
  }

  .services-overview-section .single-line-heading {
    font-size: clamp(1.72rem, 2.15vw, 2.28rem);
  }
}

.service-category-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(36px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.service-category-copy {
  position: sticky;
  top: 142px;
}

.service-category-copy p {
  color: var(--muted);
}

.service-category-copy .button {
  margin-top: 18px;
}

.service-category-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-category-section > .package-card {
  min-height: 0;
}

.service-category-section .website-setup-card,
.service-category-section .optional-package-card {
  display: block;
  min-height: 0;
}

.service-category-website {
  background:
    linear-gradient(90deg, rgba(255, 249, 237, 0.82), rgba(255, 253, 248, 0));
}

.service-category-care {
  background:
    linear-gradient(90deg, rgba(244, 250, 247, 0.9), rgba(255, 253, 248, 0));
  grid-template-columns: 1fr;
}

.service-category-care .service-category-copy {
  max-width: 100%;
  position: static;
}

.service-category-care .service-category-copy h2 {
  max-width: none;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
}

.service-category-addon {
  background:
    linear-gradient(90deg, rgba(240, 251, 252, 0.92), rgba(255, 253, 248, 0));
}

.direct-booking-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid #bcdde1;
  border-left: 8px solid var(--aqua-dark);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 249, 249, 0.96), rgba(255, 249, 237, 0.92));
  box-shadow: 0 16px 38px rgba(13, 43, 69, 0.08);
}

.direct-booking-band p {
  color: var(--muted);
}

.services-direct-booking-band {
  margin-top: clamp(42px, 6vw, 72px);
  margin-bottom: clamp(42px, 6vw, 72px);
}

.direct-booking-list {
  display: grid;
  gap: 14px;
}

.direct-booking-list article {
  padding: 22px;
  border: 1px solid rgba(13, 43, 69, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.direct-booking-list h3 {
  margin-bottom: 8px;
}

.core-feature-card {
  border-left: 8px solid var(--aqua);
}

.service-tier-card.tier-one {
  border-color: #e7d8bf;
  background: #fff9ed;
}

.service-tier-card.tier-two {
  border-color: #bcdde1;
  background: #f0fbfc;
}

.service-tier-card.tier-three {
  border-color: var(--aqua);
  background: #eef7f5;
}

.service-plan-grid {
  padding-top: 24px;
}

.property-care-grid article {
  border-style: dashed;
  background: #fbfffe;
}

.optional-package-card,
.website-setup-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 48px);
  min-height: 0;
}

.optional-package-card {
  border-color: #bcdde1;
  background: #f4fafb;
}

.monthly-care-section {
  padding-top: 0;
}

.monthly-care-card {
  border-color: #a8c8b5;
  background: #f4faf7;
}

.monthly-care-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.care-operations-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.care-operations-grid article {
  padding: 18px;
  border: 1px solid #a8c8b5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(16, 35, 43, 0.05);
}

.care-operations-grid h3 {
  font-size: 1rem;
  line-height: 1.16;
}

.care-operations-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.trash-pricing-intro {
  padding: 20px 22px;
  border: 1px solid #a8c8b5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.trash-pricing-intro h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.trash-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trash-audience-grid a {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid #a8c8b5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.trash-audience-grid a:hover {
  transform: translateY(-2px);
  border-color: var(--aqua-dark);
  box-shadow: 0 12px 24px rgba(13, 43, 69, 0.08);
}

.trash-audience-grid strong {
  font-size: 1.08rem;
}

.trash-audience-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.trash-audience-grid em {
  align-self: end;
  color: var(--aqua-dark);
  font-style: normal;
  font-weight: 900;
}

.monthly-care-plans .monthly-care-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  padding: 26px;
}

.monthly-care-plans .care-price strong {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.care-plan-type {
  margin: 8px 0 0;
  color: var(--aqua-dark);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.18;
}

.care-contact-links {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.care-contact-links a {
  color: var(--aqua-dark);
  text-decoration-color: rgba(20, 117, 130, 0.35);
  text-underline-offset: 3px;
}

.care-contact-links span {
  color: #9aa9ad;
  padding: 0 4px;
}

.website-setup-card {
  border-color: #e7d8bf;
  background: #fff9ed;
}

.optional-package-card h2,
.website-setup-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.optional-package-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 0;
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-left: 24px;
  position: relative;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.monthly-care-card li::before {
  content: "✓";
  top: 0.15em;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
}

.revenue-example {
  align-items: center;
}

.quote-box {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 4vw, 44px);
  border-left: 8px solid var(--coral);
}

.quote-box strong {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}

.systems {
  width: 100%;
  padding-right: max(18px, calc((100% - 1180px) / 2));
  padding-left: max(18px, calc((100% - 1180px) / 2));
  background: #eef9f9;
}

.portrait-block {
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14, 138, 154, 0.86), rgba(18, 52, 59, 0.96)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08), rgba(255,255,255,0.08) 12px, transparent 12px, transparent 24px);
  box-shadow: var(--shadow);
}

.portrait-block span {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
}

.logo-showcase {
  min-height: clamp(360px, 44vw, 480px);
  padding: clamp(6px, 2vw, 22px);
  background: transparent;
  box-shadow: none;
}

.logo-showcase img {
  width: min(86%, 520px);
  height: auto;
}

.logo-showcase .about-main-logo {
  width: min(100%, 520px);
  filter: drop-shadow(0 18px 34px rgba(13, 43, 69, 0.14));
}

.logo-showcase .seal-logo {
  width: min(82%, 420px);
  filter: drop-shadow(0 18px 34px rgba(13, 43, 69, 0.14));
}

.listing-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.listing-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.airbnb-style-photo img {
  aspect-ratio: 16 / 11;
  transition: transform 180ms ease;
}

.clickable-photo {
  text-decoration: none;
}

.clickable-photo:hover img {
  transform: scale(1.025);
}

.clickable-photo span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--aqua-dark);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(13, 43, 69, 0.22);
}

.listing-details {
  align-self: center;
}

.listing-details h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  white-space: nowrap;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.booking-path span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep);
  font-weight: 900;
  text-align: center;
}

.next-listing-slot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 72px;
  padding: clamp(28px, 4vw, 44px);
  border: 2px dashed #bed4d8;
  border-radius: 8px;
  background: #eef9f9;
}

.next-listing-slot h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.next-listing-slot p {
  max-width: 760px;
  color: var(--muted);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.1fr) minmax(220px, 0.8fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.footer-brand-block,
.footer-area-block,
.footer-contact-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.footer-area-block span,
.footer-contact-block span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-service {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.3;
}

.site-footer .footer-copy {
  font-size: 0.94rem;
}

.site-footer .footer-areas {
  color: var(--aqua-dark);
  font-weight: 800;
  line-height: 1.45;
}

.footer-talk {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-top: 2px;
}

.footer-contact-links a {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  padding: 0;
  border-bottom: 0;
  color: var(--aqua-dark);
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
}

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

.footer-contact-links span {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact-block > p a {
  color: var(--aqua-dark);
  font-weight: 900;
  text-decoration-color: rgba(20, 117, 130, 0.35);
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .hero-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-focus-panel,
  .support-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-focus-main {
    min-height: 240px;
  }

  .service-focus-tiers {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-focus-tiers article {
    grid-template-columns: 1fr;
  }

  .service-focus-tiers span {
    grid-row: auto;
  }

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

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    width: 100%;
    flex-basis: auto;
  }

  .brand-logo {
    width: min(100%, 360px);
    height: 70px;
  }

  .header-tagline {
    max-width: none;
    font-size: 0.96rem;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .header-contact,
  .header-call,
  .header-cta {
    width: 100%;
  }

  .trust-strip,
  .feature-grid,
  .proof-system-grid,
  .local-comparison-grid,
  .care-operations-grid,
  .location-grid,
  .package-grid,
  .system-list,
  .advantage-list,
  .process-grid,
  .faq-grid,
  .comparison-grid,
  .analysis-benefits,
  .property-care-grid,
  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-card-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .two-column,
  .calculator-wrap,
  .revenue-example,
  .listing-layout,
  .about-brand-split,
  .service-areas,
  .contact-band,
  .competitive-band,
  .process-section,
  .comparison-section,
  .owner-promise,
  .reference-band,
  .owner-listing-band,
  .service-category-section,
  .service-category-cards,
  .direct-booking-band,
  .guest-feedback-band,
  .owner-operations-grid,
  .trash-audience-grid,
  .monthly-care-plans,
  .optional-package-card,
  .website-setup-card,
  .next-listing-slot {
    grid-template-columns: 1fr;
  }

  .service-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview-section .section-heading-row {
    grid-template-columns: 1fr;
  }

  .compact-process-section .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero-service-grid {
    grid-template-columns: 1fr;
  }

  .service-focus-panel,
  .support-service-strip,
  .service-focus-tiers {
    grid-template-columns: 1fr;
  }

  .service-focus-main {
    min-height: 0;
  }

  .service-focus-main .button {
    width: 100%;
  }

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

  .site-header {
    gap: 10px;
    padding: 10px 18px 12px;
  }

  .header-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .header-actions .header-contact,
  .header-actions .header-call,
  .header-actions .header-cta {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .header-actions .header-cta {
    grid-column: 1 / -1;
  }

  .brand-logo {
    width: min(100%, 300px);
    height: 60px;
  }

  .header-tagline {
    display: none;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 520px;
    align-items: flex-end;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 27, 32, 0.88) 0%, rgba(8, 27, 32, 0.58) 62%, rgba(8, 27, 32, 0.16) 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 78px 0 42px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  h2 {
    font-size: 2rem;
  }

  .trust-strip,
  .feature-grid,
  .proof-system-grid,
  .local-comparison-grid,
  .care-operations-grid,
  .location-grid,
  .package-grid,
  .system-list,
  .advantage-list,
  .process-grid,
  .faq-grid,
  .comparison-grid,
  .analysis-benefits,
  .seo-link-grid,
  .property-care-grid,
  .property-card-grid,
  .directory-grid,
  .area-list,
  .service-overview-grid,
  .check-list,
  .optional-package-list ul,
  .amenities {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-band {
    margin-bottom: 40px;
  }

  .booking-path {
    grid-template-columns: 1fr;
  }

  .button,
  .header-contact,
  .header-call,
  .header-cta {
    width: 100%;
  }

  .metric {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .guest-review-grid {
    grid-template-columns: 1fr;
  }

  .report-preview-header {
    display: grid;
  }

  .report-metrics {
    grid-template-columns: 1fr;
  }

  .compact-process-section .process-grid {
    grid-template-columns: 1fr;
  }

  .compact-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .header-actions {
    grid-template-columns: 1fr;
  }

  .header-actions .header-cta {
    grid-column: auto;
  }
}
