@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #111418;
  --bg-soft: #1a1f24;
  --surface: #ffffff;
  --surface-alt: #fbf8f1;
  --text: #1c1c1c;
  --text-soft: #5f5a52;
  --line: #e7ddc8;
  --primary: #d4a017;
  --primary-dark: #b8860b;
  --accent: #d4a017;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 14px 34px rgba(17, 20, 24, 0.06);
  --container: 1180px;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fcfaf6;
}

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

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

code {
  padding: 0.2rem 0.4rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--bg);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.topbar-shell {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  min-height: 48px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: white;
  font-weight: 700;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-button {
  min-width: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-button.is-active {
  background: var(--primary);
  color: #101827;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 221, 200, 0.9);
  box-shadow: 0 8px 24px rgba(17, 20, 24, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.brand-logo {
  display: block;
  width: min(100%, 255px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav a {
  color: #242424;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.site-nav a.is-current {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.nav-cta,
.button-primary {
  color: #101827 !important;
  background: var(--primary);
}

.nav-cta {
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: 0;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.1rem 0 2.7rem;
  background: #111418;
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.82) 0%, rgba(17, 20, 24, 0.68) 38%, rgba(17, 20, 24, 0.58) 100%),
    linear-gradient(180deg, rgba(17, 20, 24, 0.28) 0%, rgba(17, 20, 24, 0.5) 100%);
}

.page-hero {
  padding: 4rem 0 2.25rem;
  background:
    radial-gradient(circle at top left, rgba(214, 161, 27, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.page-hero h1 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.content-page {
  padding: 0 0 4rem;
}

.content-shell {
  display: grid;
  gap: 1.25rem;
}

.content-card {
  padding: 1.5rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.content-card h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.content-card h3 {
  margin: 1.2rem 0 0.65rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.content-card p,
.content-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.content-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.service-item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  border: 1px solid rgba(231, 221, 200, 0.94);
}

.service-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
}

.hero-grid,
.about-grid,
.photo-help-shell {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 760px);
  align-items: start;
  min-height: 520px;
  padding: 0.5rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.about-grid h2,
.photo-help-shell h2 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.05;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
  color: #ffffff;
}

.hero-text,
.section-heading p,
.category-card p,
.equipment-copy p,
.about-grid p,
.about-panel p,
.photo-help-shell p,
.contact-card small {
  color: var(--text-soft);
  line-height: 1.72;
}

.hero-text {
  max-width: 64ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.85rem 0 1.45rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.3rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button-primary {
  color: #171717 !important;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.hero-points,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points li {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 20, 24, 0.38);
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-weight: 600;
}

.image-card,
.card,
.contact-card,
.photo-note {
  overflow: hidden;
  border: 1px solid rgba(231, 221, 200, 0.94);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-card {
  border-radius: var(--radius-lg);
}

.image-card-main img,
.equipment-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-badge {
  position: static;
  display: inline-block;
  max-width: 360px;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  color: white;
  background: rgba(17, 20, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.hero .eyebrow {
  color: #f0c75d;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.section-dark {
  color: white;
  background: linear-gradient(135deg, #111418 0%, #1d2228 100%);
}

.section-dark .section-heading h2,
.section-dark .eyebrow,
.section-dark p,
.section-dark span {
  color: white;
}

.stats {
  padding-top: 1rem;
}

.stats-grid,
.card-grid,
.brand-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

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

.stats-grid article {
  padding: 1.4rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 1.18rem;
}

.stats-grid span {
  color: var(--text-soft);
  line-height: 1.65;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.left-align {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

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

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

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

.card {
  border-radius: var(--radius-md);
}

.category-card,
.industry-card,
.equipment-copy,
.contact-card,
.photo-note {
  padding: 1.3rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-icon {
  width: 112px;
  height: 84px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.category-card h3,
.industry-card h3,
.equipment-copy h3,
.about-panel h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.industry-card {
  overflow: hidden;
  padding: 0;
  text-align: left;
  font-weight: 700;
}

.industry-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.industry-copy {
  padding: 0.95rem 1rem 1.05rem;
  background: var(--surface);
}

.industry-card h3 {
  margin: 0;
  color: var(--text);
}

.industry-card-placeholder {
  display: grid;
  align-items: end;
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(214, 161, 27, 0.08), rgba(214, 161, 27, 0.18)),
    var(--surface-alt);
}

.equipment-copy ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--text-soft);
}

.equipment-copy li + li {
  margin-top: 0.45rem;
}

.equipment-card-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-card-link:hover {
  transform: translateY(-4px);
}

.equipment-link {
  display: block;
  height: 100%;
}

.pill {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  color: #101827;
  background: #efd58e;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.pill-accent {
  color: white;
  background: var(--accent);
}

.brand-grid {
  grid-template-columns: repeat(5, 1fr);
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 1.1rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.brand-image {
  width: 100%;
  max-width: 130px;
  max-height: 42px;
  object-fit: contain;
}

.about-grid {
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
}

.about-panel {
  display: grid;
  gap: 1rem;
}

.about-panel article {
  padding: 1.4rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-image-card {
  padding: 0 !important;
  overflow: hidden;
}

.about-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.contact-section {
  padding: 0.75rem 0 0;
  background: #ffffff;
}

.contact-map-shell {
  margin-bottom: 1rem;
}

.map-frame {
  overflow: hidden;
  border-radius: 0;
  border: 0;
}

.map-frame-large {
  box-shadow: none;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.site-footer {
  padding: 1.5rem 0 0.75rem;
  background: #111418;
  color: #ffffff;
}

.footer-shell {
  display: grid;
  gap: 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 0.75rem 0;
}

.footer-brand img {
  width: min(100%, 280px);
  max-height: 88px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.footer-column h3 {
  margin-bottom: 0.65rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-column p,
.footer-column a {
  display: block;
  margin: 0 0 0.45rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-links a {
  position: relative;
  padding-left: 1rem;
}

.footer-links a::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.footer-bottom {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.section-actions {
  margin-top: 1.5rem;
}

.inventory-page {
  padding-top: 1rem;
}

.inventory-shell {
  display: grid;
  gap: 1.5rem;
}

.inventory-filters {
  padding: 1.2rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.filter-grid label span {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.filter-grid input,
.filter-grid select {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.filter-actions {
  display: flex;
  gap: 0.8rem;
}

.inventory-reset {
  border: 1px solid rgba(17, 20, 24, 0.12);
  color: var(--text);
  background: #ffffff;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.listing-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.listing-card-link {
  display: block;
  height: 100%;
}

.listing-card-media {
  position: relative;
  overflow: hidden;
}

.listing-card-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: #101827;
  background: #efd58e;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.listing-card-copy {
  padding: 1.2rem;
}

.listing-card-copy h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.listing-card-copy p {
  margin: 0 0 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.listing-price,
.listing-price-large {
  margin: 0 0 0.8rem;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.listing-price-large {
  font-size: 1.8rem;
}

.listing-meta,
.summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.listing-meta li,
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(231, 221, 200, 0.72);
  color: var(--text-soft);
}

.listing-meta li strong,
.summary-list li strong {
  color: var(--text);
}

.inventory-empty {
  text-align: center;
}

.listing-hero {
  padding-bottom: 2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

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

.listing-page {
  padding-top: 0;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 360px);
  gap: 1.5rem;
  align-items: start;
}

.listing-main {
  display: grid;
  gap: 1rem;
}

.listing-gallery {
  padding: 0;
  border-radius: var(--radius-lg);
}

.listing-main-media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #111418;
  cursor: pointer;
}

.listing-main-image {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.listing-gallery-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 20, 24, 0.72);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.listing-thumbs {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.listing-thumb {
  flex: 0 0 156px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.listing-thumb:hover,
.listing-thumb.is-active {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.listing-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.listing-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.listing-anchor-nav a {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: 999px;
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.spec-card {
  padding: 1rem;
  border: 1px solid rgba(231, 221, 200, 0.94);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.spec-card h3 {
  margin: 0 0 0.85rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(231, 221, 200, 0.72);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 40%;
  padding-right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
}

.spec-table td {
  padding-left: 0.35rem;
}

.listing-notes {
  margin-top: 1rem;
}

.listing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.listing-gallery-card {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.listing-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
}

.listing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.listing-lightbox[hidden] {
  display: none;
}

.listing-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.82);
}

.listing-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(100%, 1180px);
  max-height: calc(100vh - 3rem);
  padding: 1.5rem;
  border-radius: 24px;
  background: #111418;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
}

.listing-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.listing-lightbox-nav {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.listing-lightbox-stage {
  display: grid;
  gap: 1rem;
}

.listing-lightbox-image {
  width: 100%;
  max-height: 70vh;
  border-radius: 18px;
  object-fit: contain;
  background: #0b0e12;
}

.listing-lightbox-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}

.listing-lightbox-caption,
.listing-lightbox-counter {
  margin: 0;
}

.listing-lightbox-strip {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 0.25rem;
}

.listing-lightbox-thumb {
  flex: 0 0 96px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.listing-lightbox-thumb.is-active {
  border-color: var(--primary);
}

.listing-lightbox-thumb img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

body.lightbox-open {
  overflow: hidden;
}

.listing-sidebar {
  position: sticky;
  top: 110px;
}

.listing-summary-card {
  display: grid;
  gap: 1rem;
}

.listing-cta,
.listing-secondary-cta {
  width: 100%;
}

.listing-secondary-cta {
  border: 1px solid rgba(17, 20, 24, 0.12);
  color: var(--text);
  background: #ffffff;
}

.related-section {
  padding-top: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .equipment-grid,
  .category-grid,
  .industry-grid,
  .service-gallery,
  .service-grid,
  .stats-grid,
  .brand-grid,
  .inventory-grid,
  .listing-gallery-grid,
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .filter-grid,
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .listing-sidebar {
    position: static;
  }

  .listing-lightbox-dialog {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .listing-lightbox-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar-shell {
    grid-template-columns: 1fr;
    padding: 0.75rem 0;
  }

  .nav-shell {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0.5rem 0;
    text-align: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-logo {
    width: 280px;
  }

  .hero-grid,
  .about-grid,
  .equipment-grid,
  .category-grid,
  .industry-grid,
  .service-gallery,
  .service-grid,
  .stats-grid,
  .brand-grid,
  .inventory-grid,
  .listing-gallery-grid,
  .spec-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .map-frame iframe {
    height: 300px;
  }

  .filter-actions,
  .listing-anchor-nav {
    flex-direction: column;
  }

  .listing-thumb {
    flex-basis: 120px;
  }

  .listing-lightbox {
    padding: 0.75rem;
  }

  .listing-lightbox-dialog {
    padding: 3.5rem 1rem 1rem;
  }

  .listing-lightbox-meta {
    flex-direction: column;
  }
}
