:root {
  /* Base palette — logo blues, orange accent, light cool backgrounds */
  --color-white: #FFFFFF;

  --color-base-50: #F4F9FC;
  --color-base-100: #E7F2F8;
  --color-base-200: #CFE3EF;

  --color-primary-500: #0B5F93;
  --color-primary-700: #063B63;

  --color-accent-500: #F7941D;
  --color-accent-700: #C46B00;

  --color-support-500: #1F8BB6;
  --color-support-100: #E4F4FB;

  --color-text-900: #102A3E;
  --color-text-700: #243F54;
  --color-text-600: #4C5F6B;

  /* Semantic surfaces */
  --section-bg-default: #FFFFFF;
  --section-bg-warm: #E7F2F8;
  --section-bg-soft: #E4F4FB;
  --section-bg-strong: #CFE3EF;

  --card-bg: #FFFFFF;
  --card-bg-warm: #E7F2F8;
  --card-bg-soft: #E4F4FB;
  --card-bg-gold-soft: #FFE5BD;
  --card-bg-highlight: #063B63;

  --accent-gold: #F7941D;
  --accent-teal: #1F8BB6;

  /* Semantic usage */
  --page-bg: var(--color-base-100);
  --section-bg: var(--section-bg-default);
  --section-bg-alt: var(--color-base-200);
  --section-bg-strong: var(--color-base-200);

  --panel-bg: var(--card-bg);
  --panel-bg-strong: var(--color-primary-700);

  --text-main: var(--color-text-900);
  --text-subtle: var(--color-text-700);
  --text-muted: var(--color-text-600);
  --text-on-dark: var(--color-white);
  --text-on-dark-muted: rgba(255, 255, 255, 0.88);

  --button-primary-bg: var(--color-primary-500);
  --button-primary-text: var(--color-white);
  --button-primary-hover: var(--color-primary-700);

  --button-secondary-bg: var(--color-white);
  --button-secondary-text: var(--color-primary-700);
  --button-secondary-border: var(--color-primary-500);

  --accent: var(--color-accent-500);
  --accent-strong: var(--color-accent-700);
  --support: var(--color-support-500);

  --border-soft: rgba(16, 42, 62, 0.16);
  --border-medium: rgba(16, 42, 62, 0.24);
  --border-strong: rgba(16, 42, 62, 0.32);
  --border-on-dark: rgba(255, 255, 255, 0.24);

  --shadow-soft: 0 16px 36px rgba(6, 59, 99, 0.12);
  --shadow-medium: 0 22px 52px rgba(6, 59, 99, 0.18);
  --shadow-small: 0 8px 20px rgba(6, 59, 99, 0.08);
  --shadow-support: 0 14px 36px rgba(31, 139, 182, 0.14);
  --shadow-card: 0 12px 28px rgba(6, 59, 99, 0.10);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --content-max: 1180px;
}

/* Global/Base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.admin-body {
  background: #eef2f5;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text-main);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p,
li {
  color: var(--text-muted);
  line-height: 1.65;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mobile-only-copy {
  display: none;
}

.lead {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.primary,
.secondary,
button,
.button,
.button-primary,
.button-secondary,
.home-featured-cta,
.pt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.primary,
button,
.button-primary,
.home-featured-cta,
.pt-cta {
  background: var(--button-primary-bg);
  border-color: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.primary:hover,
button:hover,
.button-primary:hover,
.home-featured-cta:hover,
.pt-cta:hover {
  background: var(--button-primary-hover);
  border-color: var(--button-primary-hover);
}

.secondary,
.button-secondary {
  background: var(--button-secondary-bg);
  border-color: var(--button-secondary-border);
  color: var(--button-secondary-text);
}

.secondary:hover,
.button-secondary:hover {
  background: var(--section-bg-strong);
  color: var(--button-secondary-text);
}

.section-heading {
  max-width: 820px;
  margin: 0 0 28px;
}

.section-heading h2,
.cta-band h2,
.content-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--text-muted);
}

.collection-heading {
  max-width: none;
}

.collection-heading h2 {
  white-space: nowrap;
}

/* Shared Components */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: var(--color-white);
  color: var(--text-main);
  border-bottom: 1px solid var(--border-soft);
}

.site-header a:not(.owner-nav-cta) {
  color: var(--text-main);
}

.site-header a:not(.owner-nav-cta):hover {
  color: var(--color-primary-500);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(148px, 14vw, 210px);
  height: auto;
}

.brand-text,
.mm-logo,
.mobile-menu {
  display: none;
}

.brand-title,
.brand-subtitle {
  display: block;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-subtle);
  font-weight: 700;
  text-decoration: none;
}

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

.owner-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--color-primary-700);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.owner-nav-cta:hover {
  background: var(--color-primary-500);
  color: var(--color-white);
}

.trust-band,
.page-trust-strip {
  display: grid;
  gap: 12px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: var(--color-base-200);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.trust-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-band div,
.page-trust-strip div {
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: 999px;
  background: var(--panel-bg);
  color: var(--text-main);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.page-trust-strip div {
  border: 2px solid var(--color-primary-500);
}

.trust-band div {
  border-color: rgba(11, 95, 147, 0.34);
  background: var(--color-primary-700);
  color: var(--color-white);
  box-shadow: 0 12px 30px rgba(6, 59, 99, 0.14);
}

.trust-band div:hover,
.page-trust-strip div:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
}

.trust-band div:hover {
  background: var(--color-primary-500);
  color: var(--color-white);
}

.collections,
.content-band,
.faq,
.cta-band,
.seo-rich-band,
.owner-feature,
.page-main,
.property-showcase,
.page-explore,
.property-gallery,
.property-enquiry {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.card-grid,
.home-featured-grid,
.property-grid,
.vacation-category-grid,
.stay-type-grid,
.community-guide-grid,
.page-explore-grid,
.standards-grid,
.owner-proof-grid,
.page-contact-grid {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
}

.card-grid,
.home-featured-grid,
.property-grid,
.vacation-category-grid,
.page-explore-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-type-grid,
.community-guide-grid,
.standards-grid,
.owner-proof-grid,
.page-contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stay-type-grid a {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  text-decoration: none;
}

.stay-type-grid a span,
.stay-type-grid a strong,
.stay-type-grid a small {
  min-width: 0;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.stay-type-grid a strong {
  line-height: 1.18;
}

.stay-type-grid a small {
  line-height: 1.45;
}

.property-card,
.home-featured-card,
.property-tile,
.page-explore-card,
.vacation-category-card,
.stay-type-grid a,
.community-guide-grid article,
.page-section-grid article,
.standards-grid article,
.owner-process-list article,
.owner-proof-grid div,
.page-contact-grid article,
.contact-paths a {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.property-card:hover,
.home-featured-card:hover,
.property-tile:hover,
.page-explore-card:hover,
.vacation-category-card:hover,
.stay-type-grid a:hover,
.community-guide-grid article:hover,
.contact-paths a:hover {
  border-color: var(--support);
  transform: translateY(-2px);
}

.property-card h3,
.home-featured-card h3,
.property-tile h3,
.page-explore-card h3,
.vacation-category-card h3,
.stay-type-grid h3,
.community-guide-grid h3,
.page-section-grid h2,
.standards-grid h3,
.owner-process-list h3,
.page-contact-grid h2,
.contact-paths strong {
  color: var(--text-main);
}

.property-card p,
.property-card li,
.property-card span,
.home-featured-card p,
.home-featured-card li,
.property-tile p,
.property-tile li,
.property-tile span,
.page-explore-card p,
.vacation-category-card small,
.stay-type-grid small,
.community-guide-grid p,
.page-section-grid p,
.standards-grid p,
.owner-process-list p,
.page-contact-grid p,
.contact-paths small {
  color: var(--text-muted);
}

.property-card .eyebrow,
.property-card .location,
.home-featured-card .eyebrow,
.home-featured-card .location,
.pt-loc,
.page-section-index,
.stay-type-grid span,
.community-guide-grid span,
.contact-paths span {
  color: var(--accent-strong);
  font-weight: 800;
}

.property-card {
  display: grid;
  gap: 12px;
  padding: 10px;
  text-decoration: none;
}

.property-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.property-card > span {
  color: var(--text-main);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.22;
}

.property-tile {
  display: grid;
  grid-template-rows: auto 1fr;
}

.pt-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--panel-bg-strong);
}

.pt-media-link,
.pt-media img,
.pt-media-link img {
  display: block;
  width: 100%;
  height: 100%;
}

.pt-media img,
.pt-media-link img {
  object-fit: cover;
  object-position: center 46%;
}

.pt-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.pt-body h3 {
  font-size: 1.18rem;
}

.pt-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--section-bg-strong);
  color: var(--text-subtle);
  font-size: 0.88rem;
  font-weight: 700;
}

.pt-specs svg {
  width: 16px;
  height: 16px;
  color: var(--support);
}

.pt-price,
.price-badge,
.pt-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.property-tile .pt-media .pt-price,
.price-badge {
  left: 12px;
  background: var(--color-white);
  border: 2px solid var(--color-primary-500);
  color: var(--color-primary-700);
  text-shadow: none;
  box-shadow: 0 10px 24px rgba(6, 59, 99, 0.34);
}

.property-tile .pt-media .pt-price,
.property-tile .pt-media .pt-price span,
.price-badge span {
  color: var(--color-primary-700);
}

.property-tile .pt-media .pt-price span,
.price-badge span {
  font-size: 0.88em;
  font-weight: 800;
}

.pt-badge {
  right: 12px;
  background: var(--accent);
  color: var(--text-main);
}

.form-card,
form,
.owner-review-form,
.owner-inquiry-form,
.property-enquiry-form {
  background: var(--panel-bg);
  color: var(--text-main);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
}

label {
  display: grid;
  gap: 6px;
  color: var(--text-main);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--text-main);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.saved {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--section-bg-strong);
  color: var(--text-main);
  font-weight: 800;
}

.error {
  color: #a51d2d;
  font-weight: 800;
}

/* Homepage */
.home-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, calc(100vh - 76px), 820px);
  padding: clamp(56px, 7vw, 98px) clamp(18px, 5vw, 72px) clamp(50px, 6vw, 82px);
  background: var(--color-primary-700);
  color: var(--text-on-dark);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 59, 99, 0.86) 0%, rgba(6, 59, 99, 0.66) 40%, rgba(6, 59, 99, 0.22) 68%, rgba(6, 59, 99, 0.02) 100%),
    linear-gradient(180deg, rgba(247, 148, 29, 0.10), rgba(6, 59, 99, 0.12));
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% 44%;
  z-index: 1;
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 139, 182, 0.26), transparent 68%);
  pointer-events: none;
}

.home-hero .hero-bg,
.home-hero .hero-highlights {
  display: none;
}

.home-hero-bg-image,
.home-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.01);
}

.home-hero-bg-video {
  display: block;
  z-index: 1;
}

.home-hero-bg-fallback {
  display: none;
  z-index: 0;
}

.home-hero--static-bg .home-hero-bg-video {
  display: none;
}

.home-hero--static-bg .home-hero-bg-fallback {
  display: block;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  min-height: clamp(500px, calc(100vh - 210px), 660px);
}

.home-hero .hero-copy {
  max-width: 780px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero .eyebrow {
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-hero h1,
.home-hero .hero-copy h1 {
  max-width: 760px;
  color: var(--color-white);
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 26px rgba(6, 59, 99, 0.36);
}

.home-hero .hero-copy h1 span {
  display: block;
}

.home-hero .lead,
.home-hero p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(142px, 1.1fr) repeat(2, minmax(126px, 0.9fr)) minmax(88px, 0.62fr) auto;
  gap: 0;
  align-items: stretch;
  width: min(780px, 100%);
  margin-top: clamp(24px, 4vw, 36px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(3, 8, 14, 0.28);
}

.hero-search label {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 14px;
  border-right: 1px solid rgba(16, 42, 62, 0.14);
}

.hero-search label span {
  color: var(--color-accent-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-search input,
.hero-search select {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
  outline: none;
}

.hero-search input:focus,
.hero-search select:focus {
  box-shadow: none;
}

.hero-search button {
  min-height: 54px;
  padding-inline: 26px;
  border-radius: 999px;
}

.hero-circle-cluster {
  display: none;
  --badge-x: 0px;
  --badge-y: -8px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(12px, 1.4vw, 18px);
  width: auto;
  max-width: min(42vw, 420px);
  aspect-ratio: auto;
  min-height: 0;
  opacity: 0;
  transform: translate(var(--badge-x), calc(var(--badge-y) - 90px));
  animation: heroBadgePairIntro 700ms ease 900ms forwards;
  filter:
    drop-shadow(0 18px 42px rgba(3, 8, 14, 0.22));
}

.hero-badge-image {
  position: relative;
  flex: 0 0 auto;
  width: clamp(118px, 10vw, 166px);
  height: clamp(118px, 10vw, 166px);
  object-fit: contain;
  border-radius: 50%;
  clip-path: circle(49.5% at 50% 50%);
  background: var(--color-white);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(3, 43, 73, 0.20);
}

.hero-badge-image-original {
  animation: none;
}

.hero-badge-image-alt {
  opacity: 1;
  animation: none;
}

@keyframes heroBadgePairIntro {
  from {
    opacity: 0;
    transform: translate(var(--badge-x), calc(var(--badge-y) - 28px));
  }

  to {
    opacity: 1;
    transform: translate(var(--badge-x), var(--badge-y));
  }
}

@keyframes heroBadgeCycle {
  0% {
    opacity: 0;
    transform: translate(var(--badge-x), calc(var(--badge-y) - 90px));
  }
  8%,
  76% {
    opacity: 1;
    transform: translate(var(--badge-x), var(--badge-y));
  }
  84%,
  100% {
    opacity: 0;
    transform: translate(var(--badge-x), calc(var(--badge-y) - 26px));
  }
}

@keyframes heroBadgeOriginalCopy {
  0%,
  6% {
    opacity: 0;
  }
  14%,
  36% {
    opacity: 1;
  }
  46%,
  88% {
    opacity: 0;
  }
  96%,
  100% {
    opacity: 1;
  }
}

@keyframes heroBadgeAltCopy {
  0%,
  46% {
    opacity: 0;
  }
  56%,
  76% {
    opacity: 1;
  }
  84%,
  100% {
    opacity: 0;
  }
}

@keyframes heroBadgeReducedCycle {
  0% {
    opacity: 0;
  }
  8%,
  76% {
    opacity: 1;
  }
  84%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-circle-cluster {
    opacity: 1;
    transform: translate(var(--badge-x), var(--badge-y));
    animation: none;
  }

  .hero-badge-image-original {
    animation: none;
  }

  .hero-badge-image-alt {
    animation: none;
  }
}

.hero-visual-card,
.hero-visual,
.hero-image-card {
  position: relative;
  overflow: hidden;
  background: var(--panel-bg);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.hero-visual-card img,
.hero-visual img,
.hero-image-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
}

.hero-visual-card > div:not(.hero-floating-card) {
  display: none;
}

.hero-floating-card,
.hero-trust-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: min(270px, calc(100% - 32px));
  padding: 16px 18px;
  background: var(--panel-bg-strong);
  color: var(--text-on-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: 18px;
  box-shadow: var(--shadow-medium);
}

.hero-floating-card *,
.hero-trust-card * {
  color: var(--text-on-dark);
}

.hero-floating-card span,
.hero-floating-card em,
.hero-floating-card .accent,
.hero-trust-card .accent {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.home-audience-split,
.audience-section,
.owner-guest-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background: var(--color-white);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.audience-card {
  display: grid;
  gap: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  border: 1px solid var(--border-medium);
}

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

.audience-card li {
  position: relative;
  padding-left: 18px;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.audience-card strong {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.audience-card-owner {
  background: var(--panel-bg-strong);
  color: var(--text-on-dark);
  border: none;
}

.audience-card-owner,
.audience-card-owner h1,
.audience-card-owner h2,
.audience-card-owner h3,
.audience-card-owner h4,
.audience-card-owner p,
.audience-card-owner li,
.audience-card-owner span,
.audience-card-owner strong {
  color: var(--text-on-dark);
}

.audience-card-owner .muted,
.audience-card-owner small {
  color: rgba(255, 255, 255, 0.88);
}

.audience-card-owner .eyebrow,
.audience-card-owner .label,
.audience-card-owner .pill,
.audience-card-owner .badge,
.audience-card-owner em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.audience-card-owner .audience-icon {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary-700);
}

.audience-card-owner a,
.audience-card-owner .button,
.audience-card-owner .card-link {
  background: var(--color-white);
  color: var(--color-primary-700);
  border: 1px solid var(--color-white);
}

.audience-card em {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
}

.audience-card-guest em {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}

.audience-card-owner em {
  background: var(--color-white);
  color: var(--color-primary-700);
}

.audience-card-guest {
  background: var(--card-bg);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  border-top: 5px solid var(--support);
}

.audience-card-guest,
.audience-card-guest h1,
.audience-card-guest h2,
.audience-card-guest h3,
.audience-card-guest h4,
.audience-card-guest li,
.audience-card-guest span,
.audience-card-guest strong {
  color: var(--text-main);
}

.audience-card-guest .muted,
.audience-card-guest small,
.audience-card-guest p {
  color: var(--text-muted);
}

.audience-card-guest .eyebrow,
.audience-card-guest .label,
.audience-card-guest .pill,
.audience-card-guest .badge,
.audience-card-guest em {
  color: var(--support);
  font-style: normal;
  font-weight: 800;
}

.audience-card-guest .audience-icon,
.audience-card-guest a,
.audience-card-guest .button,
.audience-card-guest .card-link {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
  border: 1px solid var(--button-primary-bg);
}

.audience-card-guest .audience-icon {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
}

.featured-homes {
  background: var(--color-base-200);
  color: var(--text-main);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.collections {
  background: var(--color-white);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.collections.featured-homes {
  background: var(--color-base-200);
}

.featured-homes .eyebrow {
  color: var(--accent-strong);
  font-weight: 800;
}

.featured-homes h2 {
  color: var(--text-main);
}

.featured-homes p {
  color: var(--text-muted);
}

.home-featured-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.home-featured-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.home-featured-media img,
.home-featured-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 0.35s ease;
}

.home-featured-card:hover img {
  transform: scale(1.035);
}

.home-featured-card > div:not(.home-featured-media) {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px 22px 22px;
}

.home-featured-card h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
}

.home-featured-card > div > span {
  color: var(--accent-strong);
  font-weight: 800;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.featured-meta li {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--color-primary-500);
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(6, 59, 99, 0.45);
}

.showcase-cta {
  margin-top: 28px;
}

.owner-feature--marketing,
.owner-care-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--color-primary-700);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.owner-feature--marketing h2,
.owner-care-section h2 {
  color: var(--text-on-dark);
}

.owner-feature--marketing .eyebrow,
.owner-care-section .eyebrow {
  color: var(--accent);
}

.owner-feature--marketing p,
.owner-care-section p {
  color: var(--text-on-dark-muted);
}

.owner-feature--marketing .primary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary-700);
}

.owner-feature--marketing .primary:hover {
  background: var(--section-bg-soft);
  border-color: var(--section-bg-soft);
  color: var(--color-primary-700);
}

.home-care-grid,
.owner-care-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background: var(--color-base-200);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.home-care-grid article,
.owner-feature--marketing .feature-card,
.owner-care-section .feature-card {
  padding: clamp(20px, 3vw, 30px);
  background: var(--card-bg);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.home-care-grid article::before,
.owner-feature--marketing .feature-card::before,
.owner-care-section .feature-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--accent);
}

.home-care-grid h3,
.owner-feature--marketing .feature-card h3,
.owner-care-section .feature-card h3 {
  color: var(--color-primary-500);
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
}

.home-care-grid p,
.owner-feature--marketing .feature-card p,
.owner-care-section .feature-card p {
  color: var(--text-muted);
}

.guest-appeal-strip,
.guest-appeal,
.vacation-appeal-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background: var(--color-white);
  color: var(--text-main);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.guest-appeal-strip article,
.guest-appeal .feature-card,
.vacation-appeal-section .feature-card {
  padding: clamp(18px, 2.4vw, 28px);
  background: var(--panel-bg);
  border: 1px solid rgba(31, 139, 182, 0.20);
  border-radius: 20px;
  box-shadow: var(--shadow-support);
}

.guest-appeal-strip span,
.guest-appeal .icon,
.vacation-appeal-section .icon {
  display: block;
  margin-bottom: 8px;
  color: var(--support);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guest-appeal-strip strong {
  display: block;
  color: var(--text-main);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.22;
}

.guest-appeal-strip p,
.guest-appeal p,
.vacation-appeal-section p {
  color: var(--text-muted);
}

.disney-area-section,
.attractions-section,
.local-attractions-section {
  padding: clamp(38px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--color-base-200);
  color: var(--text-main);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.disney-area-section h2,
.attractions-section h2,
.local-attractions-section h2 {
  color: var(--text-main);
}

.disney-area-section p,
.attractions-section p,
.local-attractions-section p {
  color: var(--text-muted);
}

.disney-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.disney-area-tags span,
.attractions-section .pill,
.local-attractions-section .pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-primary-500);
  border-radius: 999px;
  background: var(--color-primary-500);
  color: var(--color-white);
  font-weight: 800;
}

.attractions-section .pill-light,
.local-attractions-section .pill-light {
  background: var(--color-support-100);
  color: var(--color-primary-700);
  border: 1px solid rgba(11, 95, 147, 0.18);
}

/* Secondary Pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  background: var(--page-bg);
  color: var(--text-main);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero--visual {
  display: flex;
  align-items: flex-end;
  min-height: clamp(260px, 34vh, 390px);
  color: var(--text-on-dark);
  background: var(--panel-bg-strong);
  border-bottom: 0;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center 50%);
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 59, 99, 0.88) 0%, rgba(6, 59, 99, 0.54) 54%, rgba(6, 59, 99, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 59, 99, 0.80) 0%, rgba(6, 59, 99, 0.16) 52%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.page-breadcrumb a {
  text-decoration: none;
}

.page-hero .eyebrow {
  color: var(--accent-strong);
  font-weight: 800;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--text-main);
  font-size: clamp(2.35rem, 5vw, 4.45rem);
}

.page-hero p,
.page-hero .lead {
  max-width: 760px;
  color: var(--text-muted);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) {
  background: var(--color-primary-700);
  color: var(--text-on-dark);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .page-breadcrumb,
.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .page-breadcrumb a,
.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) h1,
.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) p,
.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .lead {
  color: var(--text-on-dark);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .page-breadcrumb a:hover {
  color: var(--accent);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .eyebrow {
  color: var(--accent);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .primary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary-700);
}

.page-hero:not(.page-hero--visual):not(.about-hero):not(.guide-hero) .secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--text-on-dark);
}

.page-hero--visual .page-breadcrumb,
.page-hero--visual .page-breadcrumb a,
.page-hero--visual .eyebrow,
.page-hero--visual h1,
.page-hero--visual p,
.page-hero--visual .lead {
  color: var(--text-on-dark);
}

.page-hero--visual .eyebrow {
  color: var(--accent);
}

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

.page-lead,
.page-main,
.property-showcase--page,
.page-explore {
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.page-lead {
  background: var(--color-base-200);
}

.page-main {
  background: var(--color-white);
}

.property-showcase--page {
  background: var(--color-base-200);
}

.page-explore {
  background: var(--color-white);
}

.page-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  padding: clamp(32px, 5vw, 58px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--border-soft);
}

.page-lead-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.page-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.page-lead-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 22px;
  background: var(--panel-bg-strong);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-medium);
}

.page-lead-panel,
.page-lead-panel strong,
.page-lead-panel li {
  color: var(--text-on-dark);
}

.page-lead-panel span {
  color: var(--accent);
  font-weight: 800;
}

.page-lead-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.page-lead-image {
  margin: 4px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  border: 1px solid var(--border-on-dark);
  background: rgba(255, 255, 255, 0.12);
}

.page-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-main {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  background: var(--section-bg);
}

.page-section-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.page-section-grid article {
  grid-column: span 2;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 2.4vw, 26px);
}

.standards-grid article {
  background: var(--section-bg-strong);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
}

.owner-process-list article,
.owner-proof-grid div {
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
}

.page-section-grid article:first-child,
.page-section-grid article:nth-child(2) {
  grid-column: span 3;
}

.owner-market-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: var(--panel-bg-strong);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-medium);
}

.owner-market-panel h2,
.owner-market-panel p {
  color: var(--text-on-dark);
}

.owner-process,
.owner-review,
.global-lessons,
.seo-rich-band,
.content-band,
.contact-form-panel,
.property-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.owner-review,
.contact-form-panel,
.property-enquiry,
.content-band {
  background: var(--section-bg-alt);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.owner-review {
  margin: clamp(28px, 5vw, 60px) clamp(18px, 5vw, 72px);
  padding: clamp(24px, 4vw, 42px);
}

.owner-review ul {
  margin: 18px 0 0;
  padding-left: 1.1rem;
}

.owner-reference {
  margin: 0 clamp(18px, 5vw, 72px) clamp(28px, 5vw, 60px);
  padding: clamp(28px, 4vw, 46px);
  background: var(--card-bg-highlight);
  color: var(--text-on-dark);
  border: 1px solid var(--border-on-dark);
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.owner-reference-eyebrow {
  margin: 0 0 12px;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owner-reference h2 {
  color: var(--text-on-dark);
}

.owner-reference-support,
.owner-reference p:not(.owner-reference-eyebrow):not(.owner-reference-attribution):not(.owner-reference-note) {
  color: var(--text-on-dark-muted);
}

.owner-reference-quote {
  position: relative;
  margin: 22px 0 16px;
  padding-left: 18px;
  border-left: 4px solid var(--accent-gold);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-on-dark);
}

.owner-reference-attribution {
  margin: 18px 0 0;
  color: var(--text-on-dark-muted);
}

.owner-reference-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.owner-reference .page-lead-actions {
  margin-top: 22px;
}

.owner-reference .primary {
  background: var(--color-white);
  color: var(--color-primary-700);
  border-color: var(--color-white);
}

.owner-reference .primary:hover {
  background: var(--section-bg-strong);
  color: var(--color-primary-700);
  border-color: var(--section-bg-strong);
}

.owner-reference .secondary,
.owner-reference a.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--text-on-dark);
  text-decoration: none;
}

.owner-reference .secondary.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.owner-reference .secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.75);
}

/* Property management + vacation homes — visible section stripes */
.page-property-management,
.page-orlando-vacation-rental-management-for-owners,
.page-vacation-homes {
  background: var(--page-bg);
}

.page-property-management .page-trust-strip,
.page-orlando-vacation-rental-management-for-owners .page-trust-strip,
.page-vacation-homes .page-trust-strip {
  background: var(--color-base-200);
}

.page-property-management .page-lead,
.page-orlando-vacation-rental-management-for-owners .page-lead {
  background: var(--color-white);
}

.page-property-management .page-main,
.page-orlando-vacation-rental-management-for-owners .page-main {
  background: var(--color-base-200);
}

.page-property-management .owner-reference,
.page-orlando-vacation-rental-management-for-owners .owner-reference {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-property-management .faq,
.page-orlando-vacation-rental-management-for-owners .faq {
  background: var(--color-white);
}

.page-vacation-homes .property-showcase--page {
  background: var(--color-white);
}

.page-vacation-homes .faq {
  background: var(--color-base-200);
}

.page-vacation-homes .page-explore {
  background: var(--color-white);
}

.page-property-management .page-section-grid article:nth-child(3n + 1),
.page-orlando-vacation-rental-management-for-owners .page-section-grid article:nth-child(3n + 1) {
  background: var(--card-bg);
  border-top: 4px solid var(--color-primary-500);
}

.page-property-management .page-section-grid article:nth-child(3n + 2),
.page-orlando-vacation-rental-management-for-owners .page-section-grid article:nth-child(3n + 2) {
  background: var(--card-bg-warm);
  border-top: 4px solid var(--color-support-500);
}

.page-property-management .page-section-grid article:nth-child(3n),
.page-orlando-vacation-rental-management-for-owners .page-section-grid article:nth-child(3n) {
  background: var(--card-bg-soft);
  border-top: 4px solid var(--color-accent-500);
}

.page-property-management .owner-proof-grid div:nth-child(4n + 1),
.page-orlando-vacation-rental-management-for-owners .owner-proof-grid div:nth-child(4n + 1) {
  background: var(--card-bg);
}

.page-property-management .owner-proof-grid div:nth-child(4n + 2),
.page-orlando-vacation-rental-management-for-owners .owner-proof-grid div:nth-child(4n + 2) {
  background: var(--card-bg-warm);
}

.page-property-management .owner-proof-grid div:nth-child(4n + 3),
.page-orlando-vacation-rental-management-for-owners .owner-proof-grid div:nth-child(4n + 3) {
  background: var(--card-bg-soft);
}

.page-property-management .owner-proof-grid div:nth-child(4n),
.page-orlando-vacation-rental-management-for-owners .owner-proof-grid div:nth-child(4n) {
  background: var(--section-bg-strong);
}

.page-property-management .owner-process,
.page-orlando-vacation-rental-management-for-owners .owner-process {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--border-medium);
}

.page-property-management .owner-process-list article:nth-child(odd),
.page-orlando-vacation-rental-management-for-owners .owner-process-list article:nth-child(odd) {
  background: var(--color-base-200);
}

.page-property-management .owner-process-list article:nth-child(even),
.page-orlando-vacation-rental-management-for-owners .owner-process-list article:nth-child(even) {
  background: var(--color-white);
}

.page-property-management .owner-standards,
.page-orlando-vacation-rental-management-for-owners .owner-standards {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--border-medium);
}

.page-property-management .standards-grid article:nth-child(4n + 1),
.page-orlando-vacation-rental-management-for-owners .standards-grid article:nth-child(4n + 1) {
  background: var(--card-bg);
}

.page-property-management .standards-grid article:nth-child(4n + 2),
.page-orlando-vacation-rental-management-for-owners .standards-grid article:nth-child(4n + 2) {
  background: var(--card-bg-soft);
}

.page-property-management .standards-grid article:nth-child(4n + 3),
.page-orlando-vacation-rental-management-for-owners .standards-grid article:nth-child(4n + 3) {
  background: var(--card-bg-warm);
}

.page-property-management .standards-grid article:nth-child(4n),
.page-orlando-vacation-rental-management-for-owners .standards-grid article:nth-child(4n) {
  background: var(--section-bg-strong);
}

.page-property-management .owner-review,
.page-orlando-vacation-rental-management-for-owners .owner-review {
  background: var(--color-white);
}

.page-property-management .owner-review .owner-inquiry-form,
.page-orlando-vacation-rental-management-for-owners .owner-review .owner-inquiry-form {
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-card);
}

.page-property-management .faq-group:nth-child(odd),
.page-orlando-vacation-rental-management-for-owners .faq-group:nth-child(odd) {
  background: var(--color-base-200);
}

.page-property-management .faq-group:nth-child(even),
.page-orlando-vacation-rental-management-for-owners .faq-group:nth-child(even) {
  background: var(--card-bg-gold-soft);
  border-color: rgba(247, 148, 29, 0.24);
}

.page-vacation-homes .stay-type-grid a:nth-child(1) {
  background: var(--card-bg);
  border-top: 4px solid var(--color-primary-500);
}

.page-vacation-homes .stay-type-grid a:nth-child(2) {
  background: var(--card-bg-warm);
  border-top: 4px solid var(--color-support-500);
}

.page-vacation-homes .stay-type-grid a:nth-child(3) {
  background: var(--card-bg-soft);
  border-top: 4px solid var(--color-primary-700);
}

.page-vacation-homes .stay-type-grid a:nth-child(4) {
  background: var(--section-bg-strong);
  border-top: 4px solid var(--color-accent-500);
}

.page-vacation-homes .page-explore-grid .page-explore-card:nth-child(3n + 1) {
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(11, 95, 147, 0.22);
}

.page-vacation-homes .page-explore-grid .page-explore-card:nth-child(3n + 2) {
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(31, 139, 182, 0.22);
}

.page-vacation-homes .page-explore-grid .page-explore-card:nth-child(3n) {
  box-shadow: var(--shadow-card), inset 0 0 0 1px rgba(247, 148, 29, 0.28);
}

.owner-proof-grid div,
.standards-grid article,
.owner-process-list article {
  padding: 20px 22px;
}

.owner-proof-grid span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-proof-grid strong {
  color: var(--text-main);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.property-showcase-lead {
  max-width: 980px;
  margin-bottom: 28px;
}

.stay-type-grid + .vacation-category-grid {
  margin-top: clamp(28px, 4vw, 48px);
}

.property-showcase-lead p {
  color: var(--text-muted);
}

.vacation-category-card,
.page-explore-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 220px;
  text-decoration: none;
}

.vacation-category-card img,
.page-explore-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vacation-category-card::after,
.page-explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 59, 99, 0.08), rgba(6, 59, 99, 0.82));
}

.vacation-category-card > span,
.page-explore-card > span {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 18px;
  color: var(--text-on-dark);
}

.vacation-category-card strong,
.page-explore-card span {
  color: var(--text-on-dark);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.18;
}

.vacation-category-card small {
  color: rgba(255, 255, 255, 0.88);
}

.category-card-book {
  background: var(--panel-bg-strong);
}

.category-card-book::after {
  display: none;
}

.community-guide-grid article {
  padding: 22px;
}

.contact-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--section-bg);
}

.contact-paths a {
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 22px;
  text-decoration: none;
}

.contact-paths a:first-child {
  background: var(--panel-bg-strong);
}

.contact-paths a:first-child,
.contact-paths a:first-child strong,
.contact-paths a:first-child small {
  color: var(--text-on-dark);
}

.contact-paths a:first-child span {
  color: var(--accent);
}

.page-contact-grid {
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: var(--section-bg);
}

.page-contact-grid article {
  padding: 22px;
}

.page-contact-intro {
  grid-column: 1 / -1;
  max-width: 820px;
}

.property-page {
  background: var(--section-bg);
}

.property-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 72px);
  background: var(--page-bg);
}

.property-hero-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(95px, 12vw, 160px);
  gap: 8px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
}

.property-hero-collage figure,
.property-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel-bg-strong);
}

.property-hero-collage figure.is-main {
  grid-column: span 2;
  grid-row: span 2;
}

.property-hero-collage img,
.property-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero-copy {
  display: grid;
  gap: 14px;
}

.property-back,
.property-code {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.property-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-facts li {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--section-bg-strong);
  color: var(--text-subtle);
  font-weight: 700;
}

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

.property-gallery {
  background: var(--section-bg);
}

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

.property-gallery-grid figure {
  aspect-ratio: 16 / 11;
  border-radius: 18px;
}

/* Orlando Vacation Guide */
.guide-hero {
  padding: clamp(34px, 5vw, 62px) 0 clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
}

.guide-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
  gap: 0;
  align-items: stretch;
  max-width: none;
  min-height: clamp(300px, 38vw, 480px);
}

.guide-hero:not(.contact-hero) .page-hero-inner {
  min-height: 0;
  align-items: center;
}

.guide-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(28px, 4vw, 48px);
}

.guide-hero-visual {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: clamp(300px, 38vw, 480px);
  height: 100%;
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guide-hero:not(.contact-hero) .guide-hero-visual {
  aspect-ratio: 1152 / 485;
  width: 100%;
  min-height: 0;
  height: auto;
  align-self: center;
}

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

.guide-hero:not(.contact-hero) .guide-hero-visual img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.guide-intro,
.guide-section,
.guide-practical-row {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
  background: var(--color-base-200);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.guide-section {
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.guide-section:nth-of-type(even) {
  background: var(--color-white);
}

.guide-section:nth-of-type(odd) {
  background: var(--color-base-200);
}

.guide-intro article,
.guide-intro aside,
.guide-tip-card,
.guide-list-panel,
.guide-card-grid article,
.guide-season-grid article,
.guide-timeline article,
.guide-stay-panel > div {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.guide-intro article {
  padding: clamp(22px, 4vw, 38px);
  border-left: 6px solid var(--color-accent-500);
}

.guide-intro article p {
  max-width: 76ch;
  margin: 0;
  color: var(--text-subtle);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.guide-intro article p + p {
  margin-top: 16px;
}

.guide-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--color-white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.guide-jump-links span,
.guide-jump-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
}

.guide-jump-links span {
  color: var(--accent-strong);
}

.guide-jump-links a {
  border: 1px solid var(--border-soft);
  background: var(--panel-bg);
  color: var(--text-main);
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.guide-jump-links a:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-500);
}

.guide-intro aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border-top: 5px solid var(--color-primary-500);
  background: var(--color-white);
}

.guide-intro aside h2 {
  margin: 0 0 4px;
  color: var(--text-main);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.guide-intro aside a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--panel-bg);
  color: var(--color-primary-700);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.guide-intro aside a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  color: var(--color-accent-500);
}

.guide-intro aside a:hover {
  border-color: var(--color-primary-500);
  background: var(--color-white);
  color: var(--color-primary-500);
}

.guide-section {
  background: var(--color-white);
}

.guide-section--soft {
  background: var(--section-bg-strong);
}

.guide-section .section-heading {
  max-width: 880px;
}

.guide-split,
.guide-practical-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.guide-practical-row {
  background: var(--color-white);
}

.guide-split--reverse {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.guide-copy p {
  max-width: 82ch;
  margin: 0;
  color: var(--text-subtle);
}

.guide-copy p + p {
  margin-top: 16px;
}

.guide-tip-card,
.guide-list-panel {
  padding: clamp(20px, 3vw, 32px);
}

.guide-tip-card {
  border-top: 5px solid var(--color-primary-500);
}

.guide-list-panel {
  border-top: 5px solid var(--color-accent-500);
}

.guide-tip-card h2,
.guide-tip-card h3,
.guide-list-panel h3,
.guide-card-grid h3,
.guide-season-grid h3,
.guide-stay-panel h2 {
  color: var(--text-main);
}

.guide-tip-card p,
.guide-list-panel p,
.guide-card-grid p,
.guide-season-grid p,
.guide-timeline p,
.guide-stay-panel p {
  color: var(--text-subtle);
}

.guide-tip-card ul,
.guide-list-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.guide-tip-card li,
.guide-list-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--text-subtle);
}

.guide-tip-card li::before,
.guide-list-panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-500);
}

.guide-card-grid,
.guide-season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

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

.guide-card-grid article,
.guide-season-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border-top: 4px solid var(--color-primary-500);
}

.guide-card-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary-700);
  color: var(--color-white);
  font-weight: 900;
}

.guide-card-grid p,
.guide-season-grid p {
  margin: 0;
}

.guide-day-trip-image {
  position: relative;
  margin: clamp(20px, 3vw, 32px) 0 0;
  overflow: hidden;
  min-height: clamp(230px, 28vw, 360px);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.guide-day-trip-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 48%;
}

.guide-day-trip-image figcaption {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  max-width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

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

.guide-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.guide-timeline article {
  padding: 18px;
  border-left: 5px solid var(--color-primary-500);
}

.guide-timeline span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent-700);
  font-weight: 900;
  text-transform: uppercase;
}

.guide-timeline p {
  margin: 0;
  font-weight: 700;
}

.guide-section-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--text-subtle);
  font-size: 1.08rem;
}

.guide-stay-panel {
  background:
    linear-gradient(135deg, rgba(11, 95, 147, 0.94), rgba(31, 139, 182, 0.90)),
    var(--color-primary-700);
}

.guide-stay-panel > div {
  max-width: 900px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--color-white);
}

.guide-stay-panel .actions {
  margin-top: 24px;
}

.guide-faq .section-heading .eyebrow {
  color: var(--color-accent-700);
}

/* About Page */
.about-hero {
  padding: clamp(34px, 5vw, 62px) 0 clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
}

.about-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
  gap: 0;
  align-items: stretch;
  max-width: none;
  min-height: clamp(300px, 38vw, 480px);
}

.about-hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(28px, 4vw, 48px);
}

.about-hero-visual {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: clamp(300px, 38vw, 480px);
  height: 100%;
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

@media (max-width: 1100px) {
  .about-hero {
    padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  }

  .about-hero .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-hero-copy {
    padding-right: 0;
    max-width: none;
  }

  .about-hero-copy h1,
  .about-hero-copy .lead {
    max-width: none;
  }

  .about-hero-visual {
    width: 100%;
    min-height: 0;
    height: auto;
    align-self: stretch;
  }

  .about-hero-visual img {
    position: static;
    width: 100%;
    height: auto;
    max-height: min(56vw, 420px);
    object-fit: contain;
    object-position: center;
  }
}

.about-intro,
.about-section,
.about-audience {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  background: var(--color-base-200);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.about-section {
  background: var(--color-white);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.about-intro-card,
.about-trust-grid article,
.about-card-grid article,
.about-card-grid a,
.about-audience,
.about-audience ul {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.about-intro-card {
  padding: clamp(24px, 4vw, 42px);
  border-left: 6px solid var(--color-accent-500);
}

.about-intro-card h2 {
  margin-bottom: 18px;
}

.about-intro-card p:not(.eyebrow),
.about-section .section-heading p,
.about-audience p,
.about-card-grid p,
.about-trust-grid p {
  color: var(--text-subtle);
}

.about-trust-grid {
  display: grid;
  gap: 16px;
}

.about-trust-grid article {
  padding: clamp(18px, 2.5vw, 28px);
  border-top: 4px solid var(--color-primary-500);
}

.about-section {
  background: var(--color-white);
}

.about-section--soft {
  background: var(--section-bg-strong);
}

.about-section .section-heading {
  max-width: 930px;
}

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

.about-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-card-grid article,
.about-card-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  border-top: 4px solid var(--color-primary-500);
  color: var(--text-main);
  text-decoration: none;
}

.about-card-grid a:hover {
  border-color: var(--color-support-500);
  transform: translateY(-2px);
}

.about-card-grid h3,
.about-trust-grid h3,
.about-audience h2 {
  color: var(--text-main);
}

.about-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  margin: clamp(28px, 5vw, 54px) clamp(18px, 5vw, 72px);
  padding: clamp(26px, 4vw, 46px);
}

.about-audience--guests {
  border-top: 6px solid var(--color-primary-500);
}

.about-audience--owners {
  border-top: 6px solid var(--color-accent-500);
}

.about-audience ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: clamp(18px, 3vw, 28px);
  list-style: none;
}

.about-audience li {
  position: relative;
  padding-left: 22px;
  color: var(--text-subtle);
  font-weight: 650;
}

.about-audience li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-500);
}

.about-audience .primary,
.about-audience .actions {
  margin-top: 20px;
}

.about-cta .actions {
  justify-content: center;
}

/* Contact Page */
.contact-hero {
  background:
    radial-gradient(circle at 78% 12%, rgba(31, 139, 182, 0.18), transparent 32%),
    linear-gradient(135deg, var(--color-white), var(--color-base-100));
}

.contact-hero .page-hero-inner {
  max-width: 880px;
}

.contact-hero.guide-hero .page-hero-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  max-width: none;
  min-height: 0;
}

.contact-hero .guide-hero-copy {
  padding-right: 0;
}

.contact-hero .guide-hero-visual {
  position: static;
  width: clamp(340px, 42vw, 620px);
  min-height: 0;
  height: auto;
  align-self: center;
  justify-self: end;
}

.contact-hero .guide-hero-visual img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1100px) {
  .contact-hero {
    padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  }

  .contact-hero.guide-hero .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-hero .guide-hero-copy {
    max-width: none;
  }

  .contact-hero .guide-hero-copy h1,
  .contact-hero .guide-hero-copy .lead {
    max-width: none;
  }

  .contact-hero .guide-hero-visual {
    width: 100%;
    min-height: 0;
    justify-self: stretch;
  }

  .contact-hero .guide-hero-visual img {
    max-height: min(56vw, 420px);
    object-fit: contain;
  }
}

.text-link {
  color: var(--color-primary-700);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-quick-grid,
.contact-form-section,
.contact-direct,
.contact-links {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.contact-quick-grid,
.contact-detail-grid,
.contact-link-grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.contact-quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--section-bg-soft);
}

.contact-quick-grid article,
.contact-detail-grid article,
.contact-link-grid a,
.contact-form-copy {
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.contact-quick-grid article,
.contact-detail-grid article,
.contact-link-grid a {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 28px);
  color: var(--text-main);
  text-decoration: none;
}

.contact-quick-grid article {
  border-top: 5px solid var(--color-primary-500);
}

.contact-quick-grid article:nth-child(2) {
  border-top-color: var(--color-accent-500);
}

.contact-quick-grid span,
.contact-detail-grid span {
  color: var(--color-accent-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-quick-grid h2,
.contact-detail-grid h3,
.contact-link-grid h3,
.contact-form-copy h2 {
  color: var(--text-main);
}

.contact-quick-grid p,
.contact-detail-grid p,
.contact-link-grid p,
.contact-form-copy p {
  color: var(--text-subtle);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--color-base-100);
}

.contact-form-copy {
  padding: clamp(22px, 3vw, 34px);
  border-left: 6px solid var(--color-accent-500);
}

.contact-message-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(6, 59, 99, 0.24);
  box-shadow:
    0 18px 42px rgba(6, 59, 99, 0.14),
    0 2px 8px rgba(6, 59, 99, 0.08);
}

.contact-message-form .saved,
.contact-message-form .error,
.contact-message-form .contact-message-field,
.contact-message-form button {
  grid-column: 1 / -1;
}

.contact-direct {
  background: var(--color-base-200);
}

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

.contact-detail-grid article {
  border-top: 4px solid var(--color-primary-500);
}

.contact-links {
  background: var(--color-base-100);
}

.contact-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-link-grid a {
  border-top: 4px solid var(--color-primary-500);
}

.contact-link-grid a:hover {
  border-color: var(--color-support-500);
  transform: translateY(-2px);
}

.contact-cta .actions {
  justify-content: center;
}

/* FAQ, CTA and Footer */
.faq {
  background: var(--color-white);
  color: var(--text-main);
  border-top: 1px solid var(--border-medium);
  border-bottom: 1px solid var(--border-medium);
}

.faq details {
  max-width: none;
  padding: 18px 20px;
  margin-top: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.faq summary {
  color: var(--text-main);
  font-weight: 800;
  cursor: pointer;
}

.faq p,
.faq li {
  color: var(--text-muted);
}

.faq-group {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 18px 18px 8px;
  background: var(--section-bg-strong);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  box-shadow: var(--shadow-small);
}

.faq-group:first-of-type {
  margin-top: 0;
}

.faq-group-label {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-medium);
  color: var(--color-primary-500);
}

.cta-band,
.final-cta,
.page-cta {
  background: var(--color-primary-700);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band h2,
.final-cta h2,
.page-cta h2 {
  color: var(--text-on-dark);
}

.cta-band p,
.final-cta p,
.page-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .primary,
.final-cta .button-primary,
.page-cta .button-primary {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-primary-700);
}

.cta-band .secondary,
.final-cta .button-secondary,
.page-cta .button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.70);
  color: var(--color-white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(24px, 4vw, 46px);
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  background: var(--color-primary-700);
  color: var(--text-on-dark);
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text-on-dark);
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  display: block;
  width: fit-content;
  color: var(--color-base-100);
  line-height: 1.35;
  text-decoration: none;
}

.site-footer a + a {
  margin-top: 10px;
}

.site-footer a:hover {
  color: var(--color-white);
}

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

.footer-brand {
  max-width: 430px;
}

.footer-brand img {
  width: min(190px, 60vw);
  height: auto;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 12px;
  background: var(--color-white);
}

/* Admin */
.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  background: var(--color-primary-700);
  color: var(--text-on-dark);
}

.admin-header,
.admin-header strong,
.admin-header span {
  color: var(--text-on-dark);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 22px;
}

.admin-nav,
.admin-section,
.admin-panel {
  background: var(--color-white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.admin-nav {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 6px;
  align-self: start;
  padding: 12px;
}

.admin-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-main);
  font-weight: 800;
  text-decoration: none;
}

.admin-nav a:hover {
  background: var(--section-bg-strong);
}

.admin-main {
  display: grid;
  gap: 22px;
}

.admin-section,
.admin-panel {
  padding: 22px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.admin-form label:has(textarea),
.admin-form button,
.admin-form .full {
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1100px) {
  .card-grid,
  .home-featured-grid,
  .property-grid,
  .vacation-category-grid,
  .page-explore-grid,
  .stay-type-grid,
  .community-guide-grid,
  .standards-grid,
  .owner-proof-grid,
  .page-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-hero .hero-copy > .eyebrow,
  .home-hero .hero-copy > h1,
  .home-hero .hero-copy > .lead {
    max-width: min(100%, calc(100vw - clamp(300px, 34vw, 390px)));
  }

  .hero-search {
    width: min(720px, 100%);
  }
}

@media (max-width: 900px) {
  .guide-hero {
    padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 72px);
  }

  .guide-hero .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .guide-hero-copy {
    padding-right: 0;
  }

  .guide-hero-visual {
    min-height: clamp(220px, 52vw, 340px);
  }

  .contact-hero .guide-hero-visual {
    width: 100%;
    justify-self: stretch;
  }

  .guide-intro,
  .guide-split,
  .guide-split--reverse,
  .guide-practical-row {
    grid-template-columns: 1fr;
  }

  .guide-card-grid,
  .guide-card-grid--parks,
  .guide-season-grid,
  .guide-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro,
  .about-audience {
    grid-template-columns: 1fr;
  }

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

  .contact-quick-grid,
  .contact-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-section,
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 0;
    padding: 11px clamp(14px, 4vw, 22px);
  }

  .brand-logo {
    display: none;
  }

  .brand {
    width: 100%;
    container-type: inline-size;
  }

  .brand-text {
    display: block;
    min-width: 0;
    width: 100%;
    color: var(--text-main);
  }

  .brand-title {
    font-weight: 800;
    font-size: clamp(1.05rem, 8.1cqi, 1.9rem);
    line-height: 1.08;
    white-space: nowrap;
  }

  .brand-subtitle {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: clamp(0.68rem, 4.9cqi, 1rem);
    font-weight: 600;
    line-height: 1.12;
    white-space: nowrap;
  }

  .nav {
    display: none;
  }

  .owner-nav-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: var(--color-white);
    color: var(--text-main);
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary-700);
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before,
  .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .menu-icon::before {
    top: -6px;
  }

  .menu-icon::after {
    top: 6px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 10px 0 14px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
  }

  .mobile-menu-heading {
    display: block;
    padding: 0 14px 8px;
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-menu-panel a {
    display: grid;
    gap: 3px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-main);
    text-decoration: none;
  }

  .mobile-menu-title {
    color: var(--text-main);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.12;
  }

  .mobile-menu-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .mm-logo {
    display: block;
    width: min(200px, 60vw);
    height: auto;
    margin: 14px;
  }

  .home-hero-grid,
  .home-audience-split,
  .owner-feature--marketing,
  .home-care-grid,
  .guest-appeal-strip,
  .page-lead,
  .owner-process,
  .owner-review,
  .global-lessons,
  .seo-rich-band,
  .content-band,
  .contact-form-panel,
  .property-enquiry,
  .property-hero,
  .owner-market-panel {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 59, 99, 0.68) 0%, rgba(6, 59, 99, 0.56) 56%, rgba(6, 59, 99, 0.42) 100%),
      linear-gradient(180deg, rgba(31, 139, 182, 0.16), rgba(6, 59, 99, 0.30));
  }

  .home-hero-grid {
    min-height: 0;
    align-items: start;
  }

  .home-hero .hero-copy {
    max-width: min(100%, 720px);
  }

  .home-hero .hero-copy > .eyebrow,
  .home-hero .hero-copy > h1,
  .home-hero .hero-copy > .lead {
    max-width: min(100%, calc(100vw - clamp(240px, 36vw, 330px)));
  }

  .hero-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(680px, 100%);
    border-radius: 28px;
  }

  .hero-search label:nth-of-type(2n) {
    border-right: 0;
  }

  .hero-search button {
    grid-column: 1 / -1;
  }

  .collection-heading h2 {
    white-space: normal;
  }

  .hero-circle-cluster {
    --badge-x: -8px;
    --badge-y: -12px;
    top: 0;
    right: 0;
    width: auto;
    max-width: min(42vw, 350px);
  }

  .hero-badge-image {
    width: clamp(96px, 12vw, 132px);
    height: clamp(96px, 12vw, 132px);
  }

  .hero-badge-image + .hero-badge-image {
    margin-left: clamp(8px, 1vw, 12px);
  }

  .trust-band,
  .page-trust-strip,
  .contact-paths {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    max-width: 640px;
  }

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

  .page-section-grid article,
  .page-section-grid article:first-child,
  .page-section-grid article:nth-child(2) {
    grid-column: auto;
  }

  .property-hero-collage,
  .property-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-shell,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    position: static;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding-top: 44px;
  }

  .home-hero .hero-copy {
    max-width: min(100%, 560px);
  }

  .home-hero .hero-copy > .eyebrow,
  .home-hero .hero-copy > h1,
  .home-hero .hero-copy > .lead {
    padding-right: clamp(92px, 24vw, 150px);
    max-width: min(100%, calc(100vw - clamp(180px, 36vw, 250px)));
  }

  .home-hero h1,
  .home-hero .hero-copy h1 {
    font-size: clamp(2.5rem, 9vw, 4rem);
  }

  .home-hero .lead {
    max-width: 34rem;
  }

  .hero-search {
    grid-template-columns: 1fr;
    width: min(430px, 100%);
    border-radius: 24px;
  }

  .hero-search label,
  .hero-search label:nth-of-type(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 42, 62, 0.14);
  }

  .hero-search label:last-of-type {
    border-bottom: 0;
  }

  .hero-circle-cluster {
    --badge-x: -6px;
    --badge-y: -12px;
    max-width: 172px;
  }

  .hero-badge-image {
    width: 82px;
    height: 82px;
  }

  .hero-badge-image + .hero-badge-image {
    margin-left: 6px;
  }

}

@media (max-width: 560px) {
  .guide-intro,
  .guide-section,
  .guide-practical-row {
    padding: 34px 16px;
  }

  .guide-card-grid,
  .guide-card-grid--parks,
  .guide-season-grid,
  .guide-timeline {
    grid-template-columns: 1fr;
  }

  .guide-intro aside a {
    border-radius: 16px;
  }

  .about-intro,
  .about-section {
    padding: 34px 16px;
  }

  .about-audience {
    margin: 24px 16px;
    padding: 24px 18px;
  }

  .about-card-grid,
  .about-card-grid--four {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid,
  .contact-link-grid,
  .contact-message-form {
    grid-template-columns: 1fr;
  }

  .contact-quick-grid,
  .contact-form-section,
  .contact-direct,
  .contact-links {
    padding: 34px 16px;
  }

  .card-grid,
  .home-featured-grid,
  .property-grid,
  .vacation-category-grid,
  .page-explore-grid,
  .stay-type-grid,
  .community-guide-grid,
  .standards-grid,
  .owner-proof-grid,
  .page-contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .home-hero h1,
  .home-hero .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .home-hero {
    padding-top: 38px;
  }

  .home-hero .hero-copy {
    padding: 20px;
    border-radius: 22px;
  }

  .home-hero .hero-copy > .eyebrow,
  .home-hero .hero-copy > h1,
  .home-hero .hero-copy > .lead {
    padding-right: 0;
    max-width: 100%;
  }

  .desktop-only-copy {
    display: none;
  }

  .mobile-only-copy {
    display: inline;
  }

  .hero-search {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
    border-radius: 22px;
  }

  .hero-search label {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 42, 62, 0.14);
  }

  .hero-circle-cluster {
    display: none;
  }

  .hero-floating-card,
  .hero-trust-card {
    position: static;
    width: auto;
    margin: -28px 14px 14px;
  }

  .property-hero-collage {
    grid-auto-rows: 120px;
  }

  .property-gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-label {
    display: none;
  }
}

.fgp-consent-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 40;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
}

.fgp-consent-banner__inner {
  display: grid;
  gap: 12px;
}

.fgp-consent-banner p {
  margin: 0;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fgp-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.fgp-consent-banner button,
.footer-consent-link {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-primary-700);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.fgp-consent-banner button[data-consent-accept] {
  padding: 10px 16px;
  background: var(--color-primary-700);
  color: var(--color-white);
  text-decoration: none;
}

.fgp-consent-banner button[data-consent-reject] {
  padding: 10px 16px;
  border: 1px solid var(--border-soft);
  text-decoration: none;
}

.fgp-consent-banner a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
