/* ============================================================
   CIMINO'S OFFICE SYSTEMS — main.css
   Shared stylesheet for index.html and about.html
   ============================================================ */


/* ── ICON FONTS ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
}


/* ── TYPOGRAPHY ── */
h1, h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  text-transform: capitalize;
}
.font-heading,
[class~="font-heading"] {
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
}
.section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
}
.section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  color: #1A1A1A;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


/* ── NAVBAR ── */
#navbar {
  background: transparent;
  box-shadow: none;
  transition: padding 0.4s;
  padding: 20px 0;
}
#navbar.scrolled {
  padding: 12px 0;
}
#navbar.scrolled .nav-pill {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.11), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Floating pill — white glass */
.nav-pill {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  padding: 12px 12px 12px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav-pill .btn-primary,
.nav-pill .btn-nav-cta {
  border-radius: 100px;
  padding: 13px 28px;
  font-size: 0.8rem;
}
#navbar .nav-logo {
  height: 52px;
  transition: filter 0.4s;
}

/* Nav links */
.nav-link {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1A1A1A;
  padding: 6px 12px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: #6B2D2D; background: rgba(107,45,45,0.06); }
.nav-link.active { color: #6B2D2D; background: rgba(107,45,45,0.08); }

/* Mobile hamburger */
#menu-toggle { border-radius: 100px; }

/* Mobile menu */
#mobile-menu {
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}


/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: #6B2D2D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: #4A1E1E;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(107, 45, 45, 0.32);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
}
.btn-outline:hover {
  border-color: #C9A96E;
  background: rgba(201, 169, 110, 0.12);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: #C9A96E;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-gold:hover {
  background: #b8935a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.38);
}


/* ── ANIMATE ON SCROLL ── */
.aos-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
.aos-delay-5 { transition-delay: 0.5s; }


/* ── FOOTER ── */
.footer-modern {
  background: linear-gradient(135deg, #6B2D2D 0%, #4A1E1E 60%, #3a1515 100%);
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.footer-modern::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
  pointer-events: none;
}
.footer-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.25s;
}
.footer-link:hover { color: #E8D5B0; }


/* ============================================================
   INDEX PAGE — HERO SLIDER
   ============================================================ */

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}
#heroSwiper,
#heroSwiper .swiper-wrapper,
#heroSwiper .swiper-slide {
  height: 100vh !important;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 60%, transparent 100%);
  opacity: 0;
}
.swiper-slide-active .hero-slide-overlay {
  animation: heroFadeIn 0.8s ease 0s forwards;
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-slide-inner {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 9.5vw, 9rem);
}
.hero-headline em,
.hero-line-inner em {
  font-style: normal;
  color: #C9A96E;
}

/* Hero line reveal */
.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.08;
}
.hero-line-inner {
  display: block;
  transform: translateY(115%) skewY(4deg);
  opacity: 0;
  filter: blur(8px);
}
.hero-line-inner em {
  font-style: normal;
  color: #C9A96E;
}
.swiper-slide-active .hero-line:nth-child(1) .hero-line-inner {
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.swiper-slide-active .hero-line:nth-child(2) .hero-line-inner {
  animation: lineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards;
}
.swiper-slide-active .hero-line:nth-child(3) .hero-line-inner {
  animation: goldGlow 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Hero accent line */
.hero-accent-line {
  display: block;
  height: 3px;
  width: 60px;
  background: #C9A96E;
  margin-top: 20px;
  transform-origin: left;
  transform: scaleX(0);
}
.swiper-slide-active .hero-accent-line {
  animation: lineSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

/* Hero tagline */
.hero-tagline {
  display: block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  opacity: 0;
}
.swiper-slide-active .hero-tagline {
  animation: fadeSlideUp 0.7s ease 0.9s forwards;
}

/* Ken Burns on active slide */
.swiper-slide-active img {
  animation: kenBurns 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Hero swiper pagination */
.hero-swiper .swiper-pagination {
  left: 1.25rem !important;
  right: auto !important;
  text-align: left;
  width: auto !important;
}
.hero-swiper .swiper-pagination-bullet {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: background 0.3s, width 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: #C9A96E;
  width: 56px;
}


/* ── HERO KEYFRAME ANIMATIONS ── */
@keyframes lineReveal {
  from { transform: translateY(115%) skewY(4deg); opacity: 0; filter: blur(8px); }
  60%  { filter: blur(0); }
  to   { transform: translateY(0) skewY(0deg); opacity: 1; filter: blur(0); }
}
@keyframes goldGlow {
  from { transform: translateY(115%) skewY(4deg); opacity: 0; filter: blur(8px); letter-spacing: 0.12em; }
  60%  { filter: blur(0); }
  to   { transform: translateY(0) skewY(0deg); opacity: 1; filter: blur(0); letter-spacing: -0.03em; }
}
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineSlide {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}


/* ============================================================
   INDEX PAGE — SOLUTIONS
   ============================================================ */

/* ── Grid layout ── */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .sol-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 400px);
  }
  .sol-img-card--hero {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ── Base card ── */
.sol-img-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #0e0e0e;
  height: 380px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .sol-img-card { height: 100%; }
}

/* ── Image ── */
.sol-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.58) saturate(0.9);
}
.sol-img-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.38) saturate(0.85);
}

/* ── Gradient overlay ── */
.sol-img-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.30) 42%,
    transparent 72%
  );
}

/* ── Tag / category label ── */
.sol-img-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.sol-img-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #C9A96E;
  flex-shrink: 0;
}
.sol-img-card:hover .sol-img-tag {
  opacity: 1;
  transform: translateY(0);
}

/* ── Title ── */
.sol-img-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 0;
  transition: margin-bottom 0.35s ease;
}
.sol-img-card--hero .sol-img-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}
.sol-img-card:hover .sol-img-title { margin-bottom: 14px; }

/* ── Description ── */
.sol-img-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.38s ease 0.06s;
}
.sol-img-card:hover .sol-img-desc {
  max-height: 100px;
  opacity: 1;
}

/* ── Explore CTA (appears on hover) ── */
.sol-img-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A96E;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease 0.1s, opacity 0.35s ease 0.15s;
}
.sol-img-cta svg {
  transition: transform 0.3s ease;
}
.sol-img-card:hover .sol-img-cta {
  max-height: 40px;
  opacity: 1;
}
.sol-img-card:hover .sol-img-cta svg {
  transform: translateX(4px);
}

/* ── Card number badge ── */
.sol-img-num {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.1em;
}

/* ── Arrow icon (top-right) ── */
.sol-img-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) translateY(-6px);
  transition: opacity 0.3s, transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              background 0.3s, border-color 0.3s;
}
.sol-img-card:hover .sol-img-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
  background: #C9A96E;
  border-color: #C9A96E;
}


/* ============================================================
   INDEX PAGE — GALLERY
   ============================================================ */

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 45, 45, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
  border-radius: 12px;
  pointer-events: none;
}
.gallery-item:hover .gallery-overlay { background: rgba(107, 45, 45, 0.42); }
.gallery-overlay-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
  transform: scale(1);
}

/* ── GLIGHTBOX CAPTION — bottom overlay ── */
.glightbox-clean .ginner-container {
  position: relative;
}
.glightbox-clean .gslide-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 100%);
  pointer-events: none;
}
.glightbox-clean .gdesc-inner {
  background: transparent;
  padding: 32px 28px 24px;
}
.glightbox-clean .gslide-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A96E;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.glightbox-clean .gslide-title::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #C9A96E;
  opacity: 0.6;
  flex-shrink: 0;
}
.glightbox-clean .gslide-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}


/* ============================================================
   INDEX PAGE — TESTIMONIALS
   ============================================================ */

.swiper-testimonial .swiper-pagination-bullet {
  background: #6B2D2D;
  opacity: 0.25;
}
.swiper-testimonial .swiper-pagination-bullet-active {
  opacity: 1;
  background: #6B2D2D;
}


/* ============================================================
   INDEX PAGE — CATALOG CARDS
   ============================================================ */

.catalog-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s, box-shadow 0.35s;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.13);
}
.catalog-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.catalog-card:hover .catalog-card-img img { transform: scale(1.06); }
.catalog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
}
.catalog-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.catalog-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.3;
}
.catalog-dl-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}
.catalog-card:hover .catalog-dl-btn {
  background: #C9A96E;
  border-color: #C9A96E;
}


/* ============================================================
   INDEX PAGE — CATALOG FEATURE (single catalog)
   ============================================================ */

.catalog-feature-section {
  background: #141414;
  padding: 96px 0;
  overflow: hidden;
}

.catalog-feature-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .catalog-feature-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* ── Cover mockup (left) ── */
.catalog-cover-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-cover-mockup {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.catalog-cover-shadow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(201,169,110,0.12);
  transform: rotate(3.5deg) translate(10px, 10px);
  z-index: 0;
}

.catalog-cover-front {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  transform: rotate(-1.5deg);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.55s ease;
}
.catalog-cover-mockup:hover .catalog-cover-front {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 50px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.1);
}

.catalog-cover-front img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
  transition: filter 0.55s ease;
}
.catalog-cover-mockup:hover .catalog-cover-front img {
  filter: brightness(0.45);
}

.catalog-cover-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 28px 30px;
}

.catalog-cover-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 4px;
}

.catalog-cover-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* ── Info side (right) ── */
.catalog-info-side {
  display: flex;
  flex-direction: column;
}

.catalog-feature-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.catalog-feature-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ── Detail chips ── */
.catalog-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.catalog-chip svg {
  color: #C9A96E;
  flex-shrink: 0;
}

/* ── CTA row ── */
.catalog-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}


/* ============================================================
   INDEX PAGE — CONTACT FORM
   ============================================================ */

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e2ddd8;
  background: #fff;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus {
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5C5C5C;
  margin-bottom: 6px;
}


/* ============================================================
   INDEX PAGE — MANUFACTURERS TICKER
   ============================================================ */

.mfr-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.mfr-track {
  display: flex;
  align-items: center;
  animation: mfr-scroll 90s linear infinite;
  width: max-content;
  will-change: transform;
}
.mfr-track:hover { animation-play-state: paused; }
@keyframes mfr-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mfr-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 100px;
  flex-shrink: 0;
}
.mfr-logo-cell img {
  height: 48px;
  width: auto;
  object-fit: cover;
}


/* ============================================================
   INDEX PAGE — ABOUT BENTO GRID
   ============================================================ */

.bento-card {
  border-radius: 24px;
  overflow: hidden;
}
.bento-editorial {
  background: #111111;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.bento-editorial-wm {
  position: absolute;
  bottom: -8px;
  right: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.bento-img-card {
  position: relative;
  min-height: 380px;
}
.bento-img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-stat-red {
  background: #6B2D2D;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.bento-stat-gold {
  background: #C9A96E;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.bento-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.bento-satisfaction {
  background: #111111;
  border-radius: 24px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bento-satisfaction-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.bento-pillar {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.09);
}
.bento-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F8F6F4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}
.bento-pillar:hover .bento-pillar-icon { background: #6B2D2D; transform: scale(1.06); }
.bento-pillar:hover .bento-pillar-icon svg { stroke: #fff; }

/* Stats bar item (home page) */
.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.stat-item:last-child { border-right: none; }


/* ============================================================
   ABOUT PAGE — PAGE BANNER
   ============================================================ */

.page-banner {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);
}
.page-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}


/* ============================================================
   ABOUT PAGE — SERVICE TILES
   ============================================================ */

.service-tile {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F8F6F4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.service-icon .material-symbols-outlined { font-size: 22px; color: #6B2D2D; }
.service-tile:hover .service-icon { background: #6B2D2D; }
.service-tile:hover .service-icon svg { stroke: #fff; }
.service-tile:hover .service-icon .material-symbols-outlined { color: #fff; }


/* ============================================================
   ABOUT PAGE — SECTOR PILLS
   ============================================================ */

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  background: #F8F6F4;
  border: 1px solid rgba(0, 0, 0, 0.07);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1A1A1A;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.sector-pill:hover {
  background: #6B2D2D;
  border-color: #6B2D2D;
  color: #fff;
}
.sector-pill:hover .dot { background: #C9A96E; }
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6B2D2D;
  flex-shrink: 0;
  transition: background 0.3s;
}


/* ============================================================
   ABOUT PAGE — STAT BLOCKS
   ============================================================ */

.stat-block {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-block:last-child { border-right: none; }


/* ============================================================
   ABOUT PAGE — HOURS TABLE
   ============================================================ */

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.hours-row:last-child { border-bottom: none; }


/* ============================================================
   Responsiveness
   ============================================================ */


@media (max-width: 1600px) {
  .hero-headline {
  font-size: clamp(3.4rem, 8.5vw, 8rem);
}
  .page-banner-content {
    padding-bottom: 30px;
  }
}


@media (min-width: 1024px) {
  .hero-slide-inner {
    padding: 0 2rem;
  }

  .hero-swiper .swiper-pagination {
    left: 2rem !important;
  }
}


/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Navbar pill */
  .nav-pill {
    padding: 10px 0;
  }

  /* Page banner */
  .page-banner {
    min-height: 320px;
    height: 44vh;
  }
  .page-banner-content {
    padding-bottom: 24px;
  }
  .page-banner-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  }

  /* About image mosaic */
  .about-mosaic,
  [style*="height: 560px"],
  [style*="height:560px"] {
    height: 420px !important;
  }
  .bento-editorial {padding: 25px !important;}
  .bento-stat-red {padding: 20px !important;}
  .bento-stat-gold {padding: 20px !important;}
 
}


/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar pill */
  .nav-pill {
    padding: 8px 0;
    border-radius: 1rem;
  }
  .nav-logo {
    height: 3rem !important;
  }

  /* Page banner */
  .page-banner {
    min-height: 280px;
    height: 46vmax;
  }
  .page-banner-content {
    padding-bottom: 20px;
  }
  .page-banner-content h1 {
    font-size: clamp(1.9rem, 6.5vw, 2.8rem) !important;
  }

  /* Hero */
  .hero-swiper,
  .hero-slide {
    height: 80vh !important;
    min-height: 420px;
  }
  .hero-slide-inner {
    padding: 0 1.25rem;
  }

  /* Section padding — shrink large vertical whitespace */
  section.py-36, section.py-32, section.py-28, section.py-24 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  section.py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  section.py-16 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Section header margins */
  .mb-16 { margin-bottom: 2rem !important; }
  .mb-14 { margin-bottom: 1.75rem !important; }
  .mb-12 { margin-bottom: 1.5rem !important; }
  .mb-10 { margin-bottom: 1.25rem !important; }

  /* Two-column grid gaps on mobile */
  .gap-16 { gap: 2.5rem !important; }
  .gap-12 { gap: 2rem !important; }

  /* Footer inner row padding */
  .py-14 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }

  /* Section spacing */
  .section-label { font-size: 0.58rem; }

  /* About page — fixed-height image cards */
  .about-img-tall,
  [style*="height: 480px"],
  [style*="height:480px"] {
    height: 260px !important;
  }
  [style*="height: 560px"],
  [style*="height:560px"] {
    height: 340px !important;
  }

  /* Catalog cards — single column gap reduction */
  .catalog-grid,
  .sol-cards-grid {
    gap: 1.25rem;
  }

  /* Solution filter bar */
  .sol-filter-bar {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
  }
  .sol-select-wrap {
    min-width: unset !important;
    width: 100%;
  }
  .sol-filter-count,
  .sol-filter-reset {
    width: 100%;
    justify-content: center;
  }

  /* Solution modal — stack vertically */
  .sol-modal {
    flex-direction: column !important;
    max-height: 94vh;
    border-radius: 1rem !important;
  }
  .sol-modal-left {
    width: 100% !important;
    min-width: unset !important;
    height: 220px;
    flex-shrink: 0;
  }
  .sol-modal-left img {
    height: 220px;
  }
  .sol-modal-backdrop {
    padding: 0.75rem !important;
    align-items: flex-end !important;
  }
  .sol-modal-body {
    padding: 1.25rem 1.5rem 2rem !important;
  }

  /* Contact page — map height */
  .contact-map iframe,
  #contact-map iframe {
    height: 300px !important;
  }

  /* Download banner padding */
  .dl-banner {
    padding: 3rem 1.5rem !important;
  }

  /* Manufacturer logo strip */
  .brand-strip,
  .mfr-logos {
    gap: 1.5rem !important;
  }
  .brand-strip img,
  .mfr-logos img {
    height: 28px !important;
  }

  /* Footer tightening */
  .site-footer .footer-grid,
  footer .grid {
    gap: 2rem !important;
  }

  /* Footer — center all content on mobile */
  .footer-modern .flex.flex-col.lg\:flex-row {
    align-items: center !important;
    text-align: center;
  }
  .footer-modern nav {
    justify-content: center;
  }
  .footer-modern .flex.gap-3 {
    justify-content: center;
  }
  .footer-modern img[alt*="Cimino"] {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
   .bento-satisfaction {padding: 25px !important;}
  .bento-satisfaction-num {white-space: wrap;}
}


/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  /* Navbar pill — very narrow screens */
  .nav-pill {
    padding: 6px 0;
  }
  .btn-nav-cta {
    display: none !important;
  }

  /* Page banner */
  .page-banner {
    min-height: 240px;
    height: 52vmax;
  }
  .page-banner-content h1 {
    font-size: clamp(1.55rem, 7.5vw, 2rem) !important;
  }
  .breadcrumb-sep,
  .breadcrumb-text {
    font-size: 0.6rem;
  }

  /* Hero */
  .hero-swiper,
  .hero-slide {
    height: 70vh !important;
    min-height: 380px;
  }

  /* Section padding — tighter on very small phones */
  section.py-36, section.py-32, section.py-28, section.py-24 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  section.py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  section.py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Section header margins */
  .mb-16 { margin-bottom: 1.5rem !important; }
  .mb-14 { margin-bottom: 1.35rem !important; }
  .mb-12 { margin-bottom: 1.25rem !important; }
  .mb-10 { margin-bottom: 1rem !important; }

  /* Grid gaps */
  .gap-16 { gap: 2rem !important; }
  .gap-12 { gap: 1.5rem !important; }

  /* Section headings */
  h2.section-title,
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }

  /* Solution cards image height */
  .cat-card-img {
    height: 180px !important;
  }

  /* Solution modal — full-screen on very small phones */
  .sol-modal-backdrop {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  .sol-modal {
    border-radius: 1.25rem 1.25rem 0 0 !important;
    max-height: 96vh;
  }
  .sol-modal-left {
    height: 180px;
  }
  .sol-modal-left img {
    height: 180px;
  }

  /* Contact map height */
  .contact-map iframe,
  #contact-map iframe {
    height: 240px !important;
  }

  /* Info card padding */
  .info-card {
    padding: 1.75rem !important;
    gap: 1.5rem !important;
  }

  /* Form card padding */
  .form-card,
  .contact-form-wrap {
    padding: 1.75rem !important;
  }

  /* Catalog card grid — force single column */
  .catalog-grid {
    grid-template-columns: 1fr !important;
  }

  /* Download banner */
  .dl-banner .flex {
    flex-direction: column !important;
    gap: 0.85rem !important;
  }

  /* Footer bottom row */
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center;
  }
}
