/*
Theme Name: Local io pro
*/
:root {
  --ink: #1b2330;
  --muted: #657080;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --line: #ded5c5;
  --red: #b63f32;
  --teal: #087f8c;
  --green: #5d7c48;
  --gold: #d49a2a;
  --shadow: 0 24px 70px rgba(42, 31, 19, 0.15);
}
body{margin:0px;font-family: Inter, Arial, sans-serif;}
.brand-logo{display: block;width: 230px;height: auto;object-fit: contain;}

/* Hamburger button – hidden on desktop */
.nav-toggle{display: none;flex-direction: column;justify-content: center;gap: 5px;background: none;border: none;cursor: pointer;padding: 8px;z-index: 1001;margin-left: auto;}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* ===== Home ===== */

body.page-home * {
  box-sizing: border-box;
}

body.page-home {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body.page-home img {
  display: block;
  max-width: 100%;
}

body.page-home a,
a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

body.page-home .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

body.page-home .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

body.page-home .site-nav,
.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

body.page-home .header-action,
.header-action body.page-home .search-panel button,
.search-panel button {
  border: 0;
  background: var(--red);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

body.page-home .header-action,
.header-action {
  padding: 12px 16px;
}

body.page-home .hero {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 32px;
  padding: 130px clamp(18px, 5vw, 72px) 56px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

body.page-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

body.page-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

body.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96) 0%, rgba(247, 243, 234, 0.86) 45%, rgba(247, 243, 234, 0.18) 100%),
    repeating-linear-gradient(0deg, rgba(27, 35, 48, 0.05), rgba(27, 35, 48, 0.05) 1px, transparent 1px, transparent 38px);
}

body.page-home .hero-content {
  max-width: 860px;
}

body.page-home .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-home h1,
body.page-home h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  line-height: 0.96;
}

body.page-home h1 {
  max-width: 760px;
  font-size: clamp(64px, 12vw, 154px);
}

body.page-home h2 {
  font-size: clamp(36px, 6vw, 72px);
}

body.page-home .hero-copy {
  max-width: 640px;
  margin: 24px 0 28px;
  color: #384353;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

body.page-home .search-panel {
  display: grid;
  max-width: 900px;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto;
  gap: 0;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-home .search-field,
.search-field {
  display: grid;
  gap: 6px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
}

.search-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-home .search-field input,
body.page-home .search-field select,
.search-panel .search-field input,
.search-panel .search-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

body.page-home .search-panel button,
form.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 76px;
  padding: 0 26px;
  font-size: 15px;
}

body.page-home .search-panel svg,
.search-panel svg {
  width: 18px;
}

body.page-home .hero-board {
  display: grid;
  gap: 12px;
  align-self: center;
}

body.page-home .hero-board div {
  padding: 20px;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body.page-home .hero-board strong {
  display: block;
  font-family: Newsreader, Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

body.page-home .hero-board span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

body.page-home .section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

body.page-home .section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

body.page-home .section-heading.row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

body.page-home .category-grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

body.page-home .category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

body.page-home .category-card.tall {
  grid-row: span 2;
}

body.page-home .category-card.wide {
  grid-column: span 2;
}

body.page-home .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.5s ease;
}

body.page-home .category-card:hover img {
  transform: scale(1.05);
}

body.page-home .category-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-home .split-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 30px clamp(18px, 5vw, 72px) 100px;
}

body.page-home .story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: -14px 14px 0 var(--teal);
}

body.page-home .story-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

body.page-home .story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

body.page-home .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

body.page-home .text-link svg {
  width: 18px;
}

body.page-home .icon-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 clamp(18px, 5vw, 72px);
  border: 2px solid var(--ink);
  background: var(--surface);
}

body.page-home .icon-strip a {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 10px;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

body.page-home .icon-strip a:last-child {
  border-right: 0;
}

body.page-home .icon-strip svg {
  color: var(--green);
}

body.page-home .latest-listings {
  background: var(--ink);
  color: var(--surface);
}

body.page-home .latest-listings .eyebrow,
body.page-home .latest-listings .text-link {
  color: #f0b13c;
}

body.page-home .listing-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body.page-home .listing-card {
  background: #fffdf8;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.listing-card .viewmore {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    font-weight: 800;
    margin: 20px 0px 20px;
    background: var(--ink);
    max-width: 150px;
    color: var(--surface);
}

body.page-home .listing-card.offset {
  margin-top: 42px;
}

body.page-home .listing-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

body.page-home .listing-card div {
  padding: 22px;
}

body.page-home .listing-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  max-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 26px;
}

body.page-home .listing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

body.page-home .why-section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--surface);
}

body.page-home .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

body.page-home .why-grid div {
  min-height: 260px;
  padding: 32px;
  background: var(--surface);
}

body.page-home .why-grid svg {
  color: var(--red);
}

body.page-home .why-grid h3 {
  margin: 34px 0 10px;
  font-size: 24px;
}

body.page-home .why-grid p {
  color: var(--muted);
  line-height: 1.65;
}

body.page-home .testimonial {
  padding: clamp(70px, 3vw, 120px) clamp(18px, 8vw, 130px);
  background: var(--teal);
  color: white;
  overflow: hidden;
}

body.page-home .testi-slider-wrap {
  position: relative;
  max-width: 1000px;
}

body.page-home .testi-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

body.page-home .testi-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.page-home .testi-slide.active {
  opacity: 1;
}

body.page-home .testi-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

body.page-home .testimonial blockquote {
  max-width: 1000px;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(34px, 3vw, 72px);
  line-height: 1.05;
}

body.page-home .testimonial p {
  margin: 24px 0 0;
  font-weight: 800;
}

body.page-home .testi-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

body.page-home .testi-controls button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

body.page-home .testi-controls button:hover {
  background: white;
  color: var(--teal);
}

body.page-home .testi-dots {
  display: flex;
  gap: 8px;
}

body.page-home .testi-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s;
}

body.page-home .testi-dots span.active {
  background: white;
}

body.page-home .faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 42px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

body.page-home .faq-list {
  display: grid;
  gap: 12px;
}

body.page-home details {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
}

body.page-home summary {
  cursor: pointer;
  font-weight: 800;
}

body.page-home details p {
  color: var(--muted);
  line-height: 1.65;
}

body.page-home .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #151b25;
  color: white;
}
.site-footer nav a {
    padding-right: 10px;
}
body.page-home .site-footer p {
  margin: 12px 0 0;
  color: #c4cbd5;
}

body.page-home .site-footer nav {
  display: flex;
  gap: 18px;
  color: #e5e7eb;
  font-weight: 700;
}
.copyright{background: #151b25;border-top: 1px solid #c4cbd5;padding: 0px 0px 8px 0px;}
.copyright p{text-align: center;color:#c4cbd5;}
.soc-row {
  display: flex;
  gap: .5rem;
  margin-top: 20px;
}

.soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .07);
  border-radius: var(--r8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .83rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  transition: all var(--t);
}

@media (max-width: 980px) {
  body.page-home .hero,
  body.page-home .split-story,
  body.page-home .faq-section {
    grid-template-columns: 1fr;
  }

  body.page-home .hero-board {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-home .search-panel,
  body.page-home .listing-board,
  body.page-home .why-grid, .search-panel{
    grid-template-columns: 1fr;
  }

  body.page-home .search-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.page-home .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-home .category-card.wide {
    grid-column: span 2;
  }

  body.page-home .icon-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-home .listing-card.offset {
    margin-top: 0;
  }
}

@media (max-width: 640px) {

  body.page-home .header-action,
  .header-action {
    display: none;
  }

  body.page-home .hero {
    min-height: auto;
    padding-top: 92px;
  }

  body.page-home h1 {
    font-size: 62px;
  }

  body.page-home .hero-board,
  body.page-home .category-grid,
  body.page-home .icon-strip {
    grid-template-columns: 1fr;
  }

  body.page-home .category-card,
  body.page-home .category-card.tall,
  body.page-home .category-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }

  body.page-home .icon-strip a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.page-home .section-heading.row,
  body.page-home .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ===== Single Listing ===== */

body.page-single-listing * {
  box-sizing: border-box;
}

body.page-single-listing {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body.page-single-listing img {
  display: block;
  max-width: 100%;
}

.highlight-grid img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(17%) saturate(572%) hue-rotate(316deg) brightness(90%) contrast(87%);
}

body.page-single-listing a {
  text-decoration: none;
}

/*body.page-single-listing .site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(243, 239, 229, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

body.page-single-listing .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}*/

body.page-single-listing .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

/* body.page-single-listing .site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

body.page-single-listing .header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

body.page-single-listing .header-action svg {
  width: 17px;
} */

body.page-single-listing .listing-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.page-single-listing .listing-breadcrumbs strong {
  color: var(--copper);
}

body.page-single-listing .listing-hero {
  position: relative;
  /*min-height: 680px;*/
  /*padding: 320px clamp(18px, 5vw, 72px) 42px;*/
  padding: 40px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
}

body.page-single-listing .cover-photo {
  position: absolute;
  display: none;
  inset: 0;
  z-index: -2;
}

/*body.page-single-listing .cover-photo img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/
body.page-single-listing .listing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(25, 32, 38, 0.08) 0%, rgba(25, 32, 38, 0.55) 54%, rgba(25, 32, 38, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.09) 1px, transparent 1px, transparent 54px);
}

body.page-single-listing .hero-shell {
  display: grid;
  gap: 16px;
}

body.page-single-listing .identity-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1060px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.logo-wrap {
  width: 200px;
  height: 200px;
  display: flex;
}

body.page-single-listing .business-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  border: 4px solid white;
  box-shadow: 8px 8px 0 var(--gold);
}

body.page-single-listing .eyebrow,
body.page-single-listing .section-label {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-single-listing h1,
body.page-single-listing h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  line-height: 0.98;
}

body.page-single-listing h1 {
  font-size: clamp(48px, 8vw, 40px);
}

body.page-single-listing h2 {
  font-size: clamp(32px, 3vw, 56px);
}

body.page-single-listing .verified-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

body.page-single-listing .verified-line svg {
  width: 28px;
}

body.page-single-listing .category-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

body.page-single-listing .category-line span {
  color: var(--green);
}

body.page-single-listing .rating-row,
body.page-single-listing .action-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

body.page-single-listing .rating-row {
  margin-top: 16px;
}

body.page-single-listing .rating-row strong {
  font-size: 28px;
}

body.page-single-listing .stars, .score-card .stars{
  display: inline-flex;
  gap: 4px;
}

body.page-single-listing .stars i{
  /*width: 17px;*/
  /*height: 17px;*/
  /*background: var(--gold);*/
  clip-path: polygon(50% 0, 62% 34%, 98% 35%, 69% 56%, 79% 91%, 50% 70%, 21% 91%, 31% 56%, 2% 35%, 38% 34%);
}

body.page-single-listing .stars .partial{
  /*background: linear-gradient(90deg, var(--gold) 72%, #d7d7d7 72%);*/
}

body.page-single-listing .stars.large i{
  width: 25px;
  height: 25px;
}

.stars.large {
    display: inline-flex;
    gap: 3px;
}

.stars.large i {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 2px;
    background: #d7d7d7;
}

.stars.large i.full {
    background: #f4b400;
}

.stars.large i.partial {background: linear-gradient(
        to right,
        #f4b400 50%,
        #d7d7d7 50%
    );
}

.stars.large i.empty {
    background: #d7d7d7;
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.rating-row .stars i{
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 2px;
    background: #d7d7d7;
}
.score-card .stars i{
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 2px;
    background: #d7d7d7;
}

.rating-row .stars i.full, .score-card .stars i.full{
    background: #f4b400;
}

.rating-row .stars i.partial, .score-card .stars i.partial{
    background: linear-gradient(
        to right,
        #f4b400 50%,
        #d7d7d7 50%
    );
}

body.page-single-listing .action-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

body.page-single-listing .action-strip svg {
  width: 18px;
  color: var(--green);
}

body.page-single-listing .page-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  padding: 38px clamp(18px, 5vw, 72px) 90px;
}

body.page-single-listing .snapshot-panel {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--green);
}

body.page-single-listing .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
}

body.page-single-listing .status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 99, 91, 0.16);
}

body.page-single-listing .primary-cta,
body.page-single-listing .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-weight: 800;
}

body.page-single-listing .primary-cta {
  background: var(--copper);
  border: 1px solid var(--line);

}

body.page-single-listing .secondary-cta {
  border: 1px solid var(--line);
}

body.page-single-listing .snap-block {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

body.page-single-listing .snap-block h2 {
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

body.page-single-listing .snap-block p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

body.page-single-listing .social-links,
body.page-single-listing .share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

body.page-single-listing .social-links a,
body.page-single-listing .share-buttons a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #f7f1e7;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

body.page-single-listing .social-links svg,
body.page-single-listing .share-buttons svg {
  width: 18px;
  color: var(--green);
}

body.page-single-listing .utility-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.page-single-listing .utility-actions h2 {
  grid-column: 1 / -1;
}

body.page-single-listing .utility-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

body.page-single-listing .utility-actions svg {
  width: 15px;
  color: var(--copper);
}

body.page-single-listing .content-flow {
  display: grid;
  gap: 24px;
}



body.page-single-listing .profile-section,
body.page-single-listing .offer-band {
  background: var(--surface);
  /* border: 1px solid var(--line); */
  padding: clamp(24px, 4vw, 38px);
}

body.page-single-listing .fact-ledger {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0;
  background: none;
}

body.page-single-listing .ledger-card {
  padding: clamp(22px, 3vw, 32px);
  background: var(--surface);
  border: 1px solid var(--line);
}

body.page-single-listing .ledger-card dl {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
}

body.page-single-listing .ledger-card dl div {
  display: flex;
  justify-content: start;
  gap: 18px;
  padding: 13px 14px;
  background: var(--surface);
}
body.page-single-listing .ledger-card.company-info dl{
    display: grid;
  gap: 1px;
  margin: 18px 0 0;
  background: var(--surface);
  border: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

body.page-single-listing .ledger-card dt {
  color: var(--muted);
  font-weight: 800;
}

body.page-single-listing .ledger-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

body.page-single-listing .ledger-card p {
  color: var(--muted);
  font-weight: 800;
}

body.page-single-listing .tag-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
  padding: 0px !important;
  justify-content: flex-start !important;
}

body.page-single-listing .tag-row span,
body.page-single-listing .category-link-grid a {
  padding: 4px 9px;
  background: #f7f1e7;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}
.sub-cat{flex-direction: column; align-items: flex-start; gap: 8px;}

/* ── Established & Years in Business Badges ── */
body.page-single-listing .trust-wall{border: 1px solid var(--line); }
body.page-single-listing .yib-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0px;
}

body.page-single-listing .yib-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(42, 31, 19, 0.04);
}

body.page-single-listing .yib-badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
  flex-shrink: 0;
}

body.page-single-listing .yib-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

body.page-single-listing .yib-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

body.page-single-listing .yib-text {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.page-single-listing .intro-report p {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

body.page-single-listing .highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

body.page-single-listing .highlight-grid span,
body.page-single-listing .attribute-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  background: #f7f1e7;
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-listing .highlight-grid svg,
body.page-single-listing .attribute-cloud svg {
  width: 18px;
  color: var(--green);
}

body.page-single-listing .section-heading,
body.page-single-listing .review-summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

body.page-single-listing .section-heading a {
  color: var(--blue);
  font-weight: 800;
}

body.page-single-listing .media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*grid-auto-rows: 240px;*/
  gap: 14px;
}

body.page-single-listing .media-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

body.page-single-listing .media-card.large {
  grid-row: span 2;
}

body.page-single-listing .media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

body.page-single-listing .media-card figcaption {
  position: absolute;
  display: none !important;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: var(--surface);
  font-weight: 800;
}

body.page-single-listing .offer-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0;
  background: var(--line);
}

body.page-single-listing .offer-band article {
  padding: 28px;
  background: #fff7e4;
}

body.page-single-listing .offer-band span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-single-listing .offer-band h2 {
  margin-top: 8px;
  font-size: clamp(26px, 3vw, 38px);
}

body.page-single-listing .offer-band p {
  color: var(--muted);
  line-height: 1.6;
}

body.page-single-listing .attribute-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body.page-single-listing .tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

body.page-single-listing .tab-list button {
  border: 1px solid var(--line);
  background: #f7f1e7;
  color: var(--ink);
  padding: 10px 13px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

body.page-single-listing .tab-list .active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

body.page-single-listing .tab-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

body.page-single-listing .tab-panel div {
  display: grid;
  gap: 12px;
  min-height: 128px;
  align-content: start;
  padding: 16px;
  background: #f7f1e7;
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-listing .tab-panel svg {
  color: var(--copper);
}

body.page-single-listing .location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40%;
  gap: 18px;
}

body.page-single-listing .map-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

body.page-single-listing .map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-single-listing .map-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  padding: 16px;
  background: var(--surface);display:none;
}

body.page-single-listing .map-link {
  color: var(--blue);
  font-weight: 900;
}

body.page-single-listing .embedded-map iframe {
  width: 100%;
  height: 360px;
  border: 1px solid var(--line);
  background: #f7f1e7;
}

body.page-single-listing .hours-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
}

body.page-single-listing .hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

body.page-single-listing .hours-card div:last-child {
  border-bottom: 0;
}

body.page-single-listing .hours-card span {
  color: var(--muted);
  font-weight: 800;
}

body.page-single-listing .credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

body.page-single-listing .credential-grid div {
  display: grid;
  gap: 10px;
  min-height: 130px;
  padding: 20px;
  background: var(--surface);
}

body.page-single-listing .credential-grid small {
  color: var(--copper);
  font-weight: 800;
  text-transform: uppercase;
}

body.page-single-listing .credential-grid strong {
  font-size: 20px;
}

body.page-single-listing .review-summary p {
  margin: 10px 0 0;
  color: var(--muted);
}

body.page-single-listing .review-dashboard {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

body.page-single-listing .score-card {
  display: grid;
  gap: 5px;
  align-content: center;
  justify-items: center;
  padding: 20px;
  background: #fff7e4;
  border: 1px solid var(--line);
}

body.page-single-listing .score-card strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 68px;
  line-height: 0.9;
}

body.page-single-listing .score-card a {
  margin-top: 6px;
  padding: 10px 12px;
  background: var(--copper);
  color: var(--ink);
  font-weight: 900;
}

body.page-single-listing .rating-bars {
  display: grid;
  gap: 9px;
  padding: 20px;
  background: #f7f1e7;
  border: 1px solid var(--line);
}

body.page-single-listing .rating-bars div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.page-single-listing .rating-bars b {
  height: 9px;
  overflow: hidden;
  background: var(--line);
}

body.page-single-listing .rating-bars i {
  display: block;
  height: 100%;
  background: var(--gold);
}

body.page-single-listing .rating-bars em {
  font-style: normal;
  text-align: right;
}

body.page-single-listing .review-list {
  display: grid;
  gap: 12px;
}

body.page-single-listing .review-list article {
  padding: 20px;
  background: #f7f1e7;
  border: 1px solid var(--line);
}

body.page-single-listing .review-list article div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
}

body.page-single-listing .review-list span {
  color: var(--muted);
}

body.page-single-listing .review-list p,
body.page-single-listing details p {
  color: var(--muted);
  line-height: 1.65;
}

body.page-single-listing .faq-details {
  display: grid;
  gap: 12px;
}

body.page-single-listing details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

body.page-single-listing summary {
  cursor: pointer;
  font-weight: 800;
}

body.page-single-listing .category-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

body.page-single-listing .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

body.page-single-listing .site-footer p {
  margin: 0;
  color: #d1d7da;
}

@media (max-width: 1040px) {

  body.page-single-listing .page-grid,
  body.page-single-listing .location-grid {
    grid-template-columns: 1fr;
  }

  body.page-single-listing .tab-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-single-listing .snapshot-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  body.page-single-listing .header-action {
    display: none;
  }

  body.page-single-listing .listing-hero {
    min-height: auto;
    padding-top: 230px;
  }

  body.page-single-listing .identity-card,
  body.page-single-listing .fact-ledger,
  body.page-single-listing .highlight-grid,
  body.page-single-listing .media-grid,
  body.page-single-listing .offer-band,
  body.page-single-listing .credential-grid,
  body.page-single-listing .review-dashboard {
    grid-template-columns: 1fr;
  }

  body.page-single-listing .business-logo {
    width: 92px;
    height: 92px;
  }

  body.page-single-listing .media-card.large {
    grid-row: auto;
  }

  body.page-single-listing .section-heading,
  body.page-single-listing .review-summary,
  body.page-single-listing .review-list article div,
  body.page-single-listing .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body.page-single-listing .identity-card {
    padding: 16px;
  }

  body.page-single-listing h1 {
    font-size: 44px;
  }

  body.page-single-listing .action-strip a {
    width: 100%;
  }

  body.page-single-listing .tab-panel {
    grid-template-columns: 1fr;
  }

  body.page-single-listing .utility-actions {
    grid-template-columns: 1fr;
  }
}


/* ===== All Categories ===== */

body.page-all-categories * {
  box-sizing: border-box;
}

body.page-all-categories {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body.page-all-categories img {
  display: block;
  max-width: 100%;
}

/* body.page-all-categories a {
  color: inherit;
  text-decoration: none;
} */

/* body.page-all-categories .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
} */

body.page-all-categories .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

body.page-all-categories .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

/* body.page-all-categories .site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
} */

body.page-all-categories .site-nav a[aria-current="page"] {
  color: var(--red);
}

/* body.page-all-categories .header-action,
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

body.page-all-categories .header-action svg,
.header-action svg {
  width: 17px;
} */

body.page-all-categories .categories-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(86px, 12vw, 70px) clamp(18px, 5vw, 72px) 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.94), rgba(247, 243, 234, 0.74)),
    url("assets/images/photo-1500530855697-b586d89ba3ee-w1800.jpg") center/cover;
}

body.page-all-categories .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-all-categories h1,
body.page-all-categories h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  line-height: 0.98;
}

body.page-all-categories h1 {
  max-width: 900px;
  font-size: clamp(62px, 10vw, 90px);
}

body.page-all-categories h2 {
  font-size: clamp(28px, 4vw, 52px);
}

body.page-all-categories .hero-copy p:not(.eyebrow) {
  max-width: 730px;
  color: #384353;
  font-size: 19px;
  line-height: 1.65;
}

body.page-all-categories .hero-card {
  padding: 26px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-all-categories .hero-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-all-categories .hero-card strong {
  display: block;
  margin: 8px 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 96px;
  line-height: 0.9;
}

body.page-all-categories .hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

body.page-all-categories .category-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

body.page-all-categories .tool-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

body.page-all-categories .tool-copy svg {
  color: var(--teal);
}

body.page-all-categories .category-filter {
  display: flex;
  min-width: min(520px, 100%);
  border: 2px solid var(--ink);
  background: var(--paper);
}

body.page-all-categories .category-filter label {
  display: grid;
  flex: 1;
  gap: 5px;
  padding: 12px 14px;
}

body.page-all-categories .category-filter label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-all-categories .category-filter input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

body.page-all-categories .category-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 124px;
  border: 0;
  background: var(--teal);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

body.page-all-categories .category-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
  padding: clamp(34px, 5vw, 72px);
}

body.page-all-categories .category-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 220px;
  padding: 18px;
  background: var(--ink);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow);
}

body.page-all-categories .category-tile.feature {
  grid-column: span 2;
  grid-row: span 2;
}

body.page-all-categories .category-tile.tall {
  grid-row: span 2;
}

body.page-all-categories .category-tile.wide {
  grid-column: span 2;
}

body.page-all-categories .category-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 0.5s ease;
}

body.page-all-categories .category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(25, 32, 38, 0.86) 100%);
}

body.page-all-categories .category-tile:hover img {
  transform: scale(1.05);
}

body.page-all-categories .category-tile div {
  position: relative;
  z-index: 2;
}

body.page-all-categories .category-tile span {
  display: inline-block;
  margin-bottom: 9px;
  color: #ffd37a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-all-categories .category-tile h2 {
  font-size: clamp(26px, 2vw, 42px);
}

body.page-all-categories .category-tile p {
  max-width: 460px;
  margin: 10px 0 0;
  color: #f0eee8;
  line-height: 1.55;
}

body.page-all-categories .category-tile.compact {
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  color: var(--ink);
}

body.page-all-categories .category-tile.compact::after {
  display: none;
}

body.page-all-categories .category-tile.compact svg {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  padding: 12px;
  background: var(--teal);
  color: white;
}

body.page-all-categories .category-tile.compact.green svg {
  background: var(--green);
}

body.page-all-categories .category-tile.compact.copper svg {
  background: var(--red);
}

body.page-all-categories .category-tile.compact.blue svg {
  background: var(--blue);
}

body.page-all-categories .category-tile.compact span {
  color: var(--red);
}

body.page-all-categories .category-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  padding: clamp(28px, 4vw, 44px);
  background: var(--teal);
  color: white;
}

body.page-all-categories .category-note .eyebrow {
  color: #ffd37a;
}

body.page-all-categories .category-note p:last-child {
  color: #e8fbf8;
  font-size: 18px;
  line-height: 1.65;
}

body.page-all-categories .site-footer, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

body.page-all-categories .site-footer p, .site-footer p {
  margin: 0;
  color: #d1d7da;
}

@media (max-width: 1040px) {

  body.page-all-categories .categories-hero,
  body.page-all-categories .category-note {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  body.page-all-categories .header-action {
    display: none;
  }

  body.page-all-categories .category-tools,
  body.page-all-categories .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-all-categories .category-filter {
    width: 100%;
  }

  body.page-all-categories .category-directory {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  body.page-all-categories .category-tile,
  body.page-all-categories .category-tile.feature,
  body.page-all-categories .category-tile.tall,
  body.page-all-categories .category-tile.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  body.page-all-categories .category-tile.compact {
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  body.page-all-categories h1 {
    font-size: 50px;
  }

  body.page-all-categories .category-filter {
    display: grid;
  }

  body.page-all-categories .category-filter button {
    min-height: 48px;
  }
}


/* ===== Single Category ===== */

body.page-single-category * {
  box-sizing: border-box;
}

body.page-single-category {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body.page-single-category img {
  display: block;
  max-width: 100%;
}

body.page-single-category a {
  color: inherit;
  text-decoration: none;
}

body.page-single-category .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

body.page-single-category .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

body.page-single-category .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

body.page-single-category .site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

body.page-single-category .header-action,
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

body.page-single-category .header-action svg,
.header-action svg {
  width: 17px;
}

body.page-single-category .category-hero {
  position: relative;
  /*min-height: 620px;*/
  display: grid;
  align-items: end;
  padding: 60px clamp(18px, 5vw, 72px) 50px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

body.page-single-category .hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

body.page-single-category .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-single-category .category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96) 0%, rgba(247, 243, 234, 0.88) 48%, rgba(247, 243, 234, 0.1) 100%),
    repeating-linear-gradient(0deg, rgba(27, 35, 48, 0.05), rgba(27, 35, 48, 0.05) 1px, transparent 1px, transparent 38px);
}

body.page-single-category .hero-content {
  max-width: 880px;
}

body.page-single-category .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.page-single-category .breadcrumbs strong {
  color: var(--red);
}

.page-breadcrumb svg {
  width: 18px;
}

.page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.page-single-category .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-single-category h1,
body.page-single-category h2,
body.page-single-category h3 {
  margin: 0;
}

body.page-single-category h1,
body.page-single-category h2 {
  font-family: Newsreader, Georgia, serif;
  line-height: 0.98;
}

body.page-single-category h1 {
  font-size: clamp(62px, 10vw, 90px);
}

body.page-single-category h2 {
  font-size: clamp(30px, 4vw, 54px);
}

body.page-single-category .hero-content>p {
  max-width: 720px;
  color: #384353;
  font-size: 20px;
  line-height: 1.65;
}

body.page-single-category .category-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.page-single-category .category-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-category .category-stats strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 32px;
  line-height: 1;
}

body.page-single-category .category-search-panel {
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

body.page-single-category .category-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto;
  max-width: 1060px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--gold);
}

body.page-single-category .category-search label {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

body.page-single-category .category-search label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-single-category .category-search input,
body.page-single-category .category-search select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

body.page-single-category .category-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 74px;
  padding: 0 28px;
  border: 0;
  background: var(--teal);
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.container-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.container-layout .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 80px 0px;
    gap: 30px;
}
.listings-grid .l-title {
    font-size:28px;
    font-weight: 700;
    color: var(--navy);
    margin: .3rem 0;
    transition: color var(--t);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listings-grid .content{font-size:1rem;color:var(--muted);line-height:1.65;margin-bottom:auto;}
.listings-grid .l-cat {
    font-size: .7rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .07em;
}
.listings-grid .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

body.page-single-category .category-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(38px, 5vw, 72px);
}

body.page-single-category .filter-rail {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
}

body.page-single-category .filter-card {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

body.page-single-category .filter-card h2 {
  margin-bottom: 10px;
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

body.page-single-category .filter-card a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-category .filter-card svg {
  width: 17px;
  color: var(--green);
}

body.page-single-category .results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

body.page-single-category .results-heading>p {
  color: var(--muted);
  font-weight: 800;
}

body.page-single-category .listing-list {
  display: grid;
  gap: 16px;
}

body.page-single-category .listing-result {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: stretch;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(42, 31, 19, 0.08);
}

body.page-single-category .listing-result.featured {
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
}

body.page-single-category .listing-result img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: contain;
  border: 1px solid #f6f6f6;
}

body.page-single-category .listing-body {
  padding: 6px 0;
}

body.page-single-category .result-topline,
body.page-single-category .meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

body.page-single-category .result-topline span:first-child {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-single-category .rating {
  padding: 5px 8px;
  background: #fff0c9;
  color: #7a4c00;
  font-size: 12px;
  font-weight: 800;
}

body.page-single-category .listing-body h3 {
  margin-top: 10px;
  font-size: 26px;
}

body.page-single-category .listing-body p {
  color: var(--muted);
  line-height: 1.6;
}

body.page-single-category .meta-row {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

body.page-single-category .meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.page-single-category .meta-row svg {
  width: 16px;
  color: var(--green);
}

body.page-single-category .listing-actions {
  display: grid;
  align-content: center;
  gap: 10px;
}

body.page-single-category .listing-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-category .listing-actions a:first-child {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

body.page-single-category .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

body.page-single-category .pagination a {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
}

body.page-single-category .pagination a[aria-current="page"] {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

body.page-single-category .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

body.page-single-category .site-footer p {
  margin: 0;
  color: #d1d7da;
}

@media (max-width: 1080px) {
  body.page-single-category .site-nav {
    display: none;
  }

  body.page-single-category .category-layout {
    grid-template-columns: 1fr;
  }

  body.page-single-category .filter-rail {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body.page-single-category .header-action {
    display: none;
  }

  body.page-single-category .category-search {
    grid-template-columns: 1fr;
  }

  body.page-single-category .category-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  body.page-single-category .listing-result {
    grid-template-columns: 1fr;
  }

  body.page-single-category .listing-result img {
    aspect-ratio: 1.55;
  }

  body.page-single-category .listing-actions {
    grid-template-columns: 1fr 1fr;
  }

  body.page-single-category .results-heading,
  body.page-single-category .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body.page-single-category h1 {
    font-size: 56px;
  }

  body.page-single-category .category-hero {
    min-height: auto;
    padding-top: 94px;
  }

  body.page-single-category .filter-rail {
    grid-template-columns: 1fr;
  }

  body.page-single-category .listing-actions {
    grid-template-columns: 1fr;
  }
}


/* ===== Services ===== */

body.page-services * {
  box-sizing: border-box;
}

body.page-services {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

body.page-services img {
  display: block;
  max-width: 100%;
}

body.page-services a {
  text-decoration: none;
}

/* body.page-services .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
} */

body.page-services .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

body.page-services .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

/*body.page-services .site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}*/

body.page-services .site-nav a[aria-current="page"] {
  color: var(--red);
}

/* body.page-services .header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

body.page-services .header-action svg {
  width: 17px;
} */

body.page-services .services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96), rgba(247, 243, 234, 0.76)),
    url("assets/images/photo-1516321318423-f06f85e504b3-w1800.jpg") center/cover;
  border-bottom: 1px solid var(--line);
}

.video-section {
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.video-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 20px;
}

body.page-services .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-services h1,
body.page-services h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  line-height: 0.98;
}

body.page-services h1 {
  max-width: 950px;
  font-size: clamp(54px, 5vw, 118px);
}

body.page-services h2 {
  font-size: clamp(34px, 5vw, 64px);
}

body.page-services .hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #384353;
  font-size: 19px;
  line-height: 1.65;
}

body.page-services .hero-ticket {
  padding: 26px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-services .hero-ticket span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-services .hero-ticket strong {
  display: block;
  margin: 8px 0;
  font-family: Newsreader, Georgia, serif;
  font-size: 92px;
  line-height: 0.9;
}

body.page-services .hero-ticket p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

body.page-services .story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(60px, 8vw, 105px) clamp(18px, 5vw, 72px) 30px;
}

body.page-services .story-image {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: -14px 14px 0 var(--teal);
}

body.page-services .story-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

body.page-services .story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

body.page-services .service-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 14px;
  padding: clamp(34px, 5vw, 72px);
}

body.page-services .service-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 170px;
  padding: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(42, 31, 19, 0.08);
}

body.page-services .service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(8, 127, 140, 0.32);
  transform: rotate(12deg);
}

body.page-services .service-card.large {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-services .service-card.wide {
  grid-column: span 2;
}

body.page-services .service-card.tall {
  grid-row: span 2;
  background: #fff7e4;
}

body.page-services .service-card.green {
  background: var(--green);
  color: white;
}

body.page-services .service-card svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  color: var(--teal);
}

body.page-services .service-card.large svg,
body.page-services .service-card.green svg {
  color: var(--gold);
}

body.page-services .service-card span {
  position: relative;
  z-index: 1;
  max-width: 520px;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.12;
}

body.page-services .service-card.large span {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
}

body.page-services .faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 42px;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--surface);
}

body.page-services .section-heading {
  max-width: 660px;
}

body.page-services .faq-list {
  display: grid;
  gap: 12px;
}

body.page-services details {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
}

body.page-services summary {
  cursor: pointer;
  font-weight: 800;
}

body.page-services details p {
  color: var(--muted);
  line-height: 1.65;
}

body.page-services .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

body.page-services .site-footer p {
  margin: 0;
  color: #d1d7da;
}

@media (max-width: 1060px) {

  body.page-services .services-hero,
  body.page-services .story-panel,
  body.page-services .faq-section {
    grid-template-columns: 1fr;
  }

  body.page-services .service-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body.page-services .header-action {
    display: none;
  }

  body.page-services .service-board {
    grid-template-columns: 1fr;
  }

  body.page-services .service-card,
  body.page-services .service-card.large,
  body.page-services .service-card.wide,
  body.page-services .service-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 150px;
  }

  body.page-services .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body.page-services h1 {
    font-size: 50px;
  }

  body.page-services .service-card.large span {
    font-size: 42px;
  }
}


/* ===== Contact ===== */

body.page-contact * {
  box-sizing: border-box;
}

body.page-contact {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

/* body.page-contact a {
  color: inherit;
  text-decoration: none;
} */

/* body.page-contact .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
} */

body.page-contact .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

body.page-contact .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--surface);
  border: 2px solid var(--gold);
  font-size: 13px;
}

/* body.page-contact .site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

body.page-contact .site-nav a[aria-current="page"] {
  color: var(--red);
} */

/* body.page-contact .header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  font-weight: 800;
}

body.page-contact .header-action svg {
  width: 17px;
} */

body.page-contact .contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.96), rgba(247, 243, 234, 0.78)),
    url("assets/images/photo-1497366811353-6870744d04b2-w1800.jpg") center/cover;
  border-bottom: 1px solid var(--line);
}

body.page-contact .eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.page-contact h1,
body.page-contact h2 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  line-height: 0.98;
}

body.page-contact h1 {
  max-width: 980px;
  font-size: clamp(54px, 5vw, 118px);
}

body.page-contact h2 {
  font-size: clamp(32px, 2vw, 56px);
}

body.page-contact .hero-copy p:not(.eyebrow) {
  max-width: 730px;
  color: #384353;
  font-size: 19px;
  line-height: 1.65;
}

body.page-contact .hero-note {
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-contact .hero-note svg {
  color: var(--teal);
}

body.page-contact .hero-note strong {
  font-size: 24px;
}

body.page-contact .hero-note span {
  color: var(--muted);
  line-height: 1.55;
}

body.page-contact .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

body.page-contact .contact-card,
body.page-contact .aside-card,
body.page-contact .support-strip article {
  background: var(--surface);
  border: 1px solid var(--line);
}

body.page-contact .contact-card {
  padding: clamp(24px, 4vw, 42px);
}

body.page-contact .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

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

body.page-contact .contact-form .full {
  grid-column: 1 / -1;
}

body.page-contact .contact-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-contact .contact-form input,
body.page-contact .contact-form select,
body.page-contact .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f7f1e7;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 14px;
  outline: 0;
}

body.page-contact .contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

body.page-contact .contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 0;
  background: var(--red);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

body.page-contact .contact-form button svg {
  width: 17px;
}

body.page-contact .contact-aside {
  display: grid;
  gap: 14px;
}

body.page-contact .aside-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

body.page-contact .aside-card.primary {
  background: var(--ink);
  color: white;
  box-shadow: 10px 10px 0 var(--gold);
}

body.page-contact .aside-card.primary span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-contact .aside-card.primary p,
body.page-contact .aside-card p {
  color: var(--muted);
  line-height: 1.6;
}

body.page-contact .aside-card.primary p {
  color: #d6dde1;
}

body.page-contact .aside-card svg {
  color: var(--teal);
}

body.page-contact .aside-card strong {
  font-size: 20px;
}

body.page-contact .aside-card a {
  color: var(--blue);
  font-weight: 800;
}

body.page-contact .support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  background: var(--line);
  border: 1px solid var(--line);
}

body.page-contact .support-strip article {
  min-height: 230px;
  padding: 26px;
}

body.page-contact .support-strip svg {
  color: var(--green);
}

body.page-contact .support-strip h2 {
  margin-top: 28px;
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
}

body.page-contact .support-strip p {
  color: var(--muted);
  line-height: 1.65;
}

body.page-contact .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

body.page-contact .site-footer p {
  margin: 0;
  color: #d1d7da;
}

@media (max-width: 980px) {

  body.page-contact .contact-hero,
  body.page-contact .contact-layout {
    grid-template-columns: 1fr;
  }

  body.page-contact .support-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.page-contact .header-action {
    display: none;
  }

  body.page-contact .contact-form {
    grid-template-columns: 1fr;
  }

  body.page-contact .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body.page-contact h1 {
    font-size: 50px;
  }
}



/* SITEMAP PAGE
   ============================================================ */
/*.sitemap-section{padding-block:3rem 5rem}*/
.sitemap-section .container{padding:clamp(70px, 3vw, 120px) clamp(18px, 5vw, 72px);}

/* Alpha index */
.sm-alpha{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:2.5rem;background:#fff;border:1px solid var(--border);border-radius:var(--r12);padding:1rem 1.25rem;box-shadow:var(--shadow-sm)}
.sm-alpha-btn{width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:var(--r8);font-weight:700;font-size:.82rem;color:var(--navy);background:var(--paper);transition:all var(--t);text-decoration:none}
.sm-alpha-btn:hover{background:var(--ink);color:#fff}

/* Layout */
.sitemap-layout{display:grid;grid-template-columns:1fr;gap:2rem;align-items:start}

/* Shared block styles */
.sm-block{background:#fff;border:1px solid var(--border);border-radius:var(--r16);padding:1.75rem;box-shadow:var(--shadow-sm)}
.sm-block-head,.sm-cats-header{display:flex;align-items:center;gap:1rem;margin-bottom:1.5rem;flex-wrap:wrap}
.sm-block-icon{width:44px;height:44px;background:var(--paper);border-radius:var(--r8);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.sm-block-icon svg{width:20px;height:20px;stroke:var(--teal)}
.sm-block-title{font-family:'Playfair Display',serif;font-size:1.15rem;color:var(--navy);font-weight:700;line-height:1.1}
.sm-block-count{display:block;font-size:.75rem;color:var(--muted);font-weight:500;margin-top:.15rem}
.sm-view-all{margin-left:auto;font-size:.82rem;font-weight:600;color:var(--orange);transition:gap var(--t)}
.sm-view-all:hover{text-decoration:underline}

/* Pages list */
.sm-list{display:flex;flex-direction:column;gap:.3rem;padding:0px;}
.sm-list li{list-style:none;}
.sm-list li a{display:flex;align-items:center;gap:.6rem;padding:.5rem .6rem .5rem 0rem;border-radius:var(--r8);font-size:.9rem;color:var(--text);font-weight:500;transition:all var(--t);}
.sm-list li a:hover{background:var(--orange-lt);color:var(--orange)}
.sm-list li a svg{width:14px;height:14px;flex-shrink:0;stroke:var(--muted);transition:stroke var(--t)}
.sm-list li a:hover svg{stroke:var(--muted);}

/* Category groups */
.sm-cats-wrap{display:flex;flex-direction:column;gap:1.5rem}
.sm-cats-header{background:#fff;border:1px solid var(--border);border-radius:var(--r16);padding:1.25rem 1.75rem;box-shadow:var(--shadow-sm)}
.sm-group{background:#fff;border:1px solid var(--border);border-radius:var(--r12);overflow:hidden;box-shadow:var(--shadow-sm)}
.sm-group-letter{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:900;color:#fff;background:#032147;padding:.6rem 1.25rem;letter-spacing:.04em}
.sm-cat-list{display:grid;grid-template-columns:1fr;padding:.5rem}
.sm-cat-list li{list-style:none;}
.sm-cat-list li a{display:flex;align-items:center;gap:.6rem;padding:.55rem .75rem;border-radius:var(--r8);font-size:.88rem;color:var(--text);font-weight:500;transition:all var(--t)}
.sm-cat-list li a:hover{background:var(--paper);color:var(--ink)}
.sm-cat-list li a svg{width:13px;height:13px;flex-shrink:0;stroke:var(--ink);transition:stroke var(--t)}
.sm-cat-list li a:hover svg{stroke:var(--ink)}
.sm-cat-name{flex:1}
.sm-cat-count{font-size:.90rem;font-weight:600;color:var(--surface);background:var(--gold);border-radius:999px;padding:.1rem .4rem}
.sm-cat-list li a:hover .sm-cat-count{background:var(--gold);color:var(--surface)}

@media(min-width:560px){
  .sm-cat-list{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:900px){
  .sitemap-layout{grid-template-columns:260px 1fr}
  .sm-block{position:sticky;top:88px}
  .sm-cat-list{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1100px){
  .sm-cat-list{grid-template-columns:repeat(3,1fr)}
}

/* ===== 404 Error Page ===== */

.error-404-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  padding: 60px clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.error-404-inner {
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.error-404-eyebrow {
  display: inline-block;
  margin: 0 0 24px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--red);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.error-404-num {
  margin: 0 0 12px;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 700;
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -4px;
}

.error-404-title {
  margin: 0 0 16px;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.error-404-desc {
  margin: 0 auto 36px;
  max-width: 480px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.error-404-search {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 36px;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
}

.error-404-search label {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.error-404-search label span {
  display: none;
}

.error-404-search input {
  flex: 1;
  padding: 14px 16px;
  border: 0;
  background: var(--surface);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  outline: none;
  color: var(--ink);
}

.error-404-search button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--red);
  border: 0;
  color: white;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.error-404-search button svg,
.error-404-search button i {
  width: 16px;
  height: 16px;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--ink);
  cursor: pointer;
}

.error-404-btn svg,
.error-404-btn i {
  width: 16px;
  height: 16px;
}

.error-404-btn.primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 4px 4px 0 var(--green);
}

.error-404-btn.secondary {
  background: var(--surface);
  color: var(--ink);
}

.error-404-cats {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.error-404-cats>p {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.error-404-cat-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.error-404-cat-links a {
  padding: 9px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--green);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.error-404-cat-links a:hover {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

@media (max-width: 500px) {
  .error-404-search {
    flex-direction: column;
    box-shadow: 4px 4px 0 var(--gold);
  }

  .error-404-search button {
    justify-content: center;
  }

  .error-404-btn {
    width: 100%;
    justify-content: center;
  }
}


.search-panel {
  display: grid;
  max-width: 900px;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 260px) auto;
  gap: 0;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--gold);
}


@media (max-width: 768px) {
  /* ── Header shell ─────────────────────────────────────────────
         overflow: visible is CRITICAL on iOS — without it Safari clips
         the dropdown inside the header bounding box.               */
      .site-header {
        position: relative;
        flex-wrap: wrap;
        gap: 0;
        padding: 0 1rem;
        overflow: visible !important;
        -webkit-overflow-scrolling: touch;
      }
 
      .brand {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0.75rem 0;
      }
 
      /* Hamburger – show on mobile with proper 44px tap target */
      .nav-toggle {
        display: -webkit-flex;
        display: flex;
        order: 2;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0.25rem;
      }
 
      /* Desktop CTA hidden – lives inside mobile nav instead */
      .header-action {
        display: none;
      }
 
      /* ── Dropdown nav ─────────────────────────────────────────────
         position: absolute lets it escape flex-row clipping on iOS.
         z-index: 9999 keeps it above all page content.
         background-color: #fff ensures it is visible (not transparent).  */
      .site-nav{
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        -webkit-flex-direction: column;
                flex-direction: column;
        align-items: flex-start;
        gap: 0 !important;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height 0.35s ease;
                transition: max-height 0.35s ease;
        background-color: #fff;
        background: inherit;
        z-index: 9999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        padding: 0 1rem;
        border-top: 1px solid transparent;
        -webkit-overflow-scrolling: touch;
      }
 
      .site-nav.is-open {
        max-height: 500px;
        padding: 0.5rem 1rem 1.25rem;
        border-top-color: rgba(0,0,0,0.08);
      }
 
      .site-nav a {
        display: block;
        width: 100%;
        padding: 0.0rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        font-size: 1rem;
        min-height: 44px;
        line-height: 44px;
        box-sizing: border-box;
        text-align:center;
        -webkit-tap-highlight-color: rgba(0,0,0,0.05);
      }
      .site-nav a:last-child {
        border-bottom: none;
      }
 
      .site-nav .mobile-cta {
        display: inline-block;
        margin-top: 0.5rem;
        width: auto;
        line-height: normal;
        min-height: 44px;
        border-bottom: none;
      }
      .site-footer nav a{display:block; padding: 6px 0px;}
}


@media (max-width: 980px) {
    .search-panel{grid-template-columns: 1fr !important;max-width:unset;}
    .search-field{border-right: 0;border-bottom: 1px solid var(--line);}
    
}




