/* ==========================================================================
   Libo Energy — Homepage Sections
   Per-section styling for the 13-section homepage narrative (§6).
   ========================================================================== */

/* ======================================================================
   §6.1 HERO
   Full-viewport background slider, navy left-weighted scrim,
   lower-left headline, Ken-Burns zoom, staggered fade-up.
   ====================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--lb-navy);
  /* shared overlap amount so the certs card and hero foot stay in sync */
  --hero-overlap: 72px;
  --hero-foot: calc(var(--hero-overlap) + var(--sp-8)); /* controls clear the card */
}

.hero__swiper,
.hero__swiper .swiper-wrapper,
.hero__swiper .swiper-slide { position: absolute; inset: 0; height: 100%; }
.hero__swiper { z-index: 0; }

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
/* Ken-Burns: only the active slide zooms slowly */
.hero__swiper .swiper-slide-active .hero__slide-bg {
  animation: lb-kenburns 9s ease-out forwards;
}
@keyframes lb-kenburns {
  from { transform: scale(1.05); }
  to   { transform: scale(1.16); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__swiper .swiper-slide-active .hero__slide-bg { animation: none; transform: scale(1.05); }
}

/* Left-weighted navy scrim for legibility (§6.1) */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,42,82,0.92) 0%, rgba(14,42,82,0.72) 38%, rgba(14,42,82,0.25) 70%, rgba(14,42,82,0.05) 100%),
    linear-gradient(0deg, rgba(10,30,61,0.65) 0%, rgba(10,30,61,0) 45%);
}
[dir="rtl"] .hero__scrim {
  background:
    linear-gradient(270deg, rgba(14,42,82,0.92) 0%, rgba(14,42,82,0.72) 38%, rgba(14,42,82,0.25) 70%, rgba(14,42,82,0.05) 100%),
    linear-gradient(0deg, rgba(10,30,61,0.65) 0%, rgba(10,30,61,0) 45%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* extra bottom room so headline/CTAs clear the controls + overlapping card */
  padding-block: clamp(120px, 18vh, 220px) calc(var(--hero-foot) + var(--sp-12));
}
.hero__content { max-width: 720px; }

.hero__eyebrow { color: var(--lb-red-light); }

.hero__title {
  color: #fff;
  font-family: var(--lb-font-head);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.hero__title .lb-hl { color: var(--lb-red-light); }

.hero__support {
  color: var(--lb-text-body-dark);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  max-width: 56ch;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

/* Staggered fade-up on load (§6.1) */
.hero__anim { opacity: 0; transform: translateY(24px); }
.hero.is-loaded .hero__anim {
  animation: lb-fade-up var(--dur-slow) var(--ease-out) forwards;
}
.hero.is-loaded .hero__anim--1 { animation-delay: 120ms; }
.hero.is-loaded .hero__anim--2 { animation-delay: 240ms; }
.hero.is-loaded .hero__anim--3 { animation-delay: 360ms; }
.hero.is-loaded .hero__anim--4 { animation-delay: 480ms; }
@keyframes lb-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__anim { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* Slider dots + arrows */
.hero__controls {
  position: absolute;
  z-index: 3;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-end: var(--hero-foot); /* sit above the overlapping certs card */
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  pointer-events: none;
}
.hero__controls .container-lb {
  display: flex; align-items: center; gap: var(--sp-6);
}
.hero__pagination { display: flex; gap: var(--sp-2); pointer-events: auto; }
.hero__pagination .swiper-pagination-bullet {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
  transition: background var(--dur-fast) var(--ease-out);
}
.hero__pagination .swiper-pagination-bullet-active { background: var(--lb-red); }

.hero__arrows { display: flex; gap: var(--sp-2); pointer-events: auto; margin-inline-start: auto; }
.hero__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(14,42,82,0.35);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.hero__arrow:hover { background: var(--lb-red); border-color: var(--lb-red); }

/* Scroll cue — centered at the hero foot so it clears the arrows + card */
.hero__scroll-cue {
  position: absolute;
  z-index: 3;
  inset-block-end: var(--hero-foot);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  animation: lb-bounce-center 1.8s var(--ease-out) infinite;
}
@keyframes lb-bounce-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue { animation: none; }
}

@media (max-width: 991.98px) {
  .hero { min-height: 70vh; }
  .hero__scroll-cue { display: none; }
}
@media (max-width: 767.98px) {
  .hero { min-height: 88vh; }
  .hero__arrows { display: none; }
  .hero__actions { gap: var(--sp-4); }
}

/* ======================================================================
   §6.2 CERTIFICATIONS / INTEGRATED MANAGEMENT STRIP
   Overlapping dark card sitting on the hero/next-section seam.
   ====================================================================== */
.certs {
  position: relative;
  z-index: 5;
  /* host section so it can sit on the seam; transparent so the card floats */
  background: var(--lb-white);
  padding-block: 0 var(--section-pad);
}

.certs__card {
  position: relative;
  margin-top: -72px; /* pull up to overlap the hero seam */
  background: var(--lb-navy);
  background-image: var(--lb-depth-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-8) var(--sp-12);
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) 1px 1.6fr;
  align-items: center;
  gap: var(--sp-12);
  overflow: hidden;
}

/* faint oversized gear watermark behind the card (§3 modern industrial) */
.certs__card::after {
  content: "\f013"; /* fa gear */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-block-start: -40px;
  inset-inline-end: -30px;
  font-size: 220px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.certs__label {
  position: relative;
  z-index: 1;
}
.certs__label .eyebrow { color: var(--lb-red-light); }
.certs__label h2 {
  color: #fff;
  font-size: 1.375rem;
  margin: 0;
  line-height: 1.25;
}

.certs__divider {
  width: 1px;
  height: 88px;
  background: rgba(255, 255, 255, 0.14);
}

.certs__seals {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  justify-content: space-around;
}

@media (max-width: 991.98px) {
  .certs__card {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding: var(--sp-8);
    text-align: center;
  }
  .certs__divider { display: none; }
  .certs__seals { gap: var(--sp-8); }
}
@media (max-width: 575.98px) {
  .certs__card { margin-top: -48px; }
  .certs__seals { gap: var(--sp-6); }
  .lb-badge__medallion { width: 80px; height: 80px; font-size: 1.6rem; }
}

/* ======================================================================
   §6.3 SERVICES — "What We Offer"
   Midnight-Navy section with faint gear watermark + 3×2 numbered tiles.
   ====================================================================== */
.services { position: relative; overflow: hidden; }

/* faint oversized gear/turbine line-art watermark (§3 / §9, 4–6% opacity) */
.services::before {
  content: "\f085"; /* fa gears */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-block-start: -60px;
  inset-inline-end: -80px;
  font-size: 420px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  z-index: 0;
}
.services .container-lb { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}

@media (max-width: 991.98px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services::before { font-size: 320px; }
}
@media (max-width: 575.98px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   §6.4 ABOUT / COMPANY SNAPSHOT
   Two-column on light: image cluster (left) + text/bullets (right).
   ====================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
}

/* Image cluster with accent corner detail (§6.4 / §7 image frame) */
.about__media {
  position: relative;
  padding: 0 var(--sp-8) var(--sp-8) 0;
}
.about__media-main {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.about__media-main img { width: 100%; height: 100%; object-fit: cover; }

/* secondary inset image, offset to form a cluster */
.about__media-sub {
  position: absolute;
  z-index: 3;
  inset-block-end: 0;
  inset-inline-end: 0;
  width: 44%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--lb-white);
  box-shadow: var(--shadow-md);
}
.about__media-sub img { width: 100%; height: 100%; object-fit: cover; }

/* accent corner detail (royal-blue L-bracket behind the frame) */
.about__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset-block-start: calc(-1 * var(--sp-6));
  inset-inline-start: calc(-1 * var(--sp-6));
  width: 96px; height: 96px;
  border-block-start: 4px solid var(--lb-red);
  border-inline-start: 4px solid var(--lb-red);
  border-start-start-radius: var(--radius-md);
}

/* Differentiator list with cyan check icons */
.about__list {
  list-style: none;
  margin: var(--sp-6) 0 var(--sp-8);
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-weight: var(--fw-medium);
  color: var(--lb-text-body);
}
.about__list i {
  color: var(--lb-cyan);
  margin-top: 4px;
  font-size: 1rem;
  flex: 0 0 auto;
}

@media (max-width: 991.98px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .about__media { max-width: 560px; }
}

/* ======================================================================
   §6.5 STATISTICS COUNTERS
   4-up row on a Depth-Gradient navy band, thin separators between items.
   ====================================================================== */
.stats { position: relative; overflow: hidden; }
.stats::before {
  content: "\f110"; /* fa spinner/turbine-like ring as faint motif */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  font-size: 360px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}
.stats .container-lb { position: relative; z-index: 1; }

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
/* thin separators between items (§7) */
.stats__grid .lb-stat + .lb-stat,
.stats__grid .lb-stat:not(:first-child) {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}
.stats__grid .lb-stat { padding-inline: var(--sp-6); }

@media (max-width: 767.98px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-12); }
  /* reset borders, then divide the 2×2 grid cleanly */
  .stats__grid .lb-stat { border-inline-start: 0; }
  .stats__grid .lb-stat:nth-child(even) {
    border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stats::before { font-size: 240px; }
}

/* ======================================================================
   §6.6 PROJECTS — "Task Performed"
   Left heading block + horizontal slider that bleeds off the right edge.
   ====================================================================== */
.projects { overflow: hidden; }
.projects__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1.9fr;
  align-items: center;
  gap: var(--sp-12);
}
.projects__head .lead { margin-top: var(--sp-3); }
.projects__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

/* slider bleeds beyond its column toward the viewport edge.
   overflow:visible lets cards spill right; clip-path re-clips the LEFT edge
   so dragging slides never render over the heading/arrows column.
   inset(top right bottom left): right=-100vw keeps the right open to the
   viewport, top/bottom negative preserves room for hover-lift shadows. */
.projects__slider { position: relative; min-width: 0; }
.projects__slider .swiper {
  overflow: visible;
  clip-path: inset(-24px -100vw -24px 0);
}
[dir="rtl"] .projects__slider .swiper {
  clip-path: inset(-24px 0 -24px -100vw);
}
.projects__slider .swiper-slide { height: auto; }

@media (max-width: 991.98px) {
  .projects__layout { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ======================================================================
   §6.7 WHY CHOOSE US — icon feature columns
   ====================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 991.98px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-12) var(--sp-8); }
}
@media (max-width: 479.98px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   §6.8 HSE & QUALITY — split image + content on a navy band
   ====================================================================== */
.hse { position: relative; overflow: hidden; padding-block: 0; }
.hse__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* Image side — parallax frame */
.hse__media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hse__media-inner {
  position: absolute;
  inset: -12% 0; /* extra height so parallax shift never reveals edges */
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hse__media::after { /* navy tint to harmonize with the band */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,61,0.25), rgba(10,30,61,0.45));
}

/* Content side */
.hse__content {
  background: var(--lb-navy);
  background-image: var(--lb-depth-gradient);
  color: var(--lb-text-body-dark);
  padding: var(--section-pad) clamp(var(--sp-8), 6vw, var(--sp-24));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hse__content h2 { color: #fff; }
.hse__statement { color: var(--lb-text-body-dark); max-width: 56ch; }

/* Pillar list (Safety / Quality / Environment) */
.hse__pillars {
  list-style: none;
  margin: var(--sp-8) 0;
  padding: 0;
  display: grid;
  gap: var(--sp-6);
}
.hse__pillar {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.hse__pillar-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: rgba(2, 136, 204, 0.16);
  color: var(--lb-cyan-light);
  font-size: 1.1rem;
}
.hse__pillar h3 { color: #fff; font-size: 1.0625rem; margin: 0 0 4px; }
.hse__pillar p { margin: 0; font-size: var(--fs-small); color: var(--lb-text-body-dark); }

/* small safety stat */
.hse__stat {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  padding: var(--sp-4) var(--sp-6);
  border-inline-start: 3px solid var(--lb-red);
  background: rgba(255,255,255,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.hse__stat-num {
  font-family: var(--lb-font-head);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hse__stat-label { font-size: var(--fs-small); color: var(--lb-text-body-dark); }

@media (max-width: 991.98px) {
  .hse__grid { grid-template-columns: 1fr; }
  .hse__media { min-height: 320px; }
}

/* ======================================================================
   §6.10 CTA BANNER — "Give Us A Challenge"
   Energy Gradient (red→orange), headline left, arrow CTA right.
   ====================================================================== */
.cta { position: relative; overflow: hidden; }
.cta__banner {
  position: relative;
  background: var(--lb-energy-gradient);
  border-radius: var(--radius-md);
  padding: clamp(var(--sp-12), 6vw, var(--sp-24)) clamp(var(--sp-8), 6vw, var(--sp-24));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-12);
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
/* subtle background light-sweep (§6.10) */
.cta__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: lb-sweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lb-sweep {
  0%   { transform: translateX(-120%); }
  55%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@media (prefers-reduced-motion: reduce) {
  .cta__banner::before { animation: none; opacity: 0; }
}

.cta__text { position: relative; z-index: 1; max-width: 60ch; }
.cta__title {
  color: #fff;
  font-family: var(--lb-font-head);
  font-weight: var(--fw-bold);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin: 0;
}
.cta__title .lb-hl {
  /* highlighted last phrase — underlined in navy for contrast on the warm wash */
  position: relative;
  white-space: nowrap;
}
.cta__title .lb-hl::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 6px;
  background: rgba(14, 42, 82, 0.85);
  border-radius: 3px;
  z-index: -1;
}

/* arrow CTA — line extends on hover (§6.10) */
.cta__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--lb-font-head);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: #fff;
  flex: 0 0 auto;
}
.cta__action-arrow {
  display: inline-flex;
  align-items: center;
  width: 56px;
  height: 40px;
  position: relative;
}
.cta__action-arrow::before { /* the extending line */
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  height: 2px;
  width: 32px;
  background: #fff;
  transform: translateY(-50%);
  transition: width var(--dur-mid) var(--ease-out);
}
.cta__action-arrow i {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.cta__action:hover .cta__action-arrow::before { width: 52px; }
.cta__action:hover { color: #fff; }
[dir="rtl"] .cta__action-arrow i { transform: translateY(-50%) scaleX(-1); }

@media (max-width: 767.98px) {
  .cta__banner { flex-direction: column; align-items: flex-start; gap: var(--sp-8); }
}

/* ======================================================================
   §6.11 TESTIMONIALS — centered crossfade quote slider on navy
   ====================================================================== */
.testimonials { position: relative; overflow: hidden; }
.testimonials::before { /* faint gear watermark for the dark band */
  content: "\f013";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset-block-end: -80px;
  inset-inline-start: -60px;
  font-size: 320px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}
.testimonials .container-lb { position: relative; z-index: 1; }
/* crossfade is handled by Swiper's fade effect; no manual opacity overrides */

/* ======================================================================
   §6.12 CLIENTS — "Our Clients" heading + arrows, logo row carousel
   ====================================================================== */
.clients__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
  flex-wrap: wrap;
}
.clients__head .eyebrow { margin-bottom: var(--sp-2); }
.clients__head h2 { margin: 0; }

/* ======================================================================
   CONTACT — info (email / phone / location) + small map, before footer
   ====================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: stretch;
}
.contact__info { display: flex; flex-direction: column; }
.contact__items {
  list-style: none;
  margin: var(--sp-8) 0 0;
  padding: 0;
  display: grid;
  gap: var(--sp-4);
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: var(--lb-white);
  border: 1px solid var(--lb-line);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: border-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              transform var(--dur-mid) var(--ease-out);
}
.contact__item:hover {
  border-color: var(--lb-royal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact__item-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: rgba(2, 136, 204, 0.12);
  color: var(--lb-cyan);
  font-size: 1.1rem;
}
.contact__item-label {
  display: block;
  font-family: var(--lb-font-head);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lb-text-muted);
  margin-bottom: 4px;
}
.contact__item-value {
  font-family: var(--lb-font-head);
  font-weight: var(--fw-semibold);
  font-size: 1.0625rem;
  color: var(--lb-text-heading);
  line-height: 1.4;
}
a.contact__item-value:hover { color: var(--lb-red); }

/* Map frame */
.contact__map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--lb-line);
  box-shadow: var(--shadow-md);
  min-height: 360px;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

@media (max-width: 991.98px) {
  .contact__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .contact__map { min-height: 300px; }
}
