/*
Theme Name: Urban Biz Vibe
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: clip
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #f7af3c12;
  color: #1E1E2E;
  line-height: 1.65
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: 'DM Sans', sans-serif
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --font-display: "Figtree", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --ink: #7a1d0c;
  --muted: #667085;
  --soft: #f5f7fb;
  --paper: #ffffff;
  --line: #e6e9f2;
  --violet: #7a1d0c;
  --violet-2: #f7af3c;
  --cyan: #00a7a7;
  --coral: #ff7a45;
  --navy: #13294b;
  --shadow: 0 18px 50px rgba(24, 31, 56, 0.1);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, rgba(96, 59, 243, 0.055), transparent 430px),
    #f7af3c12;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 233, 242, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 38px rgba(16, 20, 35, 0.07);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow: 0 12px 28px rgba(96, 59, 243, 0.24);
}

.brand-text {
  font-size: 0.96rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #3d465b;
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav a {
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #7a1d0c !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  box-shadow: 0 14px 30px #7a1d0c4d;
}

.btn-search {
  min-height: 58px;
  color: #fff;
  background: var(--ink);
}

.btn-soft {
  color: var(--violet);
  background: #f7af3c29;
  margin-top: 20px;
}

.btn-line {
  min-height: 38px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 72px;
  background-image: url('assets/images/bg/hero6-bg.png') !important;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: min(56vw, 720px) auto;
}

.section-accent::before,
.section-accent::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.section-accent::before {
  width: 460px;
  height: 460px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, #7a1d0c2e, transparent 68%);
}

.section-accent::after {
  width: 380px;
  height: 380px;
  left: -150px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.16), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy p,
.section-header p,
.featured-intro p,
.seo-panel p,
.cta-action p,
.footer-brand p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-copy>p {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-search-panel {
  max-width: 760px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-form,
.search-box {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr auto;
  gap: 10px;
}

.field-group {
  display: grid;
  gap: 6px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.field-group span {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field-group input,
.field-group select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(16, 20, 35, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(19, 41, 75, 0.92), rgba(16, 20, 35, 0.96)),
    var(--ink);
  color: #fff;
  box-shadow: 0 22px 58px rgba(16, 20, 35, 0.22);
  animation: softFloat 7s ease-in-out infinite;
}

.console-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.console-topline strong {
  color: #fff;
}

.radar-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.radar-map {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 26% 25%, rgba(0, 167, 167, 0.55), transparent 22%),
    radial-gradient(circle at 75% 68%, rgba(255, 122, 69, 0.42), transparent 24%),
    rgba(255, 255, 255, 0.06);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 10px rgba(255, 122, 69, 0.16);
  animation: pinPulse 2.8s ease-in-out infinite;
}

.pin-one {
  top: 24%;
  left: 28%;
}

.pin-two {
  top: 55%;
  left: 68%;
  background: var(--cyan);
  box-shadow: 0 0 0 10px rgba(0, 167, 167, 0.18);
}

.pin-three {
  top: 72%;
  left: 38%;
  background: var(--violet);
  box-shadow: 0 0 0 10px rgba(96, 59, 243, 0.2);
}

.map-route {
  position: absolute;
  inset: 26% 23% 22% 31%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 90px 0 0;
  transform: rotate(8deg);
}

.radar-card p,
.quick-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.hero-micro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-tile,
.quick-card {
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.metric-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.metric-tile strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.metric-tile.accent {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
}

.metric-tile.accent span {
  color: rgba(255, 255, 255, 0.78);
}

.quick-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.quick-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
}

.category-section,
.featured-section,
.proof-section,
.latest-section,
.seo-section,
.business-cta {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 34px;
}

.section-header.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.5fr);
  gap: 40px;
  align-items: end;
}

.category-board {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  grid-auto-rows: minmax(148px, auto);
  gap: 16px;
}

.category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 148px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 20, 35, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 110px;
  top: -32px;
  right: -24px;
  border-radius: 32px;
  background: color-mix(in srgb, #f7af3c 18%, white);
  transform: rotate(16deg);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(16, 20, 35, 0.11);
}

.category-large {
  grid-column: span 1;
  grid-row: span 2;
}

.category-wide {
  grid-column: span 2;
}

.category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: auto;
  color: #fff;
  border-radius: 12px;
  background: var(--violet-2);
  font-family: var(--font-display);
  font-weight: 900;
}

.category-name {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 900;
}

.category-count {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.featured-section {
  background: #fff;
}

.featured-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.featured-intro {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: 14px;
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--violet);
  font-family: var(--font-display);
  font-weight: 900;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* 
.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(16, 20, 35, 0.075);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
} */

.listing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f5f1f1 !important;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(16, 20, 35, 0.12);
}

.listing-card-featured img {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.listing-body {
  padding: 16px;
}

.listing-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.listing-meta span {
  color: var(--violet);
}

.listing-meta strong {
  color: var(--ink);
}

.listing-card h3 {
  font-size: 1.04rem;
}

.listing-card address {
  margin-bottom: 12px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.listing-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.proof-section {
  color: #fff;
  background:
   url("assets/images/bg/work-prosess-bg.png") center/cover no-repeat,    linear-gradient(135deg, var(--violet), var(--violet-2)),    var(--navy) !important;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 46px;
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 104px;
}

.proof-copy h2 {
  max-width: 420px;
  color: #fff;
}

.proof-copy .eyebrow {
  color: #fff;
}

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

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.105);
  backdrop-filter: blur(14px);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  color: var(--violet);
  font-family: var(--font-display);
  font-weight: 900;
}

.process-step h3 {
  align-self: center;
  margin-bottom: 0;
  font-size: 0.98rem;
}

.process-step p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.58;
}

.latest-section {
  background: linear-gradient(180deg, #fbfcff, #f2f6ff);
}

.latest-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.listing-card-compact {
  /*display: grid;*/
  grid-template-columns: 128px 1fr;
  align-items: stretch;
  min-height: 202px;
  box-shadow: none;
}

.listing-card-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card-compact .listing-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.listing-card-compact .btn {
  align-self: flex-start;
  margin-top: auto;
}

.seo-section {
  background: #fff;
}

.seo-panel {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 46px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:linear-gradient(135deg, #7a1d0c1f, transparent 36%), linear-gradient(315deg, #f7af3c29, transparent 40%), #fff;
}

.seo-kicker {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

.business-cta {
  padding-top: 26px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--violet),  var(--violet-2)),
    var(--ink);
  box-shadow: 0 28px 80px rgba(16, 20, 35, 0.18);
}

.cta-grid .eyebrow {
  color: #fff;
}

.cta-action p {
  color: #fff;
}

.site-footer {
  padding: 52px 0 32px;
  background: #0d1220;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 0.9fr;
  gap: 28px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-menu,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-menu h3,
.footer-contact h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pinPulse {

  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(255, 122, 69, 0.12);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(255, 122, 69, 0.02);
  }
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero-grid,
  .featured-layout,
  .proof-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    position: static;
  }

  .featured-intro {
    position: static;
  }

  .featured-grid,
  .latest-feed,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-shell {
    min-height: 72px;
  }

  .brand-logo {
    width: 160px;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 12px auto 12px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 12px;
    border-radius: 12px;
    background: var(--soft);
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 24px, 720px);
  }

  .header-shell {
    min-height: 72px;
  }

  .brand-logo {
    width: 160px;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 12px auto 12px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 12px;
    border-radius: 12px;
    background: var(--soft);
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .search-form,
  .section-header.split,
  .seo-panel,
  .search-box {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 54px 0 62px;
  }

  h1 {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .category-board,
  .featured-grid,
  .latest-feed,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-large,
  .category-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .listing-card-compact {
    grid-template-columns: 112px 1fr;
  }

  .seo-panel,
  .cta-grid {
    padding: 26px;
  }
}

@media (max-width: 560px) {
  .hero-console {
    padding: 12px;
  }

  .hero-micro-grid,
  .process-step {
    grid-template-columns: 1fr;
  }

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

  .process-step p {
    grid-column: 1;
  }

  .radar-map {
    min-height: 210px;
  }

  .listing-card-compact {
    grid-template-columns: 1fr;
  }

  .listing-card-compact img {
    height: 190px;
  }

  .category-section,
  .featured-section,
  .proof-section,
  .latest-section,
  .seo-section,
  .business-cta {
    padding: 58px 0;
  }
}

/* eSoft reference refresh */
body {
  background: #f7af3c12;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
}

.header-shell {
  min-height: 78px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.brand-text,
.primary-nav,
.btn {
  font-size: 0.86rem;
}

.btn-primary {
  border-radius: 7px;
  /*background: linear-gradient(95deg, #7a1d0c 0%, #8f00ff 100%);*/
}

.hero-section {
  padding: 78px 0 72px;
  background:
    url("../images/bg/hero6-bg.png") right top / min(58vw, 780px) auto no-repeat,
    linear-gradient(180deg, #f7af3c12 0%, #ffffff 100%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 56px;
}

.eyebrow {
  gap: 9px;
  /*color: #7a1d0c;*/
  font-size: 0.74rem;
  letter-spacing: 0;
}

.eyebrow::before {
  display: none;
}

.eyebrow img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-eyebrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(77%) sepia(83%) saturate(1026%) hue-rotate(329deg) brightness(101%) contrast(94%);
}

h1 {
  max-width: 560px;
 font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

h2 {
 font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  line-height: 1.08;
}

.hero-copy>p {
  max-width: 540px;
}

.hero-search-panel {
  max-width: 650px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(16, 20, 35, 0.08);
}

.search-form,
.search-box {
  grid-template-columns: 1fr 0.72fr auto;
}

.field-group {
  border-radius: 7px;
}

.btn-search {
  min-height: 54px;
  border-radius: 7px;
  /*background: #111733;*/
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-art-main {
  position: absolute;
  right: 0;
  top: 8px;
  bottom: auto;
  width: 100%;
}

.hero-art-main img,
.hero-art-main video,
.hero-art-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(58, 43, 116, 0.13));
}

.hero-art-main video {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  background: #f7af3c12;
}

.hero-art-card {
  position: absolute;
  z-index: 2;
}

.hero-art-card-one {
  width: 38%;
  left: 0;
  top: 68px;
}

.hero-art-card-two {
  width: 32%;
  right: 22px;
  top: 18px;
}

.hero-mini-panel {
  position: absolute;
  left: 52px;
  bottom: 52px;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 150px;
  padding: 15px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 20, 35, 0.13);
}

.hero-mini-panel strong {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.hero-mini-panel span {
  color: #667085;
  font-size: 0.8rem;
  font-weight: 700;
}

.animate-float {
  animation: softFloat 5.8s ease-in-out infinite;
}

.animate-float-slow {
  animation: softFloat 7.4s ease-in-out infinite reverse;
}

.trust-strip {
  padding: 56px 0 44px;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  padding: 24px;
  border-radius: 12px;
  background: #f7af3c12;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-weight: 700;
}

.category-section,
.featured-section,
.proof-section,
.latest-section,
.seo-section,
.business-cta {
  padding: 78px 0;
}

.category-section,
.proof-section,
.seo-section {
  background: #fff;
}

.featured-section,
.latest-section {
  background: #f7af3c12;
}

.category-board {
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(142px, auto);
}

.category-card,
.featured-intro,
.listing-card,
.seo-panel,
.cta-grid {
  border-radius: 10px;
}

.category-card {
  min-height: 142px;
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.category-large {
  grid-column: span 2;
  grid-row: span 2;
}

.category-wide {
  grid-column: span 2;
}

.category-icon {
  border-radius: 10px;
}

.featured-intro {
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.listing-card {
  border-color: transparent;
}

.listing-card-featured img {
  aspect-ratio: 1.42 / 1;
}

.proof-section {
  color: var(--ink);
}

.proof-grid {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
}

.proof-copy {
  position: relative;
  top: auto;
}

.proof-copy img {
  width: 100%;
  filter: drop-shadow(0 30px 44px rgba(96, 59, 243, 0.13));
}

.process-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  display: block;
  min-height: 238px;
  padding: 28px;
  border: 1px solid #eef0fb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: #f7af3c29;
}

.process-step span img {
  width: 30px;
  height: 30px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.process-step p {
  grid-column: auto;
  color: #667085;
}

.latest-feed {
  align-items: stretch;
}

.listing-card-compact {
  grid-template-columns: 118px 1fr;
  min-height: 190px;
  background: #fff;
}

.seo-panel {
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.business-cta {
  background: #fff;
}

/*.cta-grid {*/
/*  background:*/
/*    url("../images/bg/cta6-bg.png") center/cover no-repeat,*/
/*    linear-gradient(95deg, #1b1740 0%, #7a1d0c 100%);*/
/*}*/

@media (max-width: 1080px) {

  .hero-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding-top: 54px;
  }

  .search-form,
  .process-stack,
  .trust-grid,
  .search-box {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-art-main {
    width: 100%;
  }

  .hero-art-card-two {
    width: 30%;
  }

  .hero-mini-panel {
    left: 18px;
    bottom: 28px;
  }

  .category-board,
  .featured-grid,
  .latest-feed,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-large,
  .category-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  h1 {
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-art {
    min-height: 300px;
  }

  .hero-art-card-two,
  .hero-mini-panel {
    display: none;
  }

  .process-step {
    min-height: auto;
  }
}

/* Testimonials, FAQ, and blog sections */
.testimonial-section,
.faq-section,
.blog-section {
  padding: 78px 0;
}

/*.testimonial-section,*/
/*.blog-section {*/
/*  background: #f7af3c29;*/
/*}*/

.faq-section {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.testimonial-art {
  position: relative;
}

.testimonial-art>img,
.testimonial-art>video {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  border-radius: 18px;
  object-fit: cover;
  background: #f4f2ff;
  filter: drop-shadow(0 28px 46px #7a1d0c2e);
}

.testimonial-art>video {
  display: block;
}

.testimonial-score {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  min-width: 168px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 20, 35, 0.12);
}

.testimonial-score strong {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.testimonial-score span,
.quote-author span,
.mini-quotes p,
.faq-intro p,
.faq-answer>p,
.blog-body p {
  color: #667085;
}

.testimonial-score span {
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-card {
  border: 1px solid #eef0fb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.featured-quote {
  padding: 28px;
  margin-top: 26px;
}

.featured-quote p {
  color: #101423;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.5;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.quote-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author strong,
.mini-quotes strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
}

.quote-author span {
  font-size: 0.88rem;
}

.mini-quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.mini-quotes .quote-card {
  padding: 20px;
}

.mini-quotes p,
.faq-intro p,
.faq-answer>p,
.blog-body p {
  line-height: 1.65;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #eef0fb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(18, 20, 42, 0.045);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #101423;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f7af3c5e;
}

.faq-question span::before,
.faq-question span::after {
  position: absolute;
  content: "";
  inset: 13px 8px auto;
  height: 2px;
  background: var(--violet);
}

.faq-question span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer>p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer>p {
  padding-bottom: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, minmax(210px, auto));
  gap: 18px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #eef0fb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.blog-card-large {
  grid-row: span 2;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.blog-card-large img {
  aspect-ratio: 1.55 / 1;
}

.blog-body {
  padding: 24px;
}

.blog-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-body h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.blog-card-accent {
  display: flex;
  align-items: center;
  background:
    url("../images/bg/cta6-bg.png") center/cover no-repeat,
    linear-gradient(135deg, #1b1740, #7a1d0c);
}

.blog-card-accent .blog-body span,
.blog-card-accent .blog-body h3,
.blog-card-accent .text-link {
  color: #fff;
}

.blog-card-accent .blog-body p {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {

  .testimonial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 820px) {

  .mini-quotes,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-large {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {

  .testimonial-section,
  .faq-section,
  .blog-section {
    padding: 58px 0;
  }

  .testimonial-score {
    position: static;
    margin-top: 14px;
  }
}

/* Single listing page */
.single-listing-page {
  background: #f7f8ff;
}

.listing-hero {
  padding: 38px 0 56px;
  background:
    url("../images/bg/hero6-bg.png") right top / min(58vw, 760px) auto no-repeat,
    linear-gradient(180deg, #f7f8ff 0%, #fff 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: #667085;
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--violet);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 9px;
  color: #b4b9c9;
}

.profile-command {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 30px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid #eef0fb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(18, 20, 42, 0.08);
  backdrop-filter: blur(16px);
}

.profile-gallery,
.profile-summary,
.detail-card,
.sidebar-card,
.claim-card {
  border: 1px solid #eef0fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.profile-gallery {
  padding: 12px;
}

.gallery-main {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #f4f2ff;
  cursor: pointer;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumbs a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-thumbs button {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #f4f2ff;
  cursor: pointer;
}

.gallery-thumbs button.is-active {
  border-color: #7a1d0c;
}

.gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.gallery-thumbs img:hover {
  transform: scale(1.05);
}

.profile-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.profile-kickers,
.rating-row,
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.status-badge,
.open-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-badge.verified {
  color: #067a7a;
  background: #dffafa;
}

.status-badge.featured {
  color: #7a1d0c;
  background: #f1eeff;
}

.open-status {
  color: #138a43;
  background: #e8f8ee;
}

.profile-summary h1 {
  margin: 12px 0 10px;
 font-size: clamp(2rem, 4vw, 3rem);
}

.rating-row strong {
  color: #101423;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.stars {
  color: #ffb020;
  letter-spacing: 0;
}

.profile-lede,
.detail-card p,
.claim-card p,
.sidebar-card p {
  color: #667085;
  line-height: 1.65;
}

.profile-summary address {
  margin-bottom: 22px;
  color: #667085;
  font-style: normal;
  font-weight: 800;
}

.single-search-section {
  padding: 34px 0;
  background: #fff;
}

.search-compact {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid #eef0fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
}

.search-compact h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.single-search-form {
  grid-template-columns: 1fr 1fr 0.78fr auto;
}

.listing-detail-section {
  padding: 48px 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

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

.detail-card {
  padding: 22px;
}

.detail-card h2,
.sidebar-card h2,
.claim-card h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 10px;
  background: #f7f8ff;
  font-family: var(--font-display);
  font-weight: 900;
}

.highlight-grid img {
  width: 28px;
  height: 28px;
}

.amenity-cloud,
.quick-facts,
.share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-cloud span,
.quick-facts span,
.share-list a,
.share-list button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #f7af3c12;
  border-radius: 999px;
  background: #f7af3c12;
  color: #101423;
  font-weight: 800;
  width: fit-content;
}

.share-list button {
  cursor: pointer;
  font: inherit;
}

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

.facts-grid div {
  padding: 16px;
  border-radius: 10px;
  background: #f7f8ff;
}

.facts-grid dt {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
}

.facts-grid dd {
  margin: 6px 0 0;
  color: #101423;
  font-weight: 900;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}


.photo-grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.photo-grid img {
  width: 100%;
  height: 180px;

  object-fit: cover;

  display: block;

  transition: 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

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

.gmb-grid article {
  padding: 16px;
  border-radius: 10px;
  background: #f7af3c12;
}

.gmb-grid span {
  display: block;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
}

.gmb-grid strong {
  display: block;
  margin-top: 7px;
  color: #7a1d0c;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.popular-times {
  margin: 18px 0;
}

.popular-times span {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.popular-times div {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 82px;
  padding: 14px;
  border-radius: 10px;
  background: #f7f8ff;
}

.popular-times i {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #8f00ff, #7a1d0c);
}

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 10px;
  background: #f7af3c12;
}

.review-summary strong {
  grid-row: span 2;
  color: #7a1d0c;
  font-family: var(--font-display);
  font-size: 2.5rem;
}

.review-summary p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  padding: 18px;
  border: 1px solid #eef0fb;
  border-radius: 10px;
  background: #fff;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 0.82rem;
}

.review-card p {
  max-height: 75px;
  overflow: hidden;
}

.review-card.is-expanded p {
  max-height: none;
}

.review-card button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7a1d0c;
  cursor: pointer;
  font-weight: 900;
}

.map-placeholder {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 12px;
  background:linear-gradient(90deg, rgba(96, 59, 243, 0.08) 1px, transparent 1px),    linear-gradient(rgba(96, 59, 243, 0.08) 1px, transparent 1px),    radial-gradient(circle at 58% 44%, rgba(0, 167, 167, 0.22), transparent 24%),    #f7af3c12;
  text-align: center;
}

.map-pin-dot {
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #7a1d0c;
  box-shadow: 0 0 0 12px rgba(96, 59, 243, 0.14);
}

.map-placeholder strong,
.map-placeholder p {
  grid-column: 1;
}

.claim-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  color: #fff;
  background:
    url("../images/bg/cta6-bg.png") center/cover no-repeat,
    linear-gradient(95deg, #1b1740, #7a1d0c);
}

.claim-card .eyebrow,
.claim-card h2 {
  color: #fff;
}

.claim-card p {
  color: rgba(255, 255, 255, 0.74);
}

.claim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.claim-card .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail-sidebar {
  position: static;
  top: auto;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 22px;
}

.contact-list,
.hours-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef0fb;
}

.contact-list span,
.hours-list span {
  color: #667085;
  font-weight: 800;
}

.contact-list a,
.contact-list strong,
.hours-list strong {
  color: #101423;
  font-weight: 900;
  text-align: right;
}

.fallback-note {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #f7f8ff;
  font-size: 0.88rem;
}

.claim-mini .btn {
  width: 100%;
}

@media (max-width: 1080px) {

  .profile-command,
  .search-compact,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .single-search-form {
    grid-template-columns: 1fr 1fr;
  }

  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .profile-summary {
    padding: 22px;
  }

  .profile-actions,
  .claim-card,
  .review-summary {
    grid-template-columns: 1fr;
  }

  .profile-actions .btn,
  .claim-actions .btn {
    width: 100%;
  }

  .single-search-form,
  .highlight-grid,
  .facts-grid,
  .gmb-grid,
  .review-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .listing-hero {
    padding-top: 24px;
  }

  .profile-command,
  .detail-card,
  .sidebar-card,
  .claim-card {
    padding: 16px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Single listing corrections */
.profile-command {
  grid-template-columns: 250px minmax(0, 1fr);
}

.profile-logo-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid #eef0fb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(18, 20, 42, 0.055);
  text-align: center;
}

.profile-logo-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
  background: #f4f2ff;
}

.profile-logo-card span {
  color: #667085;
  font-size: 0.86rem;
  font-weight: 900;
}

.single-search-form {
  grid-template-columns: 1.2fr 0.85fr auto;
}

.highlight-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.highlight-grid article {
  min-height: 76px;
  gap: 9px;
  padding: 12px;
  font-size: 0.82rem;
}

.highlight-grid img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.details-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.details-icon-grid article {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border-radius: 10px;
  background: #f7f8ff;
}

.details-icon-grid img {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.details-icon-grid span {
  display: block;
  color: #667085;
  font-size: 0.74rem;
  font-weight: 800;
}

.details-icon-grid strong {
  display: block;
  margin-top: 4px;
  color: #101423;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.gallery-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f7f8ff;
}

.gallery-source span {
  color: #101423;
  font-weight: 900;
}

.popular-times {
  padding: 16px;
  border-radius: 12px;
  background: #f7f8ff;
}

.popular-times>span {
  margin-bottom: 14px;
}

.popular-times .popular-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  height: 116px;
  padding: 0;
  background: transparent;
}

.popular-times .popular-bars span {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 8px;
  min-width: 0;
  margin: 0;
}

.popular-times .popular-bars i {
  display: block;
  width: 100%;
  min-height: 18px;
  border-radius: 999px 999px 5px 5px;
  background: linear-gradient(180deg, #8f00ff, #7a1d0c);
}

.popular-times .popular-bars em {
  color: #667085;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.truncate-url {
  display: block;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1080px) {

  .profile-command,
  .single-search-form {
    grid-template-columns: 1fr;
  }

  .profile-logo-card {
    max-width: 260px;
  }
}

@media (max-width: 820px) {

  .highlight-grid,
  .details-icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {

  .highlight-grid,
  .details-icon-grid,
  .popular-times .popular-bars {
    grid-template-columns: 1fr;
  }

  .popular-times .popular-bars {
    height: auto;
  }

  .popular-times .popular-bars span {
    grid-template-columns: 1fr 34px;
    grid-template-rows: auto;
    align-items: center;
  }

  .popular-times .popular-bars i {
    height: 12px !important;
    border-radius: 999px;
  }
}

/* Revised single listing layout */
.profile-command-section {
  padding: 30px 0 34px;
  background:
    url("../images/bg/hero6-bg.png") right top / min(54vw, 720px) auto no-repeat,
    linear-gradient(180deg, #f7f8ff 0%, #fff 100%);
}

.profile-command-v2 {
  grid-template-columns: 220px minmax(0, 1fr);
  padding: 16px;
}

.profile-command-v2 .profile-summary {
  padding: 24px 26px;
}

.profile-command-v2 .profile-summary h1 {
 font-size: clamp(2rem, 4vw, 3rem);
}

.single-search-clean {
  margin-top: 14px;
}

.single-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.single-bento>.detail-card,
.single-bento>.claim-card {
  grid-column: span 6;
}

.single-bento>.about-card,
.single-bento>.highlights-card,
.single-bento>.gmb-panel,
.single-bento>.reviews-section,
.single-bento>.map-card,
.single-bento>.related-section {
  grid-column: span 8;
}

.single-bento>.contact-panel,
.single-bento>.hours-card,
.single-bento>.share-card {
  grid-column: span 4;
}

.single-bento>.claim-card {
  grid-column: span 12;
}

.compact-icons-grid,
.compact-detail-grid {
  grid-template-columns: repeat(4, 1fr);
}

.compact-icons-grid article,
.compact-detail-grid article {
  min-height: 70px;
}

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

.controlled-gallery .gallery-main img {
  aspect-ratio: 1.75 / 1;
}

.controlled-gallery .gallery-thumbs {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.single-bento .photo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.single-bento .popular-times .popular-bars {
  height: 118px;
}

@media (max-width: 1080px) {

  .profile-command-v2,
  .single-bento,
  .single-bento>.detail-card,
  .single-bento>.claim-card,
  .single-bento>.about-card,
  .single-bento>.highlights-card,
  .single-bento>.gmb-panel,
  .single-bento>.reviews-section,
  .single-bento>.map-card,
  .single-bento>.related-section,
  .single-bento>.contact-panel,
  .single-bento>.hours-card,
  .single-bento>.share-card {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {

  .compact-icons-grid,
  .compact-detail-grid,
  .single-bento .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .controlled-gallery .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .profile-command-v2 {
    padding: 12px;
  }

  .profile-logo-card {
    max-width: 210px;
  }

  .compact-icons-grid,
  .compact-detail-grid,
  .single-bento .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial polish for revised single listing */
.revised-single .listing-detail-section {
  padding-top: 48px;
}

.profile-command-v2 {
  position: relative;
  overflow: hidden;
  border-color: rgba(96, 59, 243, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(96, 59, 243, 0.1), transparent 24%),
    radial-gradient(circle at 18% 88%, rgba(0, 167, 167, 0.09), transparent 24%),
    rgba(255, 255, 255, 0.9);
}

.profile-command-v2::after {
  position: absolute;
  content: "";
  right: 22px;
  bottom: 20px;
  width: 180px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a1d0c, #00a7a7);
  opacity: 0.14;
}

.profile-command-v2 .profile-logo-card {
  align-self: center;
  min-height: auto;
  border: 0;
  background: linear-gradient(180deg, #fff, #f7f8ff);
  box-shadow: 0 18px 45px rgba(96, 59, 243, 0.11);
}

.profile-command-v2 .profile-summary {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.single-search-clean {
  border: 0;
  background: #101423;
  color: #fff;
  box-shadow: 0 24px 60px rgba(16, 20, 35, 0.14);
}

.single-search-clean h2,
.single-search-clean .eyebrow {
  color: #fff;
}

.single-search-clean .eyebrow {
  margin-bottom: 8px;
}

.single-search-clean .field-group {
  border-color: rgba(255, 255, 255, 0.08);
}

.single-bento {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.48fr);
  gap: 16px;
  align-items: start;
}

.single-bento>.detail-card,
.single-bento>.claim-card,
.single-bento>.about-card,
.single-bento>.highlights-card,
.single-bento>.gmb-panel,
.single-bento>.reviews-section,
.single-bento>.map-card,
.single-bento>.related-section,
.single-bento>.contact-panel,
.single-bento>.hours-card,
.single-bento>.share-card {
  grid-column: auto;
}

.single-bento>.about-card,
.single-bento>.highlights-card,
.single-bento>.services-card,
.single-bento>.gallery-section,
.single-bento>.gmb-panel,
.single-bento>.reviews-section,
.single-bento>.map-card,
.single-bento>.claim-card,
.single-bento>.related-section {
  grid-column: 1;
}

.single-bento>.contact-panel,
.single-bento>.hours-card,
.single-bento>.share-card {
  grid-column: 2;
}

.single-bento>.contact-panel {
  position: static;
  top: auto;
}

.single-bento>.hours-card {
  margin-top: 0;
}

.single-bento>.detail-card {
  border-color: rgba(230, 233, 242, 0.86);
}

.single-bento>.about-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(96, 59, 243, 0.075), transparent 34%),
    #fff;
}

.single-bento>.highlights-card,
.single-bento>.gmb-panel {
  background:
    linear-gradient(180deg, #fff, #fbfcff);
}

.single-bento .detail-card:nth-of-type(4),
.single-bento .detail-card:nth-of-type(5) {
  border-style: dashed;
}

.compact-icons-grid {
  grid-template-columns: repeat(6, 1fr);
}

.compact-icons-grid article {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

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

.single-bento .gallery-section {
  padding: 0;
  overflow: hidden;
}

.single-bento .gallery-section>.eyebrow,
.single-bento .gallery-section>h2,
.single-bento .gallery-section>.controlled-gallery,
.single-bento .gallery-section>.photo-grid {
  margin-left: 22px;
  margin-right: 22px;
}

.single-bento .gallery-section>.eyebrow {
  margin-top: 22px;
}

.single-bento .gallery-section>.controlled-gallery,
.single-bento .gallery-section>.photo-grid {
  margin-bottom: 22px;
}

.controlled-gallery {
  grid-template-columns: minmax(0, 1fr) 92px;
}

.single-bento .photo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-panel,
.hours-card,
.share-card {
  padding: 20px;
}

.contact-list li,
.hours-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.contact-list a,
.contact-list strong,
.hours-list strong {
  text-align: left;
}

.map-placeholder {
  min-height: 260px;
}

.claim-card {
  border: 0;
  box-shadow: 0 26px 70px rgba(96, 59, 243, 0.16);
}

@media (max-width: 1080px) {
  .single-bento {
    grid-template-columns: 1fr;
  }

  .single-bento>.about-card,
  .single-bento>.highlights-card,
  .single-bento>.services-card,
  .single-bento>.gallery-section,
  .single-bento>.gmb-panel,
  .single-bento>.reviews-section,
  .single-bento>.map-card,
  .single-bento>.claim-card,
  .single-bento>.related-section,
  .single-bento>.contact-panel,
  .single-bento>.hours-card,
  .single-bento>.share-card {
    grid-column: 1;
  }

  .single-bento>.contact-panel {
    position: static;
  }

  .compact-icons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {

  .compact-icons-grid,
  .compact-detail-grid,
  .single-bento .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .single-bento>.about-card {
    padding: 22px;
  }

  .compact-icons-grid,
  .compact-detail-grid,
  .single-bento .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* Single listing layout reset: balanced composed rows */
.revised-single .listing-detail-section {
  padding: 42px 0 56px;
}

.revised-single .single-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.revised-single .single-bento>.detail-card,
.revised-single .single-bento>.claim-card {
  grid-column: span 12;
  position: static;
  top: auto;
}

.revised-single .single-bento>.services-card {
  grid-column: span 7;
}

.revised-single .single-bento>.detail-card:has(.compact-detail-grid) {
  grid-column: span 5;
}

.revised-single .single-bento>.hours-card {
  grid-column: span 4;
}

.revised-single .single-bento>.gmb-panel {
  grid-column: span 8;
}

.revised-single .single-bento>.gallery-section {
  grid-column: span 6;
}

.revised-single .single-bento>.map-card {
  grid-column: span 8;
}

.revised-single .single-bento>.share-card {
  grid-column: span 4;
}

.revised-single .detail-card {
  padding: 24px;
  border: 1px solid rgba(230, 233, 242, 0.9);
  border-radius: 14px;
}

.revised-single .about-card {
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(96, 59, 243, 0.07), transparent 38%),
    #fff;
}

.revised-single .contact-panel {
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.07), transparent 34%),
    #fff;
}

.revised-single .contact-panel .contact-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.revised-single .contact-panel .contact-list li {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: #f7f8ff;
}

.revised-single .contact-list a,
.revised-single .contact-list strong {
  max-width: 100%;
  text-align: left;
}

.revised-single .highlights-card {
  background: #fff;
}

.revised-single .compact-icons-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.revised-single .compact-icons-grid article {
  min-height: 82px;
  padding: 12px 10px;
  border: 1px solid #eef0fb;
}

.revised-single .services-card {
  background:
    linear-gradient(180deg, #fff, #fbfcff);
}

.revised-single .amenity-cloud span {
  min-height: 34px;
  background: #fff;
}

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

.revised-single .compact-detail-grid article {
  min-height: 76px;
}

.revised-single .hours-list {
  gap: 8px;
}

.revised-single .hours-list li {
  padding-bottom: 8px;
}

.revised-single .gallery-section {
  padding: 24px;
  overflow: visible;
}

.revised-single .single-bento .gallery-section>.eyebrow,
.revised-single .single-bento .gallery-section>h2,
.revised-single .single-bento .gallery-section>.controlled-gallery,
.revised-single .single-bento .gallery-section>.photo-grid {
  margin-left: 0;
  margin-right: 0;
}

.revised-single .single-bento .gallery-section>.eyebrow {
  margin-top: 0;
}

.revised-single .single-bento .gallery-section>.controlled-gallery,
.revised-single .single-bento .gallery-section>.photo-grid {
  margin-bottom: 0;
}

.revised-single .controlled-gallery {
  grid-template-columns: minmax(0, 1fr);
}

.revised-single .controlled-gallery .gallery-thumbs {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
}

.revised-single .controlled-gallery .gallery-main img {
  aspect-ratio: 1.65 / 1;
}

.revised-single .photo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.revised-single .gmb-grid {
  grid-template-columns: repeat(4, 1fr);
}

.revised-single .popular-times {
  margin-bottom: 10px;
}

.revised-single .review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.revised-single .map-placeholder {
  min-height: 250px;
}

.revised-single .share-card {
  align-content: center;
}

.revised-single .share-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.revised-single .claim-card {
  padding: 28px;
}

.revised-single .related-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1080px) {

  .revised-single .single-bento>.services-card,
  .revised-single .single-bento>.detail-card:has(.compact-detail-grid),
  .revised-single .single-bento>.hours-card,
  .revised-single .single-bento>.gmb-panel,
  .revised-single .single-bento>.gallery-section,
  .revised-single .single-bento>.map-card,
  .revised-single .single-bento>.share-card {
    grid-column: span 12;
  }

  .revised-single .contact-panel .contact-list,
  .revised-single .compact-icons-grid,
  .revised-single .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .revised-single .contact-panel .contact-list,
  .revised-single .compact-icons-grid,
  .revised-single .compact-detail-grid,
  .revised-single .gmb-grid,
  .revised-single .review-grid,
  .revised-single .related-grid,
  .revised-single .photo-grid,
  .revised-single .share-list {
    grid-template-columns: 1fr;
  }
}

/* World-class single listing composition */
.world-listing {
  background: #f4f6fb;
}

.world-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 26px;
  background:
   radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.world-hero::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 92% 14%, rgba(96, 59, 243, 0.08), transparent 32%);
  pointer-events: none;
}

.world-hero>.container {
  position: relative;
  z-index: 1;
}

.world-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  pointer-events: none;
}

.world-breadcrumb {
  margin-bottom: 18px;
}

.world-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(230, 233, 242, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #f7af3c12), transparent 36%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(18, 20, 42, 0.1);
}

.world-logo-tile {
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f7af3c12);
  box-shadow: inset 0 0 0 1px #eef0fb;
}

.world-logo-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

.world-profile-main h1 {
  margin: 10px 0 8px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.04;
}

.world-profile-main p {
  max-width: 720px;
  color: #667085;
  line-height: 1.6;
}

.world-profile-main address {
  color: #667085;
  font-style: normal;
  font-weight: 800;
}

.world-rating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #667085;
  font-weight: 800;
}

.world-rating-line strong {
  color: var(--violet-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.world-action-panel {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #101423;
  color: #fff;
}

.world-score {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.world-score span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.world-score strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.world-action-panel .profile-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.world-action-panel .btn {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.world-action-panel .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.world-search {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #101423;
  color: #fff;
  box-shadow: 0 20px 54px rgba(16, 20, 35, 0.16);
}

.world-search h2,
.world-search .eyebrow {
  color: #fff;
}

.world-search h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.world-search .single-search-form {
  grid-template-columns: 1.15fr 0.85fr auto;
}

.world-content {
  padding: 34px 0 60px;
}

.world-stack {
  display: grid;
  gap: 18px;
}

.world-panel {
  padding: 24px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.world-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.world-panel p {
  color: #667085;
  line-height: 1.65;
}

.world-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  background:
    linear-gradient(135deg, #f7af3c12, transparent 38%),
    #fff;
}

.world-contact-strip {
  padding: 18px;
  border-radius: 14px;
  background: #f7af3c12;
}

.world-contact-strip h3 {
  margin-bottom: 14px;
}

.world-contact-strip .contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.world-contact-strip .contact-list li {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

.world-contact-strip .contact-list a,
.world-contact-strip .contact-list strong {
  text-align: left;
}

.world-icon-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.world-icon-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  min-height: 88px;
  padding: 12px 8px;
  border: 1px solid #f7af3c12;
  border-radius: 12px;
  background: #f7af3c12;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
}

.world-icon-grid img {
  width: 24px;
  height: 24px;
  object-fit: contain;filter: brightness(0) saturate(100%) invert(12%) sepia(78%) saturate(2734%) hue-rotate(356deg) brightness(93%) contrast(95%);
}

.world-listing .amenity-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.world-listing .amenity-cloud span {
  justify-content: flex-start;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 12px;
  line-height: 1.4rem;
  margin-bottom: 10px;
}

.world-listing .amenity-cloud img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(20%) saturate(6836%) hue-rotate(350deg) brightness(91%) contrast(100%);
}

.world-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.world-duo>*:only-child {
  grid-column: 1 / -1;
}

.world-soft-panel {
  background:
    linear-gradient(145deg, #f7af3c12, transparent 38%),
    #fff;
}

.world-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.world-facts-grid .codet-item article {
  display: flex;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border-radius: 12px;
  background: #f7af3c12;
}

.world-facts-grid img {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  object-fit: contain;filter: brightness(0) saturate(100%) invert(15%) sepia(26%) saturate(4948%) hue-rotate(349deg) brightness(101%) contrast(101%);
}

.world-facts-grid span {
  display: block;
  color: #667085;
  font-size: 0.74rem;
  font-weight: 800;
}

.world-facts-grid strong {
  display: block;
  margin-top: 3px;
  color: #101423;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.media-duo {
  grid-template-columns: 1.1fr 0.9fr;
}

.world-listing .controlled-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.world-listing .controlled-gallery .gallery-main img {
  aspect-ratio: 1.75 / 1;
}

.world-listing .controlled-gallery .gallery-thumbs {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.world-listing .photo-grid {
  grid-template-columns: repeat(2, 1fr);
}

.data-duo {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.world-listing .gmb-grid {
  grid-template-columns: repeat(4, 1fr);
}

.world-listing .data-duo>.world-panel {
  align-self: start;
}

.world-listing .data-duo .gmb-grid {
  gap: 10px;
}

.world-listing .data-duo .gmb-grid article {
  padding: 13px 12px;
}

.world-listing .data-duo .gmb-grid strong {
  margin-top: 5px;
  font-size: 1.35rem;
}

.world-listing .data-duo>.world-panel:first-child p {
  margin-top: 12px;
}

.world-listing .data-duo .hours-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.world-listing .data-duo .hours-list li {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: #f7af3c12;
}

.world-listing .data-duo .hours-list strong {
  text-align: left;
  font-size: 0.86rem;
}

.world-listing .data-duo .fallback-note {
  margin-top: 10px;
}

.world-listing .popular-times {
  margin: 14px 0 10px;
}

.world-listing .review-stars {
  display: inline-flex;
  margin: 6px 0 4px;
  color: #ffb020;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.world-listing .review-summary .review-stars {
  display: flex;
  margin-top: 4px;
  font-size: 1.1rem;
}

.world-listing .popular-bars {
  height: 108px;
}

.world-listing .hours-list {
  gap: 8px;
}

.world-listing .hours-list li {
  padding-bottom: 8px;
}

.world-listing .review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.action-duo {
  grid-template-columns: 1.3fr 0.7fr;
}

.world-listing .map-placeholder {
  min-height: 250px;
}

/* .world-listing .share-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
} */

.world-claim {
  border: 0;
  border-radius: 16px;
}

.world-listing .related-grid {
  grid-template-columns: repeat(2, 1fr);
}

.uncategorized-text {
  color: #7a1d0c !important;
}

.category-title a {
  color: #000 !important;
  font-weight: 600 !important;
}

.pb-label-category-archive {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #8d8d8d73;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .3rem .9rem .3rem .65rem;
  font-size: .75rem;
  color: #000000;
  font-weight: 500;
  margin-bottom: 1rem;
  animation: fuA .55s ease both;
}

.pb-dot-category-archive {
  width: 6px;
  height: 6px;
  background: #7a1d0c;
  border-radius: 50%;
}

.categories-hero-grid-archive h1 {
  max-width: 100% !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

@media (max-width: 1080px) {

  .world-profile,
  .world-search,
  .world-overview,
  .world-duo {
    grid-template-columns: 1fr;
  }

  .world-action-panel .profile-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .world-icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .world-logo-tile {
    max-width: 190px;
  }
}

@media (max-width: 760px) {

  .world-action-panel .profile-actions,
  .world-contact-strip .contact-list,
  .world-icon-grid,
  .world-facts-grid,
  .world-listing .gmb-grid,
  .world-listing .data-duo .hours-list,
  .world-listing .review-grid,
  .world-listing .related-grid,
  .world-listing .photo-grid,
  .world-listing .share-list,
  .world-search .single-search-form {
    grid-template-columns: 1fr;
  }

  .world-profile {
    padding: 14px;
  }

  .world-logo-tile {
    max-width: 190px;
  }

  .world-icon-grid,
  .world-listing .amenity-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {

  .world-icon-grid,
  .world-listing .amenity-cloud {
    grid-template-columns: 1fr;
  }
}

/* Results/Search page */
.results-page {
  background: #f4f6fb;
}

.results-hero {
  padding: 34px 0 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.results-breadcrumb {
  margin-bottom: 18px;
}

.results-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 24px;
  align-items: end;
}

.results-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.results-hero p {
  color: #667085;
  line-height: 1.65;
}

.results-summary-card {
  padding: 20px;
  border-radius: 16px;
  background: #101423;
  color: #fff;
  box-shadow: 0 22px 60px rgba(16, 20, 35, 0.18);
}

.results-summary-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.results-summary-card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 2.4rem;
}

.results-summary-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.results-search-panel {
  margin-top: 22px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.08);
}

.results-search-form {
  grid-template-columns: 1.2fr 0.86fr auto;
}

.results-shell-section {
  padding: 28px 0 56px;
}

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.active-filter-row span {
  color: #667085;
  font-weight: 900;
}

.active-filter-row button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e8eafb;
  border-radius: 999px;
  background: #fff;
  color: #101423;
  cursor: pointer;
  font-weight: 800;
}

.active-filter-row button::after {
  content: " x";
  color: #7a1d0c;
}

.results-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.results-filters,
.results-toolbar,
.empty-state,
.pagination {
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.results-filters {
  padding: 20px;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.filter-header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.filter-header button,
.mobile-filter-trigger {
  display: none;
}

.filter-form {
  display: grid;
  gap: 16px;
}

.filter-field,
.filter-group {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-field span,
.filter-group legend,
.sort-control span {
  color: #667085;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-field input,
.filter-field select,
.sort-control select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #e8eafb;
  border-radius: 10px;
  background: #f8f9ff;
  color: #101423;
  padding: 0 12px;
  font-weight: 700;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #101423;
  font-weight: 800;
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.results-main {
  display: grid;
  gap: 16px;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.toolbar-count {
  display: block;
  color: #7a1d0c;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.results-toolbar p {
  margin: 4px 0 0;
  color: #667085;
}

.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.sort-control {
  display: flex;
  gap: 8px;
  align-items: center;
}

.view-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: #f1eeff;
}

.view-toggle button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7a1d0c;
  cursor: pointer;
  font-weight: 900;
}

.view-toggle button.is-active {
  background: #7a1d0c;
  color: #fff;
}

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

.result-card {
  border-radius: 14px;
}

.result-card>img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  background: #f4f2ff;
}

.result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.result-badges span {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f1eeff;
  color: #7a1d0c;
  font-size: 0.72rem;
  font-weight: 900;
}

.result-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.results-grid.is-list {
  grid-template-columns: 1fr;
}

.results-grid.is-list .result-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
}

.results-grid.is-list .result-card>img {
  height: 100%;
  aspect-ratio: auto;
}

.empty-state {
  padding: 32px;
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 8px;
}

.empty-state p {
  color: #667085;
  line-height: 1.65;
}

.empty-actions,
.category-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.category-suggestions span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f7af3c12;
  font-weight: 800;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  background: #f7f8ff;
  font-weight: 900;
}

.pagination a.is-active {
  background: #7a1d0c;
  color: #fff;
}

.results-seo-section {
  padding: 0 0 70px;
}

@media (max-width: 1080px) {

  .results-hero-grid,
  .results-search-form,
  .results-layout {
    grid-template-columns: 1fr;
  }

  .results-filters {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(390px, 100%);
    overflow-y: auto;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.24s ease;
  }

  .results-filters.is-open {
    transform: translateX(0);
  }

  .filter-header button,
  .mobile-filter-trigger {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .results-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-actions,
  .sort-control {
    justify-content: stretch;
  }

  .sort-control,
  .sort-control select,
  .view-toggle,
  .mobile-filter-trigger {
    width: 100%;
  }

  .results-grid,
  .results-grid.is-list {
    grid-template-columns: 1fr;
  }

  .results-grid.is-list .result-card {
    grid-template-columns: 1fr;
  }
}

/* Results page open layout */
.results-layout-open {
  display: block;
}

.inline-filter-console {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 0.8fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(96, 59, 243, 0.06), transparent 38%),
    #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.inline-filter-toggles {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-filter-toggles label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f7f8ff;
  font-weight: 900;
}

.inline-filter-console .filter-actions {
  grid-column: span 2;
  display: flex;
  justify-content: flex-end;
}

.results-layout-open .results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.results-layout-open .results-grid.is-list {
  grid-template-columns: 1fr;
}

.results-layout-open .results-grid.is-list .result-card {
  grid-template-columns: 220px minmax(0, 1fr);
}

@media (max-width: 1080px) {

  .inline-filter-console,
  .results-layout-open .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-filter-console .filter-actions,
  .inline-filter-toggles {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {

  .inline-filter-console,
  .results-layout-open .results-grid,
  .results-layout-open .results-grid.is-list .result-card {
    grid-template-columns: 1fr;
  }

  .inline-filter-console .filter-actions {
    justify-content: stretch;
  }

  .inline-filter-console .filter-actions .btn {
    flex: 1;
  }
}

/* Categories page */
.categories-page {
  background: #f4f6fb;
}

.categories-hero {
  padding: 34px 0 30px;
  /*background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);*/
  background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7af3c29 100%);
}

.categories-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: end;
}

.categories-hero h1 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.categories-hero p {
  max-width: 720px;
  color: #667085;
  line-height: 1.65;
}

.category-radar-card {
  padding: 22px;
  border-radius: 18px;
  background: #101423;
  color: #fff;
  box-shadow: 0 22px 60px rgba(16, 20, 35, 0.18);
}

.category-radar-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.category-radar-card span {
  display: block;
  margin: 8px 0;
  font-weight: 900;
}

.category-radar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.category-search-card {
  margin-top: 22px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.08);
}

.category-search-form {
  grid-template-columns: 1.2fr 0.9fr auto;
}

.category-shortcuts-section,
.featured-categories-section,
.browse-needs-section,
.grouped-categories-section,
.az-section,
.all-categories-section,
.category-seo-section,
.category-cta-section {
  padding: 62px 0;
}

.category-shortcuts-section {
  padding-top: 34px;
}

.shortcuts-shell,
.needs-panel,
.az-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.category-chip-row,
.need-grid,
.az-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip-row a,
.need-grid a,
.az-tabs button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #eef0fb;
  border-radius: 999px;
  background: #f7f8ff;
  color: #101423;
  font-weight: 900;
}

.az-tabs button {
  cursor: pointer;
  font: inherit;
}

.az-tabs button.is-active {
  color: #fff;
  background: #7a1d0c;
}

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

.category-card-v2 {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.category-card-v2 .category-card-image {
  width: calc(100% + 44px);
  max-width: none;
  height: 128px;
  margin: -22px -22px 2px;
  object-fit: cover;
  background: #f4f2ff;
}

.category-card-v2::after {
  position: absolute;
  content: "";
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 34px;
  background: rgba(96, 59, 243, 0.08);
  transform: rotate(18deg);
}

.category-card-v2 .category-icon {
  margin-bottom: 6px;
}

.category-card-v2 h3,
.mini-category-card h3,
.category-group h3 {
  margin: 0;
}

.category-card-v2 p,
.mini-category-card p {
  color: #667085;
  line-height: 1.62;
}

.category-card-v2 strong {
  color: #7a1d0c;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.category-card-v2 .btn {
  align-self: end;
  justify-self: start;
}

.needs-panel {
  color: #fff;
  background:
    url("../images/bg/cta6-bg.png") center/cover no-repeat,
    linear-gradient(135deg, #1b1740, #7a1d0c);
}

.needs-panel .eyebrow,
.needs-panel h2 {
  color: #fff;
}

.need-grid a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
}

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

.category-group,
.mini-category-card,
.category-empty-state {
  padding: 22px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.category-group {
  display: grid;
  gap: 10px;
}

.category-group a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #f7f8ff;
  font-weight: 900;
}

.category-group span {
  color: #7a1d0c;
}

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

.mini-category-card {
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.mini-category-card img {
  width: calc(100% + 44px);
  max-width: none;
  height: 132px;
  margin: -22px -22px 4px;
  object-fit: cover;
  background: #f7af3c12;
}

.mini-category-card a {
  color: var(--violet-2);
  font-weight: 900;
}

.category-empty-state {
  margin-top: 16px;
  text-align: center;
}

.category-empty-state p {
  color: #667085;
}

.category-seo-section {
  padding-top: 30px;background: #f7af3c29;
}

.category-cta-section {
  padding-top: 0;background: #f7af3c29;
}

.category-cta-section .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  margin-left: 8px;
}

@media (max-width: 1080px) {

  .categories-hero-grid,
  .shortcuts-shell,
  .needs-panel,
  .az-panel {
    grid-template-columns: 1fr;
  }

  .featured-category-grid,
  .all-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grouped-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .category-search-form,
  .featured-category-grid,
  .all-category-grid {
    grid-template-columns: 1fr;
  }

  .category-card-v2 {
    min-height: auto;
  }
}

/* Contact page */
.contact-page {
  background: #f4f6fb;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  background: var(--violet-2);
}

.contact-hero::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 84% 18%, #f7af3c12, transparent 34%);
}

.contact-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-hero p {
  max-width: 620px;
  color: #667085;
  line-height: 1.65;
}

.contact-section {
  padding: 64px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.contact-info-card {
  background:
    linear-gradient(135deg, rgba(96, 59, 243, 0.065), transparent 40%),
    #fff;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods article {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 12px;
  background: #f7af3c12;
}

.contact-methods strong,
.contact-form label span {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods a,
.contact-methods span {
  color: #101423;
  font-weight: 900;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #f7af3c12;
  border-radius: 10px;
  background: #f7af3c12;
  color: #101423;
  padding: 13px 14px;
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Sitemap page */
.sitemap-page {
  background: #f4f6fb;
}

.sitemap-hero {
  padding: 54px 0 36px;
  background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.sitemap-hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.sitemap-hero p {
  color: #667085;
  line-height: 1.65;
}

.sitemap-section {
  padding: 48px 0 70px;
}

.sitemap-layout {
  display: grid;
  gap: 18px;
}

.sitemap-main-pages,
.sitemap-categories {
  padding: 24px;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.055);
}

.sitemap-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.sitemap-page-grid a {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 12px;
  background: #f7af3c12;
  color: #101423;
  font-weight: 900;
}

.sitemap-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-category-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 9px;
  border-radius: 12px;
  background: #f7af3c12;
  color: #101423;
  font-size: 0.88rem;
  font-weight: 900;
}

.sitemap-category-grid img {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 9px;
  object-fit: cover;
  background: #f7af3c12;
}

@media (max-width: 1080px) {

  .sitemap-page-grid,
  .sitemap-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {

  .sitemap-page-grid,
  .sitemap-category-grid {
    grid-template-columns: 1fr;
  }
}

/* 404 page */
.error-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at 12% 10%, #f7af3c12, transparent 26%),
    linear-gradient(180deg, #fff 0%, #f4f6fb 100%);
}

.error-hero {
  padding: 82px 0 92px;
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.error-copy {
  max-width: 660px;
}

.error-code {
  margin: 18px 0 8px;
  color: #7a1d0c;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.error-copy h1 {
  max-width: 620px;
  margin-bottom: 14px;
 font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.error-copy p:not(.error-code) {
  max-width: 560px;
  color: #667085;
  line-height: 1.68;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.error-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid #e8eafb;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #101423;
  font-size: 0.82rem;
  font-weight: 900;
}

.error-video-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: #101423;
  box-shadow: 0 28px 72px rgba(20, 18, 52, 0.18);
}

.error-video-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 35, 0.08), rgba(16, 20, 35, 0.46)),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.32), transparent 25%);
  pointer-events: none;
}

.error-video-card video {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  display: block;
}

.error-video-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.error-video-caption strong {
  color: #101423;
  font-size: 0.94rem;
  font-weight: 900;
}

.error-video-caption span {
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 920px) {
  .error-layout {
    grid-template-columns: 1fr;
  }

  .error-video-card,
  .error-video-card video {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .error-hero {
    padding: 54px 0 64px;
  }

  .error-video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .error-video-caption span {
    text-align: left;
  }
}

/* Blog list page */
.blog-list-page {
  background: #f4f6fb;
}

.blog-list-hero {
  padding: 54px 0 42px;
  background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.blog-list-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: start;
}

.blog-list-copy h1 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.blog-list-copy p {
  max-width: 590px;
  color: #667085;
  line-height: 1.68;
}

.blog-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  max-width: 520px;
  margin-top: 24px;
  padding: 8px;
  border: 1px solid #e8eafb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 20, 42, 0.065);
}

.blog-search-form input {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: #f7f8ff;
  padding: 0 14px;
  color: #101423;
  font: inherit;
  font-weight: 800;
}

.blog-feature-card {
  overflow: hidden;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(18, 20, 42, 0.09);
}

.blog-feature-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
  display: block;
}

.blog-feature-card div {
  padding: 22px;
}

.blog-feature-card span,
.blog-archive-body span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #7a1d0c;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-feature-card h2 {
  margin-bottom: 10px;
  font-size: 1.38rem;
  line-height: 1.16;
}

.blog-feature-card p {
  color: #667085;
  line-height: 1.62;
}

.blog-topic-strip {
  padding: 18px 0;
}

.blog-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.blog-topic-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid #e8eafb;
  border-radius: 999px;
  background: #fff;
  color: #101423;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(18, 20, 42, 0.04);
}

.blog-archive-section {
  padding: 34px 0 58px;
}

.blog-archive-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}

.blog-archive-header h2 {
  max-width: 640px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.08;
}

.blog-archive-header p {
  color: #667085;
  line-height: 1.65;
}

.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.blog-archive-card {
  display: grid;
  grid-template-columns: minmax(180px, 255px) minmax(0, 1fr);
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.052);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(18, 20, 42, 0.09);
}

.blog-archive-card-wide {
  grid-column: auto;
}

.blog-archive-card img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  object-fit: cover;
  display: block;
}

.blog-archive-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px 24px;
}

.blog-archive-body h3,
.blog-archive-card-wide .blog-archive-body h3,
.blog-archive-card-accent .blog-archive-body h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.blog-archive-body p {
  color: #667085;
  line-height: 1.6;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  color: #667085;
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-card-footer a,
.blog-archive-body>a {
  color: #7a1d0c;
  font-weight: 900;
}

.blog-archive-card-accent {
  background: #fff;
}

.blog-archive-card-accent .blog-archive-body span,
.blog-archive-card-accent .blog-archive-body h3,
.blog-archive-card-accent .blog-archive-body a {
  color: inherit;
}

.blog-archive-card-accent .blog-archive-body p {
  color: #667085;
}

.blog-mini-cta {
  padding: 0 0 70px;
}

.blog-mini-cta .eyebrow{color:#fff;}

.blog-mini-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background:linear-gradient(135deg, var(--violet),  var(--violet-2)),
    var(--ink);
  color: #fff;
  box-shadow: 0 24px 62px rgba(96, 59, 243, 0.18);
}

.blog-mini-cta-panel h2 {
  max-width: 560px;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.blog-mini-cta-panel p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1080px) {

  .blog-list-hero-grid,
  .blog-archive-header,
  .blog-archive-card-wide {
    grid-template-columns: 1fr;
  }

  .blog-archive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .blog-search-form,
  .blog-archive-grid,
  .blog-archive-card {
    grid-template-columns: 1fr;
  }

  .blog-mini-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Single blog page */
.single-blog-page {
  background: #f4f6fb;
}

.single-blog-hero {
  padding: 48px 0 32px;
  background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.single-blog-hero-inner {
  display: grid;
  gap: 20px;
}

.single-blog-heading {
  max-width: 860px;
}

.single-blog-heading h1 {
  max-width: 820px;
  margin: 10px 0 14px;
 font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.03;
}

.single-blog-heading p {
  max-width: 720px;
  color: #667085;
  line-height: 1.7;
}

.single-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.single-blog-meta span,
.single-blog-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid #e8eafb;
  border-radius: 999px;
  background: #fff;
  color: #101423;
  font-size: 0.82rem;
  font-weight: 900;
}

.single-blog-content-section {
  padding: 26px 0 54px;
}

.single-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  align-items: start;
}

.single-blog-article {
  overflow: hidden;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(18, 20, 42, 0.06);
}

.single-blog-article img{  width: 100%;}
.single-blog-featured-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

.single-blog-content {
  padding: clamp(24px, 4vw, 46px);
}

.single-blog-content .lead {
  color: #101423;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.68;
}

.single-blog-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.single-blog-content p,
.single-blog-content li {
  color: #667085;
  line-height: 1.78;
}

.single-blog-content ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.single-blog-content blockquote {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid #7a1d0c;
  border-radius: 14px;
  background: #f7f8ff;
}

.single-blog-content blockquote p {
  margin: 0;
  color: #101423;
  font-size: 1.06rem;
  font-weight: 900;
}

.single-blog-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.single-blog-image-row img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  border-radius: 14px;
  object-fit: cover;
  background: #f7f8ff;
}

.single-blog-aside {
  display: grid;
  gap: 12px;
}

.single-blog-side-card {
  padding: 20px;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.052);
}

.single-blog-side-card>span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #7a1d0c;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.single-blog-side-card>a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #eef0fb;
  color: #101423;
  font-size: 0.9rem;
  font-weight: 900;
}

.single-blog-share {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.single-blog-share a,
.single-blog-share button {
  min-height: 36px;
  border: 1px solid #e8eafb;
  border-radius: 999px;
  background: #f7f8ff;
  color: #101423;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.single-blog-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-blog-owner-card {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #19153b, #7a1d0c);
  color: #fff;
}

.single-blog-owner-card>span,
.single-blog-owner-card h2 {
  color: #fff;
}

.single-blog-owner-card h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.single-blog-owner-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.single-blog-related-section {
  padding: 0 0 70px;
}

.single-blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 980px) {

  .single-blog-layout,
  .single-blog-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .single-blog-hero {
    padding: 34px 0 24px;
  }

  .single-blog-image-row,
  .single-blog-share {
    grid-template-columns: 1fr;
  }
}

/* Services page */
.services-page {
  background: #f4f6fb;
}

.services-hero {
  padding: 54px 0 46px;
  background:radial-gradient(circle at 88% 12%, rgba(255, 122, 69, 0.16), transparent 30%),    linear-gradient(180deg, #fff 0%, #f7f8ff 100%);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: end;
}

.services-hero h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.services-hero p {
  max-width: 640px;
  color: #667085;
  line-height: 1.68;
}

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

.services-hero-card {
  overflow: hidden;
  border: 1px solid rgba(230, 233, 242, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 62px rgba(18, 20, 42, 0.09);
}

.services-hero-card img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  object-fit: cover;
}

.services-hero-card div {
  padding: 20px;
}

.services-hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #101423;
  font-size: 1.12rem;
  font-weight: 900;
}

.services-hero-card span {
  color: #667085;
  line-height: 1.6;
}

.services-overview-section {
  padding: 54px 0 26px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-block {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.052);
}

.service-block-main {
  grid-row: span 2;
  display: grid;
  align-content: center;
  background:
    linear-gradient(145deg, rgba(96, 59, 243, 0.08), transparent 40%),
    #fff;
}

.service-block img {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  object-fit: contain;
}

.service-block h2,
.service-block h3 {
  margin-bottom: 10px;
  line-height: 1.15;
}

.service-block h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.service-block h3 {
  font-size: 1.16rem;
}

.service-block p {
  color: #667085;
  line-height: 1.62;
}

.service-block a {
  display: inline-flex;
  margin-top: 14px;
  color: #7a1d0c;
  font-weight: 900;
}

.container.footer-bottom a:hover {
    color: #f7af3c !important;
}


.services-path-section {
  padding: 28px 0;
}

.services-path-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #7a1d0c, #f7af3c);
  color: #fff;
  box-shadow: 0 24px 62px #f7af3c12;
}

.services-path-panel h2,
.services-path-panel .eyebrow {
  color: #fff;
}

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

.services-path-grid article {
  display: grid;
  gap: 8px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.services-path-grid strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.services-path-grid span {
  color: #fff;
  font-weight: 900;
  line-height: 1.28;
}

.services-split-section {
  padding: 28px 0;
}

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

.services-split-grid article {
  padding: 26px;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 20, 42, 0.052);
}

.services-split-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #f7af3c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services-split-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.services-split-grid p,
.services-split-grid li {
  color: #667085;
  line-height: 1.64;
}

.services-split-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.services-cta-section {
  padding: 28px 0 70px;
}

.services-cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(230, 233, 242, 0.94);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(18, 20, 42, 0.06);
}

.services-cta-panel h2 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.services-cta-panel p {
  color: #667085;
  line-height: 1.6;
}

.service-block-icon img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(92%) contrast(87%);
}

/* .l-thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
} */

.l-thumb {
  width: 100%;
  height: 220px;
  background: #fff;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 15px;
}

.l-thumb img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  /* IMPORTANT */

  display: block;
}

.r-thumb {
  /* position: relative; */
	overflow: hidden;
	flex-shrink: 0;
	background-color: #f1f1f1;
	padding-left: 5px;
	padding-right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.r-thumb img {
	object-fit: contain;
	width: 150px;
	height: 150px;
}

.lr-thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* // verfied badge */
.l-badge {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-left: 20px;
  color: #fff;
}
.title-badge{
  display: flex;
}
.lr-badge {
  position: absolute;
  top: .35rem;
  right: .75rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
}

.lb-ver {
  background: rgba(5, 150, 105, .9);
  padding:10px 20px;
}

.lrb-ver {
  background: rgba(255, 85, 85, 0.9);
}

.listing-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  min-height: calc(1.6em * 2);
}

@media (max-width: 1080px) {

  .services-hero-grid,
  .services-path-panel {
    grid-template-columns: 1fr;
  }

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

  .service-block-main {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .hero-section {
    background-image: unset !important;
  }
}

@media (max-width: 760px) {

  .services-overview-grid,
  .services-path-grid,
  .services-split-grid {
    grid-template-columns: 1fr;
  }

  .services-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Gallery Photo Overlay */
.gallery-thumbs a,
.photo-grid a {
  position: relative;
  display: block;
  overflow: hidden;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 41, 75, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  pointer-events: none;
}

.photo-overlay svg {
  width: 30px;
  height: 30px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

a:hover .photo-overlay {
  opacity: 1;
}

a:hover .photo-overlay svg {
  transform: scale(1);
}

/* Business Profile Panel */
.business-profile-panel .bp-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.bp-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.bp-row:last-child {
  margin-bottom: 0;
}

.bp-row strong {
  color: var(--navy);
  font-weight: 700;
  min-width: 180px;
  margin-top: 4px;
}

.bp-primary-cat {
  color: var(--violet-2);
  font-weight: 600;
  margin-top: 4px;
}

.bp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bp-pill {
  padding: 6px 14px;
  background: #fcfcfc;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 6px;
}