/* McCraw Real Estate — Styles */

:root {
  /* Brand colors */
  --brand-primary: #93212d; /* deep red */
  --brand-secondary: #a8a186; /* warm neutral */
  --brand-dark: #262427; /* near-black */
  --navy-900: #0b1e2d;
  --navy-800: #102a41;
  --navy-700: #15314b;
  --navy-600: #1a3a56;
  --gold-500: #d4a373;
  --gold-400: #e2b57c;
  --navy-gradient: linear-gradient(135deg, #071727 0%, #112f46 72%);
  --sand-50: #faf6f1;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.15);
  --radius: 14px;
  --radius-sm: 10px;

  /* HomeLink widget overrides */
  --hl-font-family: 'Lora', Georgia, 'Times New Roman', serif;
  --hl-card-bg: var(--white);
  --hl-card-border: var(--border);
  --hl-card-foreground: var(--ink-900);
  --hl-cta-bg: var(--brand-primary);
  --hl-cta-foreground: var(--white);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  color: var(--ink-900);
  background: linear-gradient(180deg, #071727 0%, #102a41 16%, #f7fafc 58%, #fbfdff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

.skip-link {
  position: absolute; left: 0; top: -40px;
  background: var(--navy-900); color: var(--white);
  padding: 10px 14px; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 6px 20px rgba(7, 23, 39, 0.08);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--brand-primary) 55%, var(--gold-500) 100%);
  pointer-events: none;
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px clamp(24px, 5vw, 80px) 12px;
  gap: 16px;
  transition: padding 0.35s ease;
}
.site-header.masthead-visible .nav {
  justify-content: flex-end;
  padding: 18px clamp(24px, 5vw, 80px) 12px clamp(300px, 28vw, 420px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--brand-dark); text-decoration: none; font-weight: 700; letter-spacing: .2px; }
.brand-logo { display: block; height: clamp(52px, 9vw, 92px); width: auto; }
.brand-logo--footer { height: clamp(44px, 7vw, 72px); }
.brand--footer { background: rgba(255,255,255,0.96); padding: 10px 16px; border-radius: 14px; box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.brand--masthead {
  position: absolute;
  top: -18px;
  left: clamp(18px, 4vw, 120px);
  --sign-offset-x: 0;
  transform: translateX(var(--sign-offset-x)) translateY(-10px);
  padding: 22px 30px 26px;
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  border: 1px solid rgba(15, 34, 51, 0.08);
  box-shadow: 0 20px 36px rgba(7, 23, 39, 0.22);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s ease;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
}
.brand--masthead.is-visible {
  opacity: 1;
  transform: translateX(var(--sign-offset-x)) translateY(0);
  pointer-events: auto;
}
.brand--masthead::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 110px;
  height: 12px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
  border-radius: 999px 999px 6px 6px;
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(7, 23, 39, 0.25);
}
.brand--masthead::after {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 2px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  box-shadow: -30px 0 0 rgba(255,255,255,0.9), 30px 0 0 rgba(255,255,255,0.9);
}
.brand--masthead.is-visible:hover {
  box-shadow: 0 24px 40px rgba(7, 23, 39, 0.24);
  transform: translateX(var(--sign-offset-x)) translateY(-2px);
}

@media (max-width: 720px) {
  .nav { padding: 18px clamp(14px, 4vw, 40px) 12px clamp(14px, 4vw, 40px); }
  .brand--masthead { top: -10px; left: 50%; --sign-offset-x: -50%; padding: 18px 24px 22px; }
  .brand--masthead::before { width: 88px; top: -30px; }
  .brand--masthead::after { top: -30px; height: 26px; box-shadow: -24px 0 0 rgba(255,255,255,0.9), 24px 0 0 rgba(255,255,255,0.9); }
}

@media (max-width: 560px) {
  .nav { justify-content: flex-end; padding: 16px clamp(12px, 6vw, 28px) 10px; }
  .brand--masthead { top: -4px; left: 50%; --sign-offset-x: -50%; padding: 14px 18px 18px; border-radius: 16px; }
  .brand--masthead::before { width: 70px; height: 8px; top: -22px; }
  .brand--masthead::after { top: -22px; height: 20px; box-shadow: -18px 0 0 rgba(255,255,255,0.9), 18px 0 0 rgba(255,255,255,0.9); }
  .brand-logo { height: clamp(44px, 18vw, 72px); }
  .brand-logo--footer { height: clamp(56px, 28vw, 96px); }
}

.primary-nav { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .22s ease, visibility .22s ease;
  z-index: 9999;
}
.nav-close { display: none; position: fixed; top: 20px; right: 20px; background: rgba(255,255,255,0.95); border: 0; padding: 12px; border-radius: 10px; cursor: pointer; color: var(--navy-900); z-index: 10002; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav-close:hover { background: #fff; }
.nav-close svg { width: 28px; height: 28px; display: block; }
body.nav-open .nav-close { display: block; }
.primary-nav ul { list-style: none; margin: 0; padding: 24px; display: grid; gap: 8px; text-align: center; }
.primary-nav a { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 24px; border-radius: 12px; color: var(--navy-900); text-decoration: none; font-size: 1.2rem; }
.primary-nav a:hover { background: rgba(7, 23, 39, 0.08); color: var(--brand-primary); }

.nav-icon { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; color: currentColor; }
.nav-icon svg { width: 24px; height: 24px; display: block; }
.nav-label { }

.nav-toggle { border: 0; background: transparent; display: grid; gap: 5px; padding: 8px; border-radius: 8px; z-index: 10001; position: relative; }
.nav-toggle:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }
.nav-toggle-bar { width: 24px; height: 2px; background: var(--brand-dark); display: block; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

/* Open state */
body.nav-open .site-header { z-index: 10000; }
body.nav-open .nav-toggle { display: none; }
body.nav-open .primary-nav { visibility: visible; opacity: 1; pointer-events: auto; }

@media (min-width: 1135px) {
  .nav-toggle { display: none; }
  .primary-nav { position: static; width: auto; height: auto; border: 0; padding: 0; box-shadow: none; visibility: visible; opacity: 1; pointer-events: auto; background: transparent; display: block; }
  .primary-nav ul { grid-auto-flow: column; gap: 6px; text-align: left; padding: 0; }
  .primary-nav a { padding: 8px 12px; font-size: 1rem; justify-content: flex-start; }
  .nav-icon { width: 20px; height: 20px; }
  .nav-icon svg { width: 20px; height: 20px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1100px 620px at -10% -30%, rgba(212,163,115,0.36) 0%, transparent 68%),
    radial-gradient(940px 540px at 125% -12%, rgba(147,33,45,0.22) 0%, transparent 70%),
    linear-gradient(180deg, rgba(7,23,39,0.94) 0%, rgba(17,47,70,0.88) 48%, #f4f7fb 100%);
  overflow: hidden;
}
/* Photo layer for hero */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('../img/home-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.78;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% -20% auto -20%; height: 60vh;
  background:
    radial-gradient(520px 420px at 14% 36%, rgba(212,163,115,0.55), transparent 68%),
    radial-gradient(440px 320px at 84% 18%, rgba(7,23,39,0.42), transparent 78%);
  filter: blur(48px);
  transform: rotate(-6deg);
}
.hero .hero-content { position: relative; text-align: center; padding: 48vh 0 86px; z-index: 1; }
.hero .hero-panel {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17, 47, 70, 0.16);
  box-shadow: 0 32px 50px rgba(7, 23, 39, 0.18);
  border-radius: 22px;
  padding: 28px;
  width: min(860px, 100%);
  margin: 0 auto;
}
@media (min-width: 740px) {
  .hero .hero-panel { padding: 36px; }
}
.hero h1 { font-size: clamp(2.2rem, 5.4vw, 3.2rem); line-height: 1.12; margin: 0 0 12px; color: var(--brand-dark); font-weight: 700; letter-spacing: -0.2px; }
.hero .subtitle { color: var(--ink-700); margin: 0 0 26px; font-size: clamp(1.05rem, 2.6vw, 1.25rem); }

.search { display: grid; grid-template-columns: 1fr auto; gap: 10px; width: min(720px, 100%); margin: 0 auto; background: var(--white); padding: 8px; border-radius: 14px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.search input { border: 0; padding: 14px 14px; font-size: 16px; outline: none; border-radius: 10px; }
.search button { border: 0; background: var(--brand-primary); color: var(--white); padding: 12px 18px; border-radius: 10px; font-weight: 600; box-shadow: none; }
.search button:hover { background: #7f1d24; }

.hero-badges { display: flex; gap: 12px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.hero-badges span { background: rgba(17,47,70,0.14); color: #0d2233; padding: 10px 14px; border-radius: 999px; font-size: 14px; border: 1px solid rgba(17,47,70,0.3); box-shadow: 0 10px 18px rgba(7,23,39,0.08); font-weight: 600; }

.hero-overlay { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(800px 300px at 50% 100%, rgba(11,30,45,0.14), transparent 60%); opacity: .4; }

.hero-socials {
  position: absolute;
  top: clamp(18px, 6vh, 44px);
  right: clamp(12px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.hero-socials .social-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
  box-shadow: 0 14px 28px rgba(7, 23, 39, 0.16), inset 0 0 0 1px rgba(17, 47, 70, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-socials .social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(7, 23, 39, 0.2), inset 0 0 0 1px rgba(147, 33, 45, 0.24);
}

.hero-socials .social-icon img {
  width: 24px;
  height: auto;
}

@media (max-width: 640px) {
  .hero .hero-content {
    padding: 60px 16px 100px;
  }

  .hero .hero-panel {
    padding: 24px 20px;
  }

  .search {
    gap: 8px;
    padding: 6px;
  }

  .search input {
    padding: 12px 10px;
    min-width: 0;
  }

  .search button {
    padding: 12px 14px;
    white-space: nowrap;
  }

  .hero-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-badges span {
    font-size: 12px;
    padding: 8px 14px;
    text-align: center;
    white-space: nowrap;
  }

  .hero-socials {
    top: auto;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 28px rgba(7, 23, 39, 0.18);
  }

  .hero-socials .social-icon {
    width: 38px;
    height: 38px;
    box-shadow: none;
  }

  .hero-socials .social-icon:hover {
    transform: translateY(-1px);
    box-shadow: none;
  }
}

/* Hero Logo (scroll transition) */
.hero-logo-link {
  display: block;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-logo-img {
  display: block;
  height: clamp(140px, 18vw, 200px);
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 24px rgba(7, 23, 39, 0.4));
}

.hero-logo-link.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.95);
}

@media (max-width: 720px) {
  /* Mobile adjustments - position logo slightly higher, different sizing */
  .hero-logo-link {
    top: 24%;
  }

  .hero-logo-img {
    height: clamp(120px, 32vw, 160px);
  }

  /* Mobile hero content - more padding and left-aligned text */
  .hero .hero-content {
    padding-top: 58vh;
    text-align: left;
  }

  .hero .hero-panel {
    text-align: left;
  }

  .hero .search {
    margin: 0;
  }

  .hero .hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-logo-img {
    height: clamp(100px, 28vw, 130px);
  }
}

/* Sections */
.section { padding: 56px 0; }
.section.alt { background: linear-gradient(135deg, rgba(7,23,39,0.04), rgba(212,163,115,0.1)), var(--sand-50); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.section-head h2 { font-size: clamp(1.5rem, 2.4vw, 1.8rem); margin: 0; color: var(--navy-900); display: inline-block; padding-bottom: 4px; border-bottom: 3px solid rgba(212, 163, 115, 0.65); }
#overview { padding: 56px 0; }
@media (min-width: 900px) { #overview { padding: 80px 0; } }
#overview .overview-left { display: flex; flex-direction: column; gap: 16px; }
#overview .tagline { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.15; margin: 0; color: var(--navy-900); }
#overview .tagline-intro { font-size: clamp(0.95rem, 1.8vw, 1.05rem); color: var(--ink-700); margin: 0; }
.section-sub { margin: 0; color: var(--navy-600); }

/* Stat cards */
.stats {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(232,240,248,0.82) 100%);
  border-radius: 14px;
  padding: 24px 18px 20px;
  border: 1px solid rgba(17,47,70,0.08);
  box-shadow: 0 10px 20px rgba(8, 24, 41, 0.08);
}
.stat::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), var(--navy-800));
}
.stat dl { margin: 0; display: grid; gap: 4px; }
.stat dt { font-size: clamp(1.2rem, 2vw, 1.4rem); font-weight: 700; color: var(--navy-800); }
.stat dd { margin: 0; color: var(--ink-700); font-size: 0.88rem; line-height: 1.45; }
.link { color: var(--brand-primary); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.link:hover { color: var(--brand-dark); }

.cards { display: grid; gap: 16px; grid-template-columns: repeat(1, minmax(0, 1fr)); justify-items: center; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cards { grid-template-columns: repeat(4, 1fr); justify-items: stretch; } }

.card { background: linear-gradient(155deg, rgba(255,255,255,0.96), rgba(222,231,240,0.75)); border: 1px solid rgba(17,47,70,0.12); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 32px rgba(8, 24, 41, 0.08); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 42px rgba(7, 23, 39, 0.16); }
.card-body { padding: 14px; }

/* Listing cards */
.media { aspect-ratio: 16/10; background: #dbe6f3; position: relative; overflow: hidden; }
.media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.08)); }
.media-1 {
  background-color: #dbe6f3;
  background-image: url('../img/sample-listing-imgs/House1/houseProjectImagesHouse1Image1.png');
  background-size: cover;
  background-position: center;
}
.media-2 {
  background-color: #e4d9cc;
  background-image: url('../img/sample-listing-imgs/House2/houseProjectImagesHouse2Image1.png');
  background-size: cover;
  background-position: center;
}
.media-3 {
  background-color: #cde6d5;
  background-image: url('../img/sample-listing-imgs/House3/houseProjectImagesHouse3Image1.png');
  background-size: cover;
  background-position: center;
}
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.price { font-size: 18px; color: var(--brand-dark); }
.pill { background: rgba(147, 33, 45, 0.12); color: #7f1d24; padding: 4px 10px; border-radius: 999px; font-size: 12px; border: 1px solid rgba(147, 33, 45, 0.26); }
.pill-neutral { background: rgba(17, 47, 70, 0.14); color: #102a41; border-color: rgba(17, 47, 70, 0.22); }
.address { margin: 8px 0 4px; font-size: 16px; }
.meta { color: var(--ink-500); margin: 0 0 10px; font-size: 14px; }

.btn-secondary { border: 0; background: linear-gradient(135deg, var(--gold-500) 0%, #b57439 100%); color: #102a41; padding: 10px 12px; border-radius: 10px; font-weight: 600; box-shadow: inset 0 -2px 0 rgba(7, 23, 39, 0.14); }
.btn-secondary:hover { background: linear-gradient(135deg, #c8965f 0%, #a1602f 100%); color: #071727; }

/* Features */
.features { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature { background: linear-gradient(160deg, rgba(255,255,255,0.96), rgba(212,163,115,0.08)); border: 1px solid rgba(17,47,70,0.12); border-radius: var(--radius); padding: 20px; box-shadow: 0 18px 32px rgba(8, 24, 41, 0.08); display: grid; grid-template-columns: 140px 1fr; gap: 18px; align-items: center; }
.feature .feature-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.feature-text h3 { margin: 0 0 4px; font-size: 15px; color: var(--navy-900); }
.feature-text p { margin: 0; color: var(--ink-700); font-size: 0.9rem; }

/* Agents */
.agents { max-width: 900px; margin: 0 auto; }
@media (min-width: 640px) { .agents { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .agents { grid-template-columns: repeat(4, 1fr); } }
.agents .agent { padding: 0; }
.agents .card-body { padding: 20px; }
.agents .avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, rgba(7,23,39,0.92), rgba(17,47,70,0.55)); color: var(--gold-400); display: inline-grid; place-items: center; font-weight: 700; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 10px 20px rgba(7, 23, 39, 0.25); margin-bottom: 12px; }
.agents .avatar-photo { object-fit: cover; object-position: top center; display: block; }
.agents h3 { margin: 0 0 4px; font-size: 1rem; }
.agents .meta { color: var(--brand-primary); font-size: 0.85rem; margin: 0 0 10px; }
.agents p:last-child { font-size: 0.9rem; color: var(--ink-700); margin: 0; }

/* About / Quotes */
.about-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.about-grid .cta-embedded {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  width: 100%;
  padding: 36px 34px 38px;
  border-radius: 22px;
  background:
    radial-gradient(140% 160% at 120% -20%, rgba(255,255,255,0.18) 0%, transparent 52%),
    linear-gradient(135deg, #071727 0%, #112f46 78%);
  box-shadow: 0 22px 40px rgba(8, 24, 41, 0.22);
  border: 1px solid rgba(255,255,255,0.10);
}
.about-grid .cta-embedded .cta-inner {
  display: grid;
  gap: 22px;
  min-height: 100%;
  width: 100%;
  margin: 0;
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  align-content: center;
  justify-items: flex-start;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
#overview .about-grid .stats { grid-template-columns: 1fr; gap: 12px; }
#overview .about-grid .cta-embedded { align-self: stretch; }
@media (min-width: 900px) { #overview .about-grid .stats { grid-template-columns: repeat(3, 1fr); } }

#about .about-grid { gap: 26px; align-items: start; }
@media (min-width: 900px) {
  #about .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    column-gap: 80px;
  }
}
#about {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,249,253,0.97) 55%, rgba(233,240,247,0.94) 100%);
}
#about h2,
#about h3 {
  color: var(--navy-900);
}
#about p,
#about li {
  color: var(--ink-700);
}
#listings {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,253,0.97) 60%, rgba(232,239,247,0.92) 100%);
}
#services {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,253,0.97) 60%, rgba(232,239,247,0.92) 100%);
}
.ticks { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.ticks li { position: relative; padding-left: 26px; }
.ticks li::before { content:"✓"; position: absolute; left: 0; top: 0; color: var(--white); background: linear-gradient(135deg, rgba(212,163,115,0.68), rgba(147,33,45,0.72)); border: 1px solid rgba(17,47,70,0.28); width: 18px; height: 18px; border-radius: 6px; display: inline-grid; place-items: center; font-size: 12px; }
.quotes { display: grid; gap: 12px; }
.quotes figure { margin: 0; background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(212,163,115,0.1)); border: 1px solid rgba(17,47,70,0.12); border-top: 3px solid rgba(147,33,45,0.55); border-radius: var(--radius); padding: 16px; box-shadow: 0 16px 28px rgba(8, 24, 41, 0.08); }
.quotes blockquote { margin: 0 0 8px; font-size: 16px; color: var(--ink-900); }
.quotes figcaption { color: var(--ink-500); font-size: 14px; }

/* CTA */
.cta { padding: 56px 0; }
.cta .cta-inner { background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary)); color: var(--white); border-radius: 18px; padding: 24px; display: grid; gap: 16px; align-items: center; border: 1px solid rgba(255,255,255,0.06); box-shadow: var(--shadow-md); }
@media (min-width: 860px) { .cta .cta-inner { grid-template-columns: 1fr auto; padding: 28px; } }
.cta-embedded { padding: 0; }
.cta-embedded h2 { margin: 0 0 8px; font-size: clamp(1.4rem, 2.4vw, 1.7rem); color: var(--white); }
.cta-embedded p { margin: 0; color: rgba(255,255,255,0.88); }
.cta-embedded .cta-actions {
  justify-self: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-embedded .cta-actions a { flex: 1 1 160px; text-align: center; }
@media (min-width: 860px) {
  .cta-embedded .cta-inner { grid-template-columns: 1fr; }
}
.cta-embedded .btn-primary {
  background: #d4a373;
  color: #13253a;
  border-color: transparent;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.cta-embedded .btn-primary:hover { background: #c8975f; }
.cta-embedded .btn-accent {
  background: var(--brand-primary);
  color: var(--white);
  border-color: transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.18);
}
.cta-embedded .btn-accent:hover { background: #7f1d24; }
.cta-embedded .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.45);
  background: transparent;
}
.cta-embedded .btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-light { display: inline-block; background: rgba(255,255,255,0.95); color: var(--navy-900); padding: 12px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; border: 1px solid rgba(255,255,255,0.6); }
.btn-light:hover { background: var(--white); }
.btn-primary { display: inline-block; background: var(--brand-primary); color: var(--white); padding: 12px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; border: 1px solid rgba(0,0,0,0.06); }
.btn-primary:hover { filter: brightness(0.97); background: #7f1d24; }
.btn-outline { display: inline-block; color: var(--white); padding: 12px 16px; border-radius: 12px; text-decoration: none; border: 1px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.cta-actions { display: grid; grid-auto-flow: row; gap: 10px; }
@media (min-width: 480px) { .cta-actions { grid-auto-flow: column; } }

/* Footer */
.site-footer { border-top: 0; background: var(--navy-gradient); margin-top: 24px; color: rgba(255,255,255,0.86); box-shadow: 0 -20px 40px rgba(7, 23, 39, 0.24); }
.footer-grid { display: grid; gap: 18px; grid-template-columns: 1fr; padding: 24px 0; align-items: start; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { margin: 0 0 8px; color: var(--white); }
.foot-note { color: rgba(255,255,255,0.65); margin: 8px 0 0; }
.site-footer a { color: var(--gold-500); }
.site-footer a:hover { color: var(--gold-400); }
.site-footer .brand-text { color: var(--white); }
.footer-social-item:last-child .footer-social-separator { display: none; }
.legal { text-align: center; padding: 12px; color: rgba(255,255,255,0.6); font-size: 14px; border-top: 1px solid rgba(255,255,255,0.12); }

/* Utilities */
button, .btn-secondary { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--brand-primary); outline-offset: 2px; }

/* ==============================================
   Inner Pages
   ============================================== */

/* Inner Page Hero */
.page-hero {
  position: relative;
  padding: clamp(100px, 16vh, 160px) 0 clamp(48px, 8vh, 80px);
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(212,163,115,0.25) 0%, transparent 60%),
    radial-gradient(600px 350px at 90% 20%, rgba(147,33,45,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #071727 0%, #112f46 60%, #1a3a56 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/home-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin: 0 0 12px;
  text-shadow: 0 4px 20px rgba(7, 23, 39, 0.5);
}
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 600px;
  margin-inline: auto;
}
.page-hero-logo {
  display: block;
  margin: 0 auto 24px;
}
.page-hero-logo img {
  display: block;
  height: clamp(80px, 12vw, 120px);
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(7, 23, 39, 0.3));
}

/* Page Content Sections */
.page-section {
  padding: clamp(48px, 8vh, 80px) 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,250,253,0.97) 100%);
}
.page-section--flush {
  padding: 0;
}
.page-section.alt {
  background: linear-gradient(135deg, rgba(7,23,39,0.04), rgba(212,163,115,0.08)), var(--sand-50);
}
.page-section h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--navy-900);
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 3px solid rgba(212, 163, 115, 0.65);
  display: inline-block;
}
.page-section p {
  color: var(--ink-700);
  line-height: 1.7;
}

/* Agent Profile Cards (larger format) */
.agent-profiles {
  display: grid;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .agent-profiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
.agent-profile {
  background: linear-gradient(155deg, rgba(255,255,255,0.98), rgba(232,240,248,0.85));
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(8, 24, 41, 0.1);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
}
.agent-profile .agent-photo {
  width: 120px;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
  object-position: top center;
  background: linear-gradient(135deg, rgba(7,23,39,0.92), rgba(17,47,70,0.55));
  box-shadow: 0 10px 20px rgba(7, 23, 39, 0.2);
}
.agent-profile .agent-avatar {
  width: 120px;
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7,23,39,0.92), rgba(17,47,70,0.55));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(7, 23, 39, 0.2);
}
.agent-profile h3 {
  font-size: 1.25rem;
  color: var(--navy-900);
  margin: 0 0 4px;
}
.agent-profile .agent-title {
  color: var(--brand-primary);
  font-size: 0.95rem;
  margin: 0 0 12px;
  font-weight: 600;
}
.agent-profile .agent-bio {
  color: var(--ink-700);
  font-size: 0.95rem;
  margin: 0 0 16px;
  line-height: 1.6;
}
.agent-profile .agent-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.agent-profile .agent-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  text-decoration: none;
  background: rgba(17,47,70,0.08);
  color: var(--navy-900);
  transition: background 0.15s ease;
}
.agent-profile .agent-contact a:hover {
  background: rgba(17,47,70,0.14);
}
@media (max-width: 500px) {
  .agent-profile {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .agent-profile .agent-photo,
  .agent-profile .agent-avatar {
    width: 140px;
    height: 186px;
  }
  .agent-profile .agent-contact {
    justify-content: center;
  }
}

/* Two Column Grid (service pages) */
.two-col-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 800px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
}

/* Team Spotlight (service pages) */
.team-spotlight {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
}
.team-spotlight-photo {
  width: 100px;
  height: 133px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 10px 20px rgba(7, 23, 39, 0.15);
}
.team-spotlight h2 {
  margin-top: 0;
}
@media (max-width: 500px) {
  .team-spotlight {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .team-spotlight-photo {
    width: 120px;
    height: 160px;
  }
}

/* Service Page Layout */
.service-intro {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .service-intro {
    grid-template-columns: 1fr 1fr;
  }
}
.service-intro img {
  width: 100%;
  max-width: 400px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(8, 24, 41, 0.15);
}
.service-intro h2 {
  border: 0;
  padding: 0;
  margin-bottom: 16px;
}

/* Process Steps */
.process-steps {
  display: grid;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 14px;
  padding: 24px 20px 20px;
  box-shadow: 0 10px 24px rgba(8, 24, 41, 0.08);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -14px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--brand-primary), var(--navy-800));
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.process-step h3 {
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.process-step p {
  font-size: 0.9rem;
  margin: 0;
}

/* Service Types Grid */
.service-types {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 600px) {
  .service-types {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service-types li {
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 8px 20px rgba(8, 24, 41, 0.06);
}
.service-types li strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.service-types li span {
  font-size: 0.9rem;
  color: var(--ink-700);
}

/* Rental Listings */
.rental-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 640px) {
  .rental-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .rental-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rental-card {
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(8, 24, 41, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.rental-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(7, 23, 39, 0.14);
}
.rental-card .rental-img {
  aspect-ratio: 16/10;
  background: #dbe6f3;
  object-fit: cover;
  width: 100%;
  display: block;
}
.rental-card .rental-body {
  padding: 18px;
}
.rental-card .rental-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
}
.rental-card .rental-address {
  font-size: 1rem;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.rental-card .rental-meta {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 0 0 14px;
}
.rental-card .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
}

/* Contact Page */
.contact-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form .form-group {
  display: grid;
  gap: 6px;
}
.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
}
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid rgba(17,47,70,0.18);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(147, 33, 45, 0.1);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form button[type="submit"] {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  border-radius: 12px;
  background: var(--brand-primary);
  color: var(--white);
  cursor: pointer;
  transition: background 0.15s ease;
}
.contact-form button[type="submit"]:hover {
  background: #7f1d24;
}

/* Login Page */
.login-error {
  margin: 0 0 16px;
  color: var(--brand-primary);
  font-weight: 600;
}
.login-error:empty {
  display: none;
}

.login-page .contact-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .login-page .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.98), rgba(232,240,248,0.85));
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 32px rgba(8, 24, 41, 0.1);
  height: fit-content;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0 0 16px;
}
.contact-info-card .info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-info-card .info-icon {
  width: 40px;
  height: 40px;
  background: rgba(17,47,70,0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card .info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--navy-800);
}
.contact-info-card .info-text {
  font-size: 0.95rem;
}
.contact-info-card .info-text strong {
  display: block;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.contact-info-card .info-text span,
.contact-info-card .info-text a {
  color: var(--ink-700);
}
.contact-info-card .info-text a:hover {
  color: var(--brand-primary);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: rgba(17,47,70,0.04);
  border-radius: 16px;
  border: 2px dashed rgba(17,47,70,0.15);
}
.empty-state p {
  color: var(--ink-500);
  margin: 0 0 16px;
}

/* ==============================================
   Enhanced Rentals Page
   ============================================== */

/* Rentals Intro */
.rentals-intro {
  margin-bottom: 32px;
}
.rentals-intro-text {
  max-width: 700px;
}
.rentals-intro-text h2 {
  margin-top: 0;
}

/* Rental Filters */
.rental-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(8, 24, 41, 0.06);
  align-items: flex-end;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 140px;
}
.filter-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}
.filter-select {
  padding: 12px 14px;
  border: 1px solid rgba(17,47,70,0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.filter-select:focus {
  outline: none;
  border-color: var(--brand-primary);
}
.filter-reset {
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(17,47,70,0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-reset:hover {
  background: rgba(17,47,70,0.06);
  border-color: rgba(17,47,70,0.3);
}

/* Results Info */
.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}
.results-info span {
  font-size: 0.95rem;
  color: var(--ink-700);
}
.view-toggle {
  display: flex;
  gap: 4px;
  background: rgba(17,47,70,0.06);
  padding: 4px;
  border-radius: 10px;
}
.view-btn {
  padding: 8px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink-500);
  transition: all 0.15s ease;
  display: grid;
  place-items: center;
}
.view-btn:hover {
  color: var(--navy-900);
}
.view-btn.active {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 2px 6px rgba(8, 24, 41, 0.1);
}

/* Rental Listings Grid */
.rental-listings {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .rental-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .rental-listings {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* List View */
.rental-listings.list-view {
  grid-template-columns: 1fr;
}
.rental-listings.list-view .rental-card-enhanced {
  display: grid;
  grid-template-columns: 280px 1fr;
}
.rental-listings.list-view .rental-card-gallery {
  height: 100%;
}
.rental-listings.list-view .rental-card-img {
  height: 100%;
  aspect-ratio: auto;
}
@media (max-width: 700px) {
  .rental-listings.list-view .rental-card-enhanced {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Rental Card */
.rental-card-enhanced {
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(8, 24, 41, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rental-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(7, 23, 39, 0.16);
}
.rental-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Card Gallery */
.rental-card-gallery {
  position: relative;
  aspect-ratio: 16/10;
  background: #dbe6f3;
  overflow: hidden;
}
.rental-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.rental-card-enhanced:hover .rental-card-img {
  transform: scale(1.03);
}
.rental-card-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f0f8, #d4e0ed);
  color: var(--ink-500);
  font-size: 0.9rem;
}
.photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(17,47,70,0.85);
  color: white;
}
.status-badge.available {
  background: rgba(34, 139, 34, 0.9);
}
.type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.95);
  color: var(--navy-900);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card Body */
.rental-card-body {
  padding: 20px;
}
.rental-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.rental-card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0;
}
.utilities-tag {
  font-size: 0.75rem;
  padding: 4px 8px;
  background: rgba(34, 139, 34, 0.12);
  color: #1a6b1a;
  border-radius: 6px;
  font-weight: 600;
}
.rental-card-title {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin: 0 0 4px;
}
.rental-card-address {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin: 0 0 12px;
}

/* Card Specs */
.rental-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17,47,70,0.08);
}
.rental-card-specs .spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--ink-700);
}
.rental-card-specs .spec svg {
  color: var(--ink-500);
}

/* Card Description */
.rental-card-description {
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Features */
.rental-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.feature-tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(17,47,70,0.06);
  color: var(--ink-700);
  border-radius: 6px;
}
.feature-tag.more {
  background: rgba(147, 33, 45, 0.1);
  color: var(--brand-primary);
  font-weight: 600;
}

/* Card CTA */
.rental-card-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--brand-primary);
  color: var(--white);
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.rental-card-enhanced:hover .rental-card-cta {
  background: #7f1d24;
}

/* Rental Info Grid */
.rental-info-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .rental-info-grid {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
  }
}
.rental-info-main h2 {
  margin-top: 0;
}
.rental-info-sidebar {
  display: grid;
  gap: 20px;
}
.info-card {
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(8, 24, 41, 0.08);
}
.info-card h3 {
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0 0 14px;
}
.info-card .ticks {
  margin: 0;
}

/* ==============================================
   Property Detail Page
   ============================================== */

/* Property Hero */
.property-hero {
  position: relative;
  padding: clamp(100px, 14vh, 140px) 0 clamp(32px, 6vh, 56px);
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(212,163,115,0.25) 0%, transparent 60%),
    radial-gradient(600px 350px at 90% 20%, rgba(147,33,45,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #071727 0%, #112f46 60%, #1a3a56 100%);
  overflow: hidden;
}
.property-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/home-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}
.property-hero .container {
  position: relative;
  z-index: 1;
}
.property-hero .page-hero-logo {
  margin-bottom: 16px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}
.breadcrumb a:hover {
  color: var(--gold-400);
}
.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

/* Property Hero Content */
.property-hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.property-type-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}
.property-type-badge.commercial {
  background: rgba(212,163,115,0.25);
  border-color: rgba(212,163,115,0.4);
}
.property-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin: 0 0 8px;
  text-shadow: 0 4px 20px rgba(7, 23, 39, 0.5);
}
.property-address {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin: 0 0 12px;
}
.property-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}
.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.status-indicator.available {
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
}
.availability-date {
  color: rgba(255,255,255,0.7);
}
.property-hero-price {
  text-align: right;
}
.price-amount {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(7, 23, 39, 0.4);
}
.utilities-note {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* Property Gallery */
.property-gallery-section {
  padding: 0;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}
.property-gallery {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(7, 23, 39, 0.2);
  border: 1px solid rgba(17,47,70,0.1);
}
.gallery-main {
  aspect-ratio: 16/9;
  background: #dbe6f3;
  overflow: hidden;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f0f8, #d4e0ed);
  color: var(--ink-500);
  font-size: 1.1rem;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  background: rgba(17,47,70,0.03);
}
.gallery-thumb {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.gallery-thumb:hover {
  transform: scale(1.02);
}
.gallery-thumb.active {
  border-color: var(--brand-primary);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.7rem;
  text-align: center;
}

/* Property Layout */
.property-layout {
  display: grid;
  gap: 40px;
}
@media (min-width: 900px) {
  .property-layout {
    grid-template-columns: 1fr 340px;
    gap: 48px;
  }
}

/* Property Main Content */
.property-main {
  display: grid;
  gap: 40px;
}

/* Quick Specs */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(17,47,70,0.04), rgba(212,163,115,0.06));
  border-radius: 16px;
  border: 1px solid rgba(17,47,70,0.08);
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(8, 24, 41, 0.06);
}
.spec-item svg {
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.spec-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-900);
}
.spec-label {
  font-size: 0.8rem;
  color: var(--ink-500);
}

/* Property Description */
.property-description h2,
.property-features h2,
.property-policies h2,
.property-location h2 {
  font-size: 1.3rem;
  color: var(--navy-900);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(212, 163, 115, 0.65);
  display: inline-block;
}
.description-text p {
  margin: 0 0 16px;
  line-height: 1.75;
}
.description-text p:last-child {
  margin-bottom: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-category h3 {
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.feature-list li svg {
  flex-shrink: 0;
  color: #22c55e;
}
.feature-list li.unavailable {
  color: var(--ink-500);
  text-decoration: line-through;
  opacity: 0.6;
}
.feature-list li.unavailable svg {
  color: var(--ink-500);
}

/* Policies Grid */
.policies-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 500px) {
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.policy-item {
  padding: 16px;
  background: rgba(17,47,70,0.03);
  border-radius: 12px;
  border: 1px solid rgba(17,47,70,0.06);
}
.policy-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.policy-item span {
  display: block;
  font-size: 1rem;
  color: var(--navy-900);
}
.policy-note {
  font-size: 0.85rem !important;
  color: var(--ink-500) !important;
  margin-top: 4px;
}

/* Location */
.location-content {
  display: grid;
  gap: 24px;
}
@media (min-width: 700px) {
  .location-content {
    grid-template-columns: 1fr 1fr;
  }
}
.location-details {
  display: grid;
  gap: 16px;
}
.location-item {
  padding: 14px 16px;
  background: rgba(17,47,70,0.03);
  border-radius: 10px;
}
.location-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.location-item span {
  font-size: 0.95rem;
  color: var(--navy-900);
}
.location-map {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(8, 24, 41, 0.1);
  min-height: 200px;
}
.location-map iframe {
  display: block;
}

/* Property Sidebar */
.property-sidebar {
  position: relative;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(17,47,70,0.1);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(8, 24, 41, 0.12);
}
.sidebar-card.sticky {
  position: sticky;
  top: 100px;
}
.sidebar-price {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(17,47,70,0.1);
}
.price-label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.price-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-900);
}
.utilities-included {
  display: block;
  font-size: 0.85rem;
  color: #22c55e;
  margin-top: 4px;
}
.sidebar-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(34, 139, 34, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--navy-900);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-500);
}
.status-dot.available {
  background: #22c55e;
}
.sidebar-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.btn-large {
  padding: 16px 20px;
  font-size: 1.05rem;
}
.btn-outline-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(17,47,70,0.2);
  border-radius: 12px;
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease;
}
.btn-outline-dark:hover {
  background: rgba(17,47,70,0.06);
  border-color: rgba(17,47,70,0.3);
}
.sidebar-info {
  text-align: center;
  padding: 16px;
  background: rgba(17,47,70,0.03);
  border-radius: 10px;
  margin-bottom: 20px;
}
.sidebar-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-700);
}
.sidebar-summary h4 {
  font-size: 0.95rem;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.sidebar-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.sidebar-summary li {
  font-size: 0.9rem;
  color: var(--ink-700);
  padding: 8px 0;
  border-bottom: 1px solid rgba(17,47,70,0.06);
}
.sidebar-summary li:last-child {
  border-bottom: none;
}
.sidebar-summary li strong {
  color: var(--navy-900);
}

/* CMS editing toolbar + highlights */
body.cms-editing {
  padding-top: var(--cms-toolbar-height, 0px);
}
body.cms-editing .site-header {
  top: var(--cms-toolbar-height, 0px);
}
.cms-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #eaf4ff;
  border-bottom: 1px solid #c6daf3;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}
.cms-toolbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.cms-toolbar__title {
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.cms-toolbar__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.cms-toolbar__btn {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--navy-900);
  color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 12px rgba(11, 30, 45, 0.15);
}
.cms-toolbar__btn:hover {
  transform: translateY(-1px);
}
.cms-toolbar__btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.cms-toolbar__btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(11, 30, 45, 0.2);
  box-shadow: none;
}
.cms-toolbar__btn--highlight {
  display: none;
}
.cms-toolbar__hint {
  color: var(--ink-700);
  font-size: 0.85rem;
}
.cms-toolbar__key {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(17, 47, 70, 0.08);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.cms-toolbar__btn--highlight[aria-pressed="true"] {
  background: #f2c94c;
  color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(242, 201, 76, 0.35);
  border-color: rgba(17, 47, 70, 0.4);
}
.cms-editing.cms-show-highlights [data-variable-content],
.cms-editing.cms-show-highlights [data-content-variable] {
  outline: 2px solid #f2c94c;
  outline-offset: 2px;
  border-radius: 4px;
  cursor: text;
}
.cms-editing.cms-show-highlights [data-cms-picture] {
  cursor: pointer;
}
.cms-editing [data-variable-content][contenteditable="true"],
.cms-editing [data-content-variable][contenteditable="true"] {
  display: inline-block;
  max-width: 100%;
  vertical-align: baseline;
}
.cms-editing [data-cms-url] {
  cursor: pointer;
}
.cms-editing [data-cms-picture] {
  cursor: pointer;
}
.cms-editing [data-variable-content]:focus,
.cms-editing [data-content-variable]:focus {
  outline: none;
  border-radius: 6px;
  box-shadow: 0 0 0 2px #111;
}
.cms-editing.cms-show-highlights [data-variable-content]:focus,
.cms-editing.cms-show-highlights [data-content-variable]:focus {
  background: #fff1b8;
}
@media (max-width: 700px) {
  body.cms-editing {
    padding-top: 0;
    padding-bottom: var(--cms-toolbar-height, 0px);
  }
  body.cms-editing .site-header {
    top: 0;
  }
  .cms-toolbar {
    top: auto;
    bottom: 0;
    border-bottom: none;
    border-top: 1px solid #c6daf3;
    box-shadow: 0 -6px 16px rgba(15, 23, 42, 0.12);
  }
  .cms-toolbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 8px 12px;
  }
  .cms-toolbar__actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }
  .cms-toolbar__btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    border-radius: 10px;
    box-shadow: none;
    width: 100%;
    justify-content: center;
  }
  .cms-toolbar__btn--highlight {
    display: inline-flex;
  }
  .cms-toolbar__title,
  .cms-toolbar__hint {
    display: none;
  }
}

.cms-toast {
  position: fixed;
  left: 50%;
  top: calc(var(--cms-toolbar-height, 0px) + 16px);
  transform: translateX(-50%) translateY(-12px);
  padding: 10px 18px;
  border-radius: 12px;
  background: #0f766e;
  color: #f8fafc;
  border: 1px solid rgba(15, 118, 110, 0.45);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
  z-index: 1001;
}
.cms-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 700px) {
  .cms-toast {
    top: 16px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: translateY(-12px);
    text-align: center;
  }
  .cms-toast.is-visible {
    transform: translateY(0);
  }
}

.cms-url-editor,
.cms-picture-editor {
  position: fixed;
  z-index: 1002;
  min-width: 240px;
  max-width: min(92vw, 360px);
  padding: 12px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(17, 47, 70, 0.2);
  box-shadow: 0 18px 32px rgba(17, 47, 70, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.cms-url-editor.is-visible,
.cms-picture-editor.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cms-url-editor__label,
.cms-picture-editor__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--navy-900);
}
.cms-picture-editor__label {
  margin-bottom: 10px;
}
.cms-url-editor__schemes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.cms-url-editor__scheme-btn {
  border: 1px solid rgba(11, 30, 45, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: inherit;
  background: #ffffff;
  color: var(--navy-900);
  cursor: pointer;
}
.cms-url-editor__scheme-btn.is-active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.cms-url-editor__input,
.cms-picture-editor__input,
.cms-picture-editor__alt {
  border: 1px solid rgba(17, 47, 70, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--navy-900);
  background: #ffffff;
}
.cms-url-editor__input:focus,
.cms-picture-editor__input:focus,
.cms-picture-editor__alt:focus {
  outline: none;
  border-color: rgba(17, 47, 70, 0.6);
  box-shadow: 0 0 0 2px rgba(17, 47, 70, 0.15);
}
.cms-url-editor__actions,
.cms-picture-editor__actions {
  display: flex;
  gap: 8px;
}
.cms-url-editor__actions {
  margin-top: 10px;
}
.cms-url-editor__btn,
.cms-picture-editor__btn {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-family: inherit;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
}
.cms-url-editor__btn--ghost,
.cms-picture-editor__btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(11, 30, 45, 0.2);
}
.cms-picture-editor__note {
  font-size: 0.75rem;
  color: var(--ink-700);
  margin: -2px 0 10px;
}

.cms-link-pill {
  position: fixed;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  gap: 6px;
}
.cms-link-pill.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cms-link-pill__btn {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: inherit;
  background: #f2c94c;
  color: var(--navy-900);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(17, 47, 70, 0.2);
}
.cms-link-pill__btn--ghost {
  background: #ffffff;
  color: var(--navy-900);
  border: 1px solid rgba(11, 30, 45, 0.2);
  box-shadow: 0 6px 16px rgba(17, 47, 70, 0.12);
}
.cms-list-controls {
  position: fixed;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 45, 0.12);
  box-shadow: 0 8px 18px rgba(17, 47, 70, 0.18);
}
.cms-list-controls.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cms-list-controls__btn {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: inherit;
  background: var(--navy-900);
  color: var(--white);
  cursor: pointer;
}
.cms-list-controls__btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border: 1px solid rgba(11, 30, 45, 0.2);
}
.cms-list-controls__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
