/* ==========================================================================
   Tüzép Zamárdi – Andocsi Földmunka Kft.
   Egyedi stíluslap – fekete / #ec9922 sárga arculat
   ========================================================================== */

:root{
  --c-black:        #0d0d0d;
  --c-black-soft:   #1a1a1a;
  --c-black-card:   #202020;
  --c-gray-900:     #171717;
  --c-gray-700:     #3a3a3a;
  --c-gray-400:     #7a7a7a;
  --c-gray-200:     #e9e9e9;
  --c-gray-100:     #f5f5f3;
  --c-white:        #ffffff;
  --c-yellow:       #ec9922;
  --c-yellow-dark:  #c97d12;
  --c-yellow-light: #f6b654;

  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;

  --radius: 6px;
  --shadow-card: 0 10px 30px rgba(0,0,0,.10);
  --shadow-card-hover: 0 16px 40px rgba(0,0,0,.18);
  --container: 1220px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--c-gray-900);
  background:var(--c-white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); margin:0 0 .5em; font-weight:700; color:var(--c-black); line-height:1.25; }
p{ margin:0 0 1em; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 20px; }
.visually-hidden{ position:absolute !important; width:1px;height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
:focus-visible{ outline:3px solid var(--c-yellow); outline-offset:2px; }

/* ---------- Section spacing / titles ---------- */
.section{ padding:64px 0; }
.section--tight{ padding:40px 0; }
.section--dark{ background:var(--c-black); color:var(--c-white); }
.section--dark h2, .section--dark h3{ color:var(--c-white); }
.section--gray{ background:var(--c-gray-100); }
.section-title{ text-align:center; margin-bottom:40px; }
.section-title h1, .section-title h2{
  font-size:clamp(24px,3.4vw,34px);
  text-transform:uppercase;
  letter-spacing:.5px;
  position:relative;
  display:inline-block;
  padding-bottom:16px;
}
.section-title h1::after, .section-title h2::after{
  content:"";
  position:absolute; left:50%; bottom:0;
  transform:translateX(-50%);
  width:70px; height:4px;
  background:var(--c-yellow);
  border-radius:2px;
}
.section-title p{ color:var(--c-gray-400); max-width:640px; margin:14px auto 0; }
.eyebrow{
  display:inline-block; color:var(--c-yellow); font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; font-size:13px; margin-bottom:10px;
}

/* ==========================================================================
   TOP INFO BAR
   ========================================================================== */
.topbar{
  background:var(--c-black);
  color:#cfcfcf;
  font-size:13.5px;
  border-bottom:2px solid var(--c-yellow);
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  min-height:42px; flex-wrap:wrap; gap:6px 18px; padding-top:6px; padding-bottom:6px;
}
.topbar__info{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.topbar__info a{ color:#cfcfcf; }
.topbar__info a:hover{ color:var(--c-yellow); }
.topbar__item{ display:inline-flex; align-items:center; gap:7px; white-space:nowrap; }
.topbar__item svg{ width:14px; height:14px; flex:none; fill:var(--c-yellow); }
.topbar__phone{ font-weight:700; color:var(--c-white) !important; }
.topbar__socials{ display:flex; align-items:center; gap:10px; }
.topbar__socials img{ height:20px; width:auto; filter:grayscale(100%) brightness(1.5); opacity:.85; transition:opacity .2s, filter .2s; }
.topbar__socials a:hover img{ filter:none; opacity:1; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.header{
  background:var(--c-white);
  border-bottom:1px solid var(--c-gray-200);
  position:sticky; top:0; z-index:900;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.header .container{ display:flex; align-items:center; justify-content:space-between; min-height:88px; gap:20px; }
.header__logo{ flex:none; display:flex; align-items:center; }
.header__logo img{ height:56px; width:auto; }

.nav{ display:flex; align-items:stretch; }
.nav-close{ display:none; }
.nav__list{ display:flex; align-items:stretch; gap:2px; list-style:none; margin:0; padding:0; }
.nav__list a{
  display:flex; align-items:center;
  height:88px; padding:0 18px;
  font-family:var(--font-head); font-weight:700; font-size:14.5px;
  text-transform:uppercase; letter-spacing:.3px;
  color:var(--c-black);
  border-bottom:3px solid transparent;
  transition:background .2s, color .2s;
}
.nav__list a:hover{ background:var(--c-gray-100); }
.nav__list li.is-active a{
  background:var(--c-yellow);
  color:var(--c-black);
}
.nav-item--dropdown{ position:relative; }
.nav-item--dropdown > a::after{
  content:"▾"; margin-left:6px; font-size:11px;
}
.dropdown{
  position:absolute; top:100%; left:0; min-width:260px;
  background:var(--c-white); border:1px solid var(--c-gray-200); border-top:3px solid var(--c-yellow);
  box-shadow:var(--shadow-card);
  display:none; flex-direction:column; z-index:50;
}
.nav-item--dropdown:hover .dropdown{ display:flex; }
.dropdown a{
  height:auto; padding:12px 18px; color:var(--c-black); font-size:13.5px;
  text-transform:none; font-weight:600; border-bottom:1px solid var(--c-gray-100);
}
.dropdown a:hover{ background:var(--c-yellow); color:var(--c-black); }

.header__call{
  flex:none; display:flex; align-items:center; gap:10px;
  background:var(--c-black); color:var(--c-white) !important;
  padding:12px 20px; border-radius:var(--radius); font-family:var(--font-head); font-weight:700;
  transition:background .2s;
}
.header__call svg{ width:18px; height:18px; fill:var(--c-yellow); flex:none; }
.header__call:hover{ background:var(--c-yellow); color:var(--c-black) !important; }
.header__call:hover svg{ fill:var(--c-black); }
.header__call small{ display:block; font-weight:400; font-size:11px; color:#bdbdbd; text-transform:none; letter-spacing:0; }
.header__call:hover small{ color:#333; }

.burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; border:1px solid var(--c-gray-200); border-radius:4px;
  background:var(--c-white); cursor:pointer; flex:none;
}
.burger span{ display:block; height:2px; margin:0 9px; background:var(--c-black); }

/* ==========================================================================
   PAGE TITLE BANNER (belső oldalak)
   ========================================================================== */
.page-title{
  background:var(--c-black);
  background-image:
    linear-gradient(135deg, rgba(236,153,34,.14) 0%, rgba(0,0,0,0) 45%),
    repeating-linear-gradient(135deg, rgba(236,153,34,.08) 0 2px, transparent 2px 34px);
  color:var(--c-white);
  padding:54px 0;
  text-align:center;
  border-bottom:4px solid var(--c-yellow);
}
.page-title h1{ color:var(--c-white); margin:0; font-size:clamp(26px,4vw,40px); text-transform:uppercase; letter-spacing:.5px; }
.breadcrumbs{ margin-top:12px; font-size:13.5px; color:#c9c9c9; }
.breadcrumbs a{ color:#c9c9c9; }
.breadcrumbs a:hover{ color:var(--c-yellow); }
.breadcrumbs span[aria-current]{ color:var(--c-yellow); }

/* ==========================================================================
   HERO / SLIDER
   ========================================================================== */
.hero-slider{ position:relative; width:100%; height:min(72vh,640px); min-height:340px; overflow:hidden; background:var(--c-black); }
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1s ease;
  background-size:cover; background-position:center;
}
.hero-slide.is-active{ opacity:1; visibility:visible; z-index:2; }
.hero-slide::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.55) 100%);
}
.hero-slide__caption{
  position:absolute; left:50%; bottom:14%; transform:translateX(-50%);
  width:92%; max-width:900px; text-align:center; z-index:3;
}
.hero-slide__caption p{
  color:var(--c-white); font-family:var(--font-head); font-weight:800;
  font-size:clamp(20px,4vw,44px); line-height:1.2; margin:0 0 6px;
  text-shadow:0 3px 14px rgba(0,0,0,.55);
}
.hero-slide__caption p:last-child{ color:var(--c-yellow); }
.hero-dots{ position:absolute; z-index:4; bottom:22px; left:50%; transform:translateX(-50%); display:flex; gap:10px; }
.hero-dots button{
  width:11px; height:11px; border-radius:50%; border:2px solid var(--c-white);
  background:transparent; padding:0; cursor:pointer; opacity:.75;
}
.hero-dots button.is-active{ background:var(--c-yellow); border-color:var(--c-yellow); opacity:1; }
.hero-arrow{
  position:absolute; z-index:4; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(0,0,0,.35); color:var(--c-white); font-size:20px;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.hero-arrow:hover{ background:var(--c-yellow); color:var(--c-black); }
.hero-arrow--prev{ left:18px; }
.hero-arrow--next{ right:18px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-head); font-weight:700; font-size:14px;
  text-transform:uppercase; letter-spacing:.4px;
  padding:14px 30px; border-radius:var(--radius);
  border:2px solid transparent; cursor:pointer;
  transition:background .2s,color .2s,border-color .2s,transform .15s;
}
.btn svg{ width:16px; height:16px; fill:currentColor; }
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--c-yellow); color:var(--c-black); }
.btn--primary:hover{ background:var(--c-yellow-dark); }
.btn--dark{ background:var(--c-black); color:var(--c-white); }
.btn--dark:hover{ background:var(--c-yellow); color:var(--c-black); }
.btn--outline{ background:transparent; border-color:var(--c-white); color:var(--c-white); }
.btn--outline:hover{ background:var(--c-white); color:var(--c-black); }
.btn--outline-dark{ background:transparent; border-color:var(--c-black); color:var(--c-black); }
.btn--outline-dark:hover{ background:var(--c-black); color:var(--c-white); }
.btn--block{ width:100%; }
.btn--sm{ padding:10px 20px; font-size:12.5px; }

/* ==========================================================================
   INTRO / WELCOME
   ========================================================================== */
.intro{ text-align:center; }
.intro__lead{ max-width:760px; margin:0 auto 8px; color:var(--c-gray-700); font-size:17px; }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.products-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.product-card{
  background:var(--c-white); border:1px solid var(--c-gray-200); border-radius:var(--radius);
  overflow:hidden; text-align:center; box-shadow:var(--shadow-card);
  transition:transform .25s, box-shadow .25s;
  display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-card-hover); }
.product-card__media{ aspect-ratio:4/3; overflow:hidden; }
.product-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.product-card:hover .product-card__media img{ transform:scale(1.08); }
.product-card__body{ padding:24px 24px 28px; display:flex; flex-direction:column; flex:1; }
.product-card__body h3{ font-size:19px; text-transform:uppercase; margin-bottom:10px; }
.product-card__body p{ color:var(--c-gray-700); font-size:14.5px; flex:1; }
.product-card__body .btn{ align-self:center; margin-top:12px; }

/* ==========================================================================
   COMPANY / ABOUT SECTION
   ========================================================================== */
.about{ display:grid; grid-template-columns:1.15fr .85fr; gap:52px; align-items:flex-start; }
.about__text p{ text-align:justify; color:var(--c-gray-700); }
.about__text ul{ margin:0 0 18px; display:grid; gap:8px; }
.about__text ul li{
  position:relative; padding-left:26px; color:var(--c-gray-900);
}
.about__text ul li::before{
  content:""; position:absolute; left:0; top:9px; width:10px; height:10px;
  background:var(--c-yellow); border-radius:2px;
}
.content-list{ margin:0 0 24px !important; display:grid; gap:8px; }
.content-list li{ position:relative; padding-left:26px; color:var(--c-gray-700); }
.content-list li::before{
  content:""; position:absolute; left:0; top:9px; width:10px; height:10px;
  background:var(--c-yellow); border-radius:2px;
}
.about__images{ display:grid; gap:20px; }
.about__images img{ border-radius:var(--radius); box-shadow:var(--shadow-card); width:100%; height:260px; object-fit:cover; }

/* ==========================================================================
   SERVICES LISTS (Gépi földmunka / Térkövezés)
   ========================================================================== */
.service-lists{ display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.service-list h3{
  font-size:22px; text-transform:uppercase; padding-bottom:14px; margin-bottom:18px;
  border-bottom:3px solid var(--c-yellow); display:inline-block;
}
.service-list ul{ display:grid; gap:12px; }
.service-list ul li{
  position:relative; padding-left:30px; color:var(--c-gray-700); font-size:15px;
}
.service-list ul li::before{
  content:"✓"; position:absolute; left:0; top:0; color:var(--c-yellow); font-weight:700;
}

/* ==========================================================================
   BANNER IMAGES (szolgáltatások nagykép)
   ========================================================================== */
.banners{ display:grid; gap:24px; }
.banners img{ width:100%; border-radius:var(--radius); box-shadow:var(--shadow-card); }
.banners--two{ grid-template-columns:1.6fr 1fr; align-items:center; }

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta-strip{
  background:var(--c-black);
  background-image:repeating-linear-gradient(135deg, rgba(236,153,34,.10) 0 2px, transparent 2px 30px);
  color:var(--c-white);
  padding:40px 0;
}
.cta-strip .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.cta-strip h3{ color:var(--c-white); margin:0; font-size:clamp(19px,2.6vw,26px); text-transform:uppercase; }

/* ==========================================================================
   GALLERY (rácsos, lightbox, lapozható)
   ========================================================================== */
.gallery-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.gallery-item{
  position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius);
  cursor:zoom-in; box-shadow:var(--shadow-card);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.gallery-item:hover img{ transform:scale(1.1); }
.gallery-item__zoom{
  position:absolute; inset:0; background:rgba(13,13,13,.0);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s;
}
.gallery-item:hover .gallery-item__zoom{ background:rgba(13,13,13,.35); }
.gallery-item__zoom svg{ width:34px; height:34px; fill:var(--c-white); opacity:0; transform:scale(.7); transition:.25s; }
.gallery-item:hover .gallery-item__zoom svg{ opacity:1; transform:scale(1); }

.gallery-pagination{ display:flex; justify-content:center; gap:8px; margin-top:36px; flex-wrap:wrap; }
.gallery-pagination button{
  min-width:42px; height:42px; padding:0 10px; border-radius:var(--radius);
  border:2px solid var(--c-gray-200); background:var(--c-white); color:var(--c-black);
  font-family:var(--font-head); font-weight:700; cursor:pointer; transition:.2s;
}
.gallery-pagination button:hover{ border-color:var(--c-yellow); }
.gallery-pagination button.is-active{ background:var(--c-yellow); border-color:var(--c-yellow); }
.gallery-pagination button[disabled]{ opacity:.4; cursor:not-allowed; }

.lightbox{
  position:fixed; inset:0; background:rgba(10,10,10,.94); z-index:2000;
  display:none; align-items:center; justify-content:center; padding:30px;
}
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:82vh; border-radius:4px; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__prev, .lightbox__next{
  position:absolute; background:rgba(255,255,255,.08); border:2px solid rgba(255,255,255,.25);
  color:var(--c-white); border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:.2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background:var(--c-yellow); color:var(--c-black); border-color:var(--c-yellow); }
.lightbox__close{ top:22px; right:22px; width:46px; height:46px; font-size:22px; }
.lightbox__prev, .lightbox__next{ top:50%; transform:translateY(-50%); width:54px; height:54px; font-size:24px; }
.lightbox__prev{ left:18px; }
.lightbox__next{ right:18px; }
.lightbox__counter{ position:absolute; bottom:24px; left:50%; transform:translateX(-50%); color:#ddd; font-size:14px; letter-spacing:1px; }

/* ==========================================================================
   PARTNER LOGOS
   ========================================================================== */
.partners{ background:var(--c-gray-100); }
.partners-track{
  display:flex; align-items:center; justify-content:center; gap:56px; flex-wrap:wrap;
}
.partners-track img{
  height:56px; width:auto; object-fit:contain;
  filter:grayscale(100%); opacity:.65; transition:opacity .25s, filter .25s;
}
.partners-track a:hover img, .partners-track img:hover{ filter:none; opacity:1; }

/* ==========================================================================
   KEYWORD / SEO FOOTER TEXT
   ========================================================================== */
.seo-keywords{
  font-size:12.5px; color:var(--c-gray-400); text-align:center;
  padding:22px 0; border-top:1px solid var(--c-gray-200);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:start; }
.contact-card{
  background:var(--c-white); border:1px solid var(--c-gray-200); border-radius:var(--radius);
  padding:34px 34px 30px; box-shadow:var(--shadow-card);
}
.contact-card h2{ font-size:22px; text-transform:uppercase; margin-bottom:22px; }
.contact-row{ display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--c-gray-100); }
.contact-row:last-child{ border-bottom:none; }
.contact-row svg{ width:22px; height:22px; fill:var(--c-yellow); flex:none; margin-top:2px; }
.contact-row strong{ display:block; font-family:var(--font-head); font-size:13px; text-transform:uppercase; letter-spacing:.3px; color:var(--c-gray-400); margin-bottom:3px; }
.contact-row a{ color:var(--c-black); font-weight:600; }
.contact-row a:hover{ color:var(--c-yellow-dark); }
.contact-image img{ border-radius:var(--radius); box-shadow:var(--shadow-card); width:100%; }
.contact-map{ margin-top:44px; }
.contact-map iframe{ width:100%; height:420px; border:0; border-radius:var(--radius); box-shadow:var(--shadow-card); }

/* Blog teaser cards (Információ) */
.teaser-list{ display:grid; gap:26px; }
.teaser-card{
  background:var(--c-white); border:1px solid var(--c-gray-200); border-radius:var(--radius);
  padding:26px 30px; box-shadow:var(--shadow-card);
  border-left:5px solid var(--c-yellow);
}
.teaser-card h2{ font-size:20px; text-transform:uppercase; margin-bottom:10px; }
.teaser-card p{ color:var(--c-gray-700); margin-bottom:0; }
.teaser-card .tovabb{ color:var(--c-yellow-dark); font-weight:700; font-size:13.5px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--c-black); color:#c8c8c8; padding-top:56px; }
.footer .container{
  display:grid; grid-template-columns:1.1fr 1fr 1.5fr; gap:40px; padding-bottom:40px;
}
.footer h3{ color:var(--c-white); font-size:16px; text-transform:uppercase; letter-spacing:.5px; margin-bottom:20px; position:relative; padding-bottom:12px; }
.footer h3::after{ content:""; position:absolute; left:0; bottom:0; width:44px; height:3px; background:var(--c-yellow); }
.footer__logo img{ height:96px; width:auto; margin-bottom:16px; }
.footer__logo p{ font-size:13.5px; color:#9c9c9c; }
.footer__menu li{ margin-bottom:10px; }
.footer__menu a{ font-size:14px; color:#c8c8c8; transition:color .2s; }
.footer__menu a:hover{ color:var(--c-yellow); padding-left:4px; }
.footer__map iframe{ width:100%; height:190px; border:0; border-radius:var(--radius); filter:grayscale(35%) contrast(1.05); }
.footer__bottom{
  border-top:1px solid #262626; padding:20px 0; text-align:center; font-size:12.5px; color:#7c7c7c;
}
.footer__bottom a{ color:#a6a6a6; }
.footer__bottom a:hover{ color:var(--c-yellow); }

/* Floating mobile call button */
.mobile-call{
  display:none; position:fixed; left:0; right:0; bottom:0; z-index:850;
  background:var(--c-yellow); color:var(--c-black) !important;
  font-family:var(--font-head); font-weight:800; text-transform:uppercase; letter-spacing:.4px;
  text-align:center; padding:14px 10px; box-shadow:0 -6px 18px rgba(0,0,0,.25);
  align-items:center; justify-content:center; gap:10px;
}
.mobile-call svg{ width:20px; height:20px; fill:var(--c-black); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px){
  .about{ grid-template-columns:1fr; }
  .about__images{ grid-template-columns:1fr 1fr; }
  .about__images img{ height:220px; }
  .contact-grid{ grid-template-columns:1fr; }
  .footer .container{ grid-template-columns:1fr 1fr; }
  .footer__map{ grid-column:1 / -1; }
}

@media (max-width: 992px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .header__call span.header__call-label{ display:none; }
  .products-grid{ grid-template-columns:1fr 1fr; }
  .service-lists{ grid-template-columns:1fr; gap:30px; }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .banners--two{ grid-template-columns:1fr; }
  .mobile-call{ display:flex; }
  body{ padding-bottom:58px; }

  .nav--mobile-open{
    display:flex !important; flex-direction:column; position:fixed; top:0; right:0;
    width:min(320px,86vw); height:100%; background:var(--c-white); z-index:1100;
    box-shadow:-8px 0 30px rgba(0,0,0,.25); padding:20px 0; overflow-y:auto;
    transform:translateX(0); transition:transform .3s;
  }
  .nav--mobile-open .nav-close{ display:flex; }
  .nav--mobile-open .nav__list{ flex-direction:column; }
  .nav--mobile-open .nav__list a{ height:auto; padding:16px 24px; border-bottom:1px solid var(--c-gray-100); }
  .nav--mobile-open .dropdown{ display:flex; position:static; box-shadow:none; border:none; }
  .nav-overlay{ position:fixed; inset:0; background:rgba(0,0,0,.5); z-index:1050; display:none; }
  .nav-overlay.is-open{ display:block; }
  .nav-close{ display:flex; align-items:center; justify-content:flex-end; padding:0 20px 14px; }
  .nav-close button{ background:none; border:none; font-size:26px; cursor:pointer; }
}

@media (max-width: 720px){
  .topbar__info{ gap:12px; }
  .topbar .container{ justify-content:center; text-align:center; }
  .topbar__socials{ display:none; }
  .header .container{ min-height:72px; }
  .header__logo img{ height:44px; }
  .header__call{ padding:9px 14px; }
  .products-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .cta-strip .container{ flex-direction:column; text-align:center; }
  .footer .container{ grid-template-columns:1fr; text-align:center; }
  .footer h3::after{ left:50%; transform:translateX(-50%); }
  .footer__logo{ display:flex; flex-direction:column; align-items:center; }
  .about__images{ grid-template-columns:1fr; }
  .hero-slide__caption{ bottom:10%; }
  .lightbox__prev, .lightbox__next{ width:42px; height:42px; }
  .lightbox__close{ width:38px; height:38px; top:12px; right:12px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
