:root {
  --blue: #0000FF;
  --blue-deep: #0000B3;
  --blue-tint: #EEEFFF;
  --blue-tint-2: #DCDEFF;
  --white: #FFFFFF;
  --ink: #05051A;
  --ink-soft: #4B4B6B;
  --line: rgba(5, 5, 26, 0.1);
  --radius: 14px;
  --font-display: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body.home-redesign {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 0;
}

body.home-redesign,
body.home-redesign h1,
body.home-redesign h2,
body.home-redesign h3,
body.home-redesign h4,
body.home-redesign h5,
body.home-redesign h6,
body.home-redesign p,
body.home-redesign a,
body.home-redesign button,
body.home-redesign input,
body.home-redesign select,
body.home-redesign textarea,
body.home-redesign label {
  font-family: var(--font-body);
}

body.home-redesign * { box-sizing: border-box; }
body.home-redesign img { max-width: 100%; display: block; }
body.home-redesign a { color: inherit; text-decoration: none; }

body.home-redesign .mono { font-family: var(--font-body); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.85em; font-weight: 600; }
body.home-redesign .display { font-family: var(--font-body); }

/* Classic header — Bootstrap navbar must not inherit ph-header dropdown rules */
body.home-redesign header .navbar-nav > .nav-item.dropdown {
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  background: transparent;
  box-shadow: none;
  min-width: 0;
  overflow: visible;
  border-radius: 0;
}
body.home-redesign header .navbar-nav .nav-link {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0;
  border-bottom: none;
  font-weight: 500;
  color: inherit;
  background: transparent;
}
body.home-redesign header .navbar-nav .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border-bottom: none;
  font-weight: 400;
}
body.home-redesign header .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
body.home-redesign .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

body.home-redesign .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
body.home-redesign .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
}

/* HEADER */
body.home-redesign header.ph-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 255, 0.94);
  backdrop-filter: blur(10px);
  transition: padding .3s ease, background .3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
body.home-redesign .header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
body.home-redesign header.ph-header.scrolled .header-inner { padding: 9px 20px; }
body.home-redesign .logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  justify-self: start;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 12px;
  border-radius: 8px;
}
body.home-redesign .logo-mark img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
}
body.home-redesign .header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  justify-self: end;
}
body.home-redesign .icon-btn {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
body.home-redesign .icon-btn:hover { background: rgba(255, 255, 255, 0.14); }
body.home-redesign .caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s ease;
}
body.home-redesign .icon-btn[aria-expanded="true"] .caret { transform: rotate(225deg); margin-top: 3px; }
body.home-redesign header.ph-header .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 14px 30px rgba(0, 0, 20, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s ease;
  z-index: 200;
}
body.home-redesign header.ph-header .icon-btn[aria-expanded="true"] .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
body.home-redesign header.ph-header .dropdown a,
body.home-redesign header.ph-header .dropdown button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
body.home-redesign header.ph-header .dropdown a:last-child,
body.home-redesign header.ph-header .dropdown button:last-child { border-bottom: none; }
body.home-redesign header.ph-header .dropdown a:hover,
body.home-redesign header.ph-header .dropdown button:hover { background: var(--blue-tint); }
body.home-redesign header.ph-header .dropdown a.active,
body.home-redesign header.ph-header .dropdown button.active { color: var(--blue); }
body.home-redesign .hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 111;
  flex-shrink: 0;
}
body.home-redesign .hamburger span { width: 19px; height: 1.5px; background: var(--white); display: block; transition: .25s ease; }
body.home-redesign .hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.home-redesign .hamburger.open span:nth-child(2) { opacity: 0; }
body.home-redesign .hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
body.home-redesign nav.desktop-nav { display: none; }
body.home-redesign .mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  max-width: 320px;
  background: var(--blue-deep);
  z-index: 110;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.65, 0, .35, 1);
  padding: 88px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
body.home-redesign .mobile-menu.open { transform: translateX(0); }
body.home-redesign .mobile-menu a {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--white);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
body.home-redesign .menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 60, 0.5);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
body.home-redesign .menu-scrim.open { opacity: 1; visibility: visible; }

/* HERO — eski stil.css / ortaklarstil.css boyutlari */
body.home-redesign .ph-hero-stack {
  position: relative;
  background: #fff;
  overflow: visible;
  padding-top: 0;
  margin-top: 0;
}
body.home-redesign .hero {
  position: relative;
  overflow: hidden;
  background: #fff;
  height: auto;
  min-height: 0;
  margin: 0;
}
body.home-redesign .hero .headline-slider {
  width: 100%;
}
body.home-redesign .hero .heroSwiper {
  width: 100% !important;
  height: auto !important;
  overflow: hidden;
}
body.home-redesign .hero .swiper-wrapper {
  height: auto !important;
  min-height: 0 !important;
  align-items: stretch;
}
body.home-redesign .hero .swiper-slide {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  flex-shrink: 0;
}
body.home-redesign .hero .item {
  height: auto;
  position: relative;
  width: 100%;
}
body.home-redesign .hero .item > a {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 66.66%;
  overflow: hidden;
  width: 100%;
}
body.home-redesign .hero .item > span.img,
body.home-redesign .hero .item > a > span.img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
body.home-redesign .hero .item > span.img {
  position: relative;
  height: 0;
  padding-bottom: 66.66%;
  overflow: hidden;
  display: block;
  width: 100%;
}
body.home-redesign .hero .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.home-redesign .hero-scrim {
  display: none;
}
body.home-redesign .hero .swiper-pagination { bottom: 26px !important; right: 20px; left: auto !important; width: auto !important; z-index: 3; }
body.home-redesign .hero .swiper-pagination-bullet { background: var(--white); opacity: .5; }
body.home-redesign .hero .swiper-pagination-bullet-active { opacity: 1; background: var(--white); width: 18px; border-radius: 4px; }

/* FILTER */
body.home-redesign .filter-wrap {
  position: relative;
  z-index: 5;
  padding: 0 16px 20px;
  margin-top: 0;
  background: #fff;
}
body.home-redesign .filter-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 60, 0.15);
  padding: 16px;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: visible;
  border: 1px solid var(--blue-tint-2);
  max-width: 1180px;
  margin: -28px auto 0;
  width: 100%;
  box-sizing: border-box;
}
body.home-redesign .filter-field {
  min-width: 0;
  border-right: none;
  padding-right: 0;
}
body.home-redesign .filter-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 5px;
  font-weight: 600;
}
body.home-redesign .filter-field select,
body.home-redesign .filter-field input {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
body.home-redesign .filter-field input::placeholder { color: var(--ink-soft); font-weight: 600; opacity: 1; }
body.home-redesign .filter-search-btn {
  grid-column: 1 / -1;
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 100%;
  height: 48px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}
body.home-redesign .filter-search-btn .filter-search-label {
  color: var(--white);
}
body.home-redesign .filter-search-btn:hover { background: var(--blue-deep); }

/* SKYLINE */
body.home-redesign .skyline { width: 100%; display: block; margin-top: 20px; }
body.home-redesign .skyline path { transition: stroke-dashoffset 1.6s ease; }

/* SECTIONS */
body.home-redesign .section { padding: 64px 0; }
body.home-redesign .section-head { padding: 0 20px; margin-bottom: 28px; }
body.home-redesign .section-head h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28px, 6vw, 42px);
  margin: 10px 0 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
body.home-redesign .section-head p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; max-width: 480px; line-height: 1.5; }

/* LISTINGS */
body.home-redesign .ph-listings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 20px;
}
body.home-redesign .ph-listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--blue-tint-2);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 60, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home-redesign .ph-listing-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0, 0, 60, 0.14); }
body.home-redesign .ph-listing-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--blue-tint); }
body.home-redesign .ph-listing-img img { width: 100%; height: 100%; object-fit: cover; }
body.home-redesign .ph-listing-code {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
}
body.home-redesign .ph-listing-body { padding: 18px 20px 20px; }
body.home-redesign .ph-listing-body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.25;
}
body.home-redesign .ph-listing-body h3 a:hover { color: var(--blue); }
body.home-redesign .ph-listing-summary { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.45; }
body.home-redesign .ph-listing-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }
body.home-redesign .ph-listing-meta strong { color: var(--ink); font-weight: 600; }
body.home-redesign .ph-listing-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
body.home-redesign .ph-listing-price { font-family: var(--font-body); font-size: 22px; font-weight: 700; color: var(--blue); margin: 0; }
body.home-redesign .ph-listing-actions { display: flex; gap: 8px; flex-wrap: wrap; }
body.home-redesign .ph-listing-actions a {
  font-family: var(--font-body);
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 600;
}
body.home-redesign .ph-listing-actions a.ph-wa { background: #25D366; color: var(--white); border-color: #25D366; }
body.home-redesign .ph-pagination { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; padding: 28px 20px 0; }
body.home-redesign .ph-pagination a {
  font-family: var(--font-body);
  font-size: 13px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-weight: 600;
}
body.home-redesign .ph-pagination a.active,
body.home-redesign .ph-pagination a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
body.home-redesign .ph-listings-grid.home-featured-loading { opacity: .5; pointer-events: none; }

/* LOCATIONS */
body.home-redesign .loc-swiper { padding: 0 20px; overflow: visible; }
body.home-redesign .loc-swiper .swiper-wrapper { padding-bottom: 6px; }
body.home-redesign .loc-card {
  width: 250px;
  height: 330px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  background: var(--blue-deep);
}
body.home-redesign .loc-card.tall { height: 400px; width: 210px; }
body.home-redesign .loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
body.home-redesign .loc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 255, 0.08) 0%, rgba(0, 0, 40, 0.15) 45%, rgba(0, 0, 50, 0.88) 100%);
}
body.home-redesign .loc-card .loc-tag { position: relative; z-index: 2; font-family: var(--font-body); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--white); opacity: .8; margin-bottom: auto; }
body.home-redesign .loc-card .loc-name { position: relative; z-index: 2; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 26px; margin: 0 0 6px; line-height: 1.05; }
body.home-redesign .loc-card .loc-cta { position: relative; z-index: 2; font-family: var(--font-body); font-size: 11px; display: flex; align-items: center; gap: 6px; color: var(--white); opacity: .95; }
body.home-redesign .loc-card .loc-cta svg { width: 12px; height: 12px; }

/* COMPANY */
body.home-redesign .ph-company-text { padding: 0 20px; max-width: 820px; margin: 0 auto; text-align: center; }
body.home-redesign .ph-company-text p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
body.home-redesign .ph-read-more { text-align: center; margin-top: 16px; }
body.home-redesign .ph-read-more button {
  font-family: var(--font-body);
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--blue);
  background: none;
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
}
body.home-redesign .property-desc .content { max-height: 120px; overflow: hidden; transition: max-height .35s ease; }
body.home-redesign .property-desc .content.active { max-height: 2000px; }
body.home-redesign .property-desc .read-more .close { display: none; }
body.home-redesign .property-desc .read-more.active .open { display: none; }
body.home-redesign .property-desc .read-more.active .close { display: inline-block; }

/* TEAM */
body.home-redesign .ph-team { text-align: center; padding: 0 20px; }
body.home-redesign .ph-team h3 { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 28px; margin: 0 0 12px; }
body.home-redesign .ph-team p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 20px; line-height: 1.55; }
body.home-redesign .ph-team a.ph-team-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* TRUST / REVIEWS */
body.home-redesign .trust { background: var(--blue); color: var(--white); }
body.home-redesign .trust .section-head h2 { color: var(--white); }
body.home-redesign .trust .section-head p { color: rgba(255, 255, 255, 0.75); }
body.home-redesign .trust .eyebrow { color: var(--white); }
body.home-redesign .trust .eyebrow::before { background: var(--white); }
body.home-redesign .review-wrap {
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin: 0 20px;
  min-height: 180px;
  position: relative;
  color: var(--ink);
}
body.home-redesign .home-reviews-section .sk_branding,
body.home-redesign .home-reviews-section .tutorial_link,
body.home-redesign .home-reviews-section a[href*="sociablekit.com"] { display: none !important; }
body.home-redesign .ph-comment-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue);
  padding: 11px 20px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}
body.home-redesign .ph-reviews-load-wrap {
  margin-top: 18px;
}
body.home-redesign .ph-reviews-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
body.home-redesign .ph-reviews-load-more:hover {
  background: var(--blue-deep);
}

/* CTA */
body.home-redesign .ph-listings,
body.home-redesign .ph-listings-grid,
body.home-redesign .ph-listing-card,
body.home-redesign .ph-listing-card * {
  font-family: var(--font-body) !important;
}

body.home-redesign .home-reviews-section .sk-load-more-btn,
body.home-redesign .home-reviews-section .js-load-more-btn,
body.home-redesign .home-reviews-section .sk-button.sk-load-more-btn,
body.home-redesign .home-reviews-section button.sk-load-more-btn {
  display: none !important;
  visibility: hidden !important;
}

body.home-redesign .ph-cta-wrap {
  margin-top: 56px;
  margin-bottom: 24px;
}

body.home-redesign .cta-strip {
  margin: 0 20px;
  padding: 38px 26px;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.home-redesign .cta-strip h3 { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 26px; margin: 0; line-height: 1.15; }
body.home-redesign .cta-strip p { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, 0.85); }
body.home-redesign .cta-btn {
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  font-size: 13.5px;
  padding: 13px 20px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-family: var(--font-body);
  letter-spacing: .03em;
}

/* FOOTER */
body.home-redesign footer.ph-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0 24px;
  margin-top: 64px;
}
body.home-redesign .footer-top { display: flex; flex-direction: column; gap: 28px; padding: 0 20px; }
body.home-redesign .footer-brand img {
  height: 40px;
  width: auto;
  max-width: 240px;
  filter: none;
  margin-bottom: 10px;
  object-fit: contain;
}
body.home-redesign .footer-brand p { font-size: 13px; line-height: 1.6; max-width: 320px; color: rgba(255, 255, 255, 0.6); }
body.home-redesign .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
body.home-redesign .footer-col h4 { font-family: var(--font-body); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin: 0 0 14px; }
body.home-redesign .footer-col a { display: block; font-size: 13.5px; padding: 6px 0; color: rgba(255, 255, 255, 0.8); }
body.home-redesign .footer-col a:hover { color: var(--white); }
body.home-redesign .footer-social { display: flex; gap: 12px; margin-top: 8px; }
body.home-redesign .footer-social a { font-size: 18px; padding: 0; }
body.home-redesign .footer-license { font-size: 12px; color: rgba(255, 255, 255, 0.5); margin-top: 12px; line-height: 1.5; }
body.home-redesign .footer-license a { color: rgba(255, 255, 255, 0.6); }
body.home-redesign .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin: 32px 20px 0;
  padding-top: 20px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  body.home-redesign .ph-listings-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }

  body.home-redesign .hero .item { height: 480px; }
  body.home-redesign .hero .item > a { height: 100%; padding-bottom: 0; }
  body.home-redesign .hero .item > span.img,
  body.home-redesign .hero .item > a > span.img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
  body.home-redesign .hero .item > span.img {
    height: 100%;
    padding-bottom: 0;
    position: absolute;
  }
  body.home-redesign .hero .item img { height: 100% !important; }

  body.home-redesign .filter-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -32px;
    padding: 20px;
  }
  body.home-redesign .filter-search-btn {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 48px;
  }
}

@media (min-width: 992px) {
  body.home-redesign .hero .item { height: 600px; }
  body.home-redesign .filter-card {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  body.home-redesign .filter-card {
    grid-template-columns: repeat(6, minmax(0, 1fr)) 52px;
    align-items: end;
    gap: 10px 14px;
  }
  body.home-redesign .filter-search-btn {
    grid-column: auto;
    grid-row: 1;
    width: 52px;
    height: 44px;
    padding: 0;
  }
  body.home-redesign .filter-search-btn .filter-search-label {
    display: none;
  }
}

@media (max-width: 899px) {
  body.home-redesign .header-inner { padding: 8px 12px; gap: 8px; }
  body.home-redesign .logo-mark { padding: 4px 8px; }
  body.home-redesign .logo-mark img { height: 40px; max-width: 180px; }
  body.home-redesign .icon-btn { padding: 6px 7px; font-size: 11px; }
  body.home-redesign header.ph-header .dropdown { max-height: 65vh; overflow-y: auto; right: 0; left: auto; min-width: 140px; }
  body.home-redesign nav.desktop-nav { display: none !important; }
  body.home-redesign .hamburger { display: flex !important; }
  body.home-redesign .filter-card { margin-top: -20px; }
}

@media (min-width: 900px) {
  body.home-redesign .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 32px;
  }
  body.home-redesign header.ph-header.scrolled .header-inner { padding: 12px 32px; }
  body.home-redesign .logo-mark { flex-shrink: 0; }
  body.home-redesign .logo-mark img { height: 52px; max-width: 260px; }
  body.home-redesign nav.desktop-nav {
    display: flex !important;
    gap: 20px;
    flex: 1;
    justify-content: center;
    margin: 0 12px;
    min-width: 0;
  }
  body.home-redesign nav.desktop-nav a { font-size: 13px; font-weight: 600; color: var(--white); opacity: .9; white-space: nowrap; }
  body.home-redesign nav.desktop-nav a:hover { opacity: 1; }
  body.home-redesign .header-right { flex-shrink: 0; }
  body.home-redesign .hamburger { display: none !important; }
  body.home-redesign .container { padding: 0 32px; }
  body.home-redesign .filter-wrap { padding: 0 32px 24px; }
  body.home-redesign .filter-card { padding: 20px 26px; }
  body.home-redesign .section { padding: 96px 0; }
  body.home-redesign .section-head { padding: 0 32px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
  body.home-redesign .loc-swiper { padding: 0 32px; }
  body.home-redesign .loc-card { width: 280px; height: 380px; }
  body.home-redesign .loc-card.tall { width: 230px; height: 460px; }
  body.home-redesign .review-wrap { margin: 0 32px; padding: 28px 32px; }
  body.home-redesign .cta-strip { margin: 0 32px; flex-direction: row; align-items: center; justify-content: space-between; padding: 48px 56px; }
  body.home-redesign .ph-cta-wrap { margin-top: 72px; }
  body.home-redesign .footer-top { flex-direction: row; justify-content: space-between; padding: 0 32px; }
  body.home-redesign .footer-cols { grid-template-columns: 1fr 1fr 1fr; min-width: 420px; }
  body.home-redesign .footer-bottom { flex-direction: row; justify-content: space-between; margin: 40px 32px 0; }
  body.home-redesign .ph-listings-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  body.home-redesign .skyline path { transition: none; }
}
