/* ============================================================
   F. MORINA SÀRL – Feuille de style principale
   Thème : Rouge & Blanc | Version : 2.0 (sans PHP/WordPress)
   ============================================================ */

/* ── RESET & VARIABLES ── */
:root {
  --red:        #CC1122;
  --red-dark:   #990D19;
  --red-light:  #E8192C;
  --red-pale:   #FFF0F1;
  --red-muted:  #F2CCCF;
  --red-faint:  rgba(204,17,34,0.06);
  --white:      #FFFFFF;
  --cream:      #FFF8F8;
  --text:       #1A0305;
  --text-soft:  #7A3038;
  --text-muted: #B07078;
  --border:     #EDCED1;
  --shadow-sm:  0 2px 12px rgba(204,17,34,0.08);
  --shadow-md:  0 6px 32px rgba(204,17,34,0.13);
  --shadow-lg:  0 16px 60px rgba(20,0,3,0.18);
  --radius:     0px; /* Square aesthetic for construction */
  --nav-h:      76px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--red); color: var(--white);
  padding: 8px 16px; font-weight: 700; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── HONEYPOT (anti-spam) ── */
.hp-field { position: absolute; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

/* ── REVEAL ANIMATION ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex; flex-direction: row; align-items: center;
  gap: 12px; line-height: 1;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo > div {
  display: flex; flex-direction: column;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: 3px; color: var(--red);
}
.logo-sub {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-soft); margin-top: 1px;
}
#navMenu ul {
  display: flex; gap: 32px; align-items: center;
}
.nav-link {
  text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-nav-cta {
  background: var(--red); color: var(--white);
  padding: 10px 24px; text-decoration: none;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 2px solid var(--red); flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.btn-nav-cta:hover { background: var(--white); color: var(--red); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--red); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  overflow: hidden; padding-top: var(--nav-h);
  background: var(--red);
}
.hero-bg-panel {
  position: absolute; right: 0; top: 0; width: 46%; height: 100%;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero-deco-letter {
  position: absolute; right: 2%; top: 50%; transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14rem, 22vw, 28rem); line-height: 1;
  color: rgba(255,255,255,0.055); user-select: none; pointer-events: none;
}

/* Slider */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(180,5,18,0.88) 0%, rgba(140,0,12,0.65) 55%, rgba(0,0,0,0.25) 100%);
}
.slide.active { opacity: 1; }

.slider-dots {
  position: absolute; bottom: 108px; left: 80px;
  display: flex; gap: 10px; z-index: 5;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5); background: transparent;
  cursor: pointer; padding: 0; transition: background var(--transition), border-color var(--transition);
}
.dot.active { background: var(--white); border-color: var(--white); }

/* Hero content */
.hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 60px 80px 60px;
  position: relative; z-index: 3; max-width: 760px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.75); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-eyebrow span { display: block; width: 28px; height: 2px; background: rgba(255,255,255,0.5); flex-shrink: 0; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8.5vw, 9rem); line-height: 0.9;
  color: var(--white); margin-bottom: 32px; letter-spacing: 1px;
}
.hero-title em {
  display: block; font-style: normal;
  font-size: 0.45em; letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px; line-height: 1.3;
}
.hero-desc {
  color: rgba(255,255,255,0.82); font-size: 1.08rem;
  line-height: 1.78; max-width: 540px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.96); border-top: 3px solid var(--red);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 20px 52px; border-right: 1px solid var(--border);
  text-align: center;
}
.stat:last-child { border-right: none; }
.stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem; color: var(--red); line-height: 1;
}
.stat span {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-soft); margin-top: 4px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--white); color: var(--red);
  padding: 15px 36px; font-weight: 800; font-size: 0.88rem;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--white);
  transition: background var(--transition), color var(--transition), transform 0.15s;
}
.btn-primary:hover { background: var(--red-pale); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block; border: 2px solid rgba(255,255,255,0.45);
  color: var(--white); padding: 13px 36px; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  transition: border-color var(--transition), transform 0.15s;
}
.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   TICKER BAND
══════════════════════════════════════════ */
.ticker-band {
  background: var(--red); padding: 16px 0; overflow: hidden;
}
.ticker-inner {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-inner span {
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem;
  color: rgba(255,255,255,0.45); letter-spacing: 3px; padding: 0 4px;
}
.ticker-inner .sep { color: rgba(255,255,255,0.2); padding: 0 12px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SECTION GENERICS
══════════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 26px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--text); line-height: 1; margin-bottom: 16px;
}
.section-sub { color: var(--text-soft); font-size: 1rem; line-height: 1.75; max-width: 560px; }
.section-header { margin-bottom: 56px; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { background: var(--white); padding: 100px 0; }
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--red-muted);
}
.service-card {
  padding: 52px 48px; position: relative; overflow: hidden;
  background: var(--white); transition: background var(--transition);
  border-right: 2px solid var(--red-muted);
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--red);
  transition: height 0.4s ease;
}
.service-card:hover { background: var(--red-pale); }
.service-card:hover::before { height: 100%; }
.svc-icon {
  width: 54px; height: 54px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; color: var(--white);
}
.svc-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem;
  letter-spacing: 1.5px; color: var(--text); margin-bottom: 24px;
}
.service-card ul { display: flex; flex-direction: column; gap: 11px; }
.service-card li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-soft); font-size: 0.96rem; line-height: 1.5;
}
.service-card li::before {
  content: ''; width: 18px; height: 2px; background: var(--red);
  flex-shrink: 0; margin-top: 11px;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about { background: var(--red); padding: 100px 0; }
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
#about .section-tag { color: rgba(255,255,255,0.6); }
#about .section-tag::before { background: rgba(255,255,255,0.5); }
#about .section-title { color: var(--white); }

/* Visual */
.about-visual { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2);
  position: relative;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-frame.img-error img { display: none; }
.img-fallback {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; font-size: 5rem;
}
.about-img-frame:not(.img-error) .img-fallback { display: none; }
.about-badge-exp, .about-badge-type {
  position: absolute; padding: 18px 22px; text-align: center;
}
.about-badge-exp {
  bottom: -18px; right: -18px; background: var(--white);
}
.about-badge-exp strong {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--red); line-height: 1; display: block;
}
.about-badge-exp span { font-size: 0.62rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); }
.about-badge-type {
  top: -18px; left: -18px; background: var(--red-dark);
  border: 2px solid rgba(255,255,255,0.15);
}
.about-badge-type strong {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); line-height: 1; display: block;
}
.about-badge-type span { font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* Text */
.about-text { }
.about-body p { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.8; }
.about-body p + p { margin-top: 14px; }
.about-strengths {
  margin-top: 32px; display: flex; flex-direction: column; gap: 12px;
}
.about-strengths li {
  display: flex; align-items: center; gap: 13px;
  color: rgba(255,255,255,0.88); font-size: 0.97rem; font-weight: 500;
}
.check {
  width: 26px; height: 26px; flex-shrink: 0;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--white);
}
.about-text .btn-primary {
  background: var(--white); color: var(--red); border-color: var(--white);
}
.about-text .btn-primary:hover { background: var(--red-pale); }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
#galerie { background: var(--cream); padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--red-muted); cursor: pointer;
}
.gallery-item.large { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(transparent, rgba(20,0,3,0.72));
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transform: translateY(4px); transition: transform var(--transition);
}
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-zoom {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: var(--red); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.85);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-zoom svg { width: 18px; height: 18px; stroke: var(--white); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
#lightbox[hidden] { display: none; }
.lb-backdrop {
  position: absolute; inset: 0; background: rgba(10,0,2,0.94);
  cursor: pointer;
}
.lb-inner {
  position: relative; z-index: 1; display: flex;
  align-items: center; justify-content: center;
  max-width: 92vw; max-height: 90vh;
}
#lbImg {
  max-width: 88vw; max-height: 84vh; object-fit: contain;
  border: 3px solid var(--red);
  box-shadow: 0 0 80px rgba(204,17,34,0.22);
}
.lb-close {
  position: fixed; top: 20px; right: 28px;
  width: 44px; height: 44px; background: var(--red); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-close:hover { background: var(--red-light); }
.lb-close svg { width: 22px; height: 22px; stroke: var(--white); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(204,17,34,0.85); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lb-nav:hover { background: var(--red); }
.lb-nav svg { width: 22px; height: 22px; stroke: var(--white); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-caption {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact { background: var(--white); padding: 100px 0; }
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
.contact-info .section-title { color: var(--text); }
.contact-lead { color: var(--text-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 44px; }
.contact-cards { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
}
.cc-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--red); display: flex; align-items: center; justify-content: center;
}
.cc-icon svg { width: 20px; height: 20px; stroke: var(--white); }
.contact-card strong {
  display: block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 5px;
}
.contact-card a {
  display: block; color: var(--text-soft); text-decoration: none;
  font-size: 0.94rem; line-height: 1.55; transition: color var(--transition);
}
.contact-card a:hover { color: var(--red); }

/* Map */
.contact-map {
  position: relative; overflow: hidden; border: 2px solid var(--border);
}
.contact-map img { width: 100%; display: block; filter: grayscale(20%); }
.map-cta {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  transition: background var(--transition);
}
.map-cta:hover { background: var(--red-light); }
.map-cta svg { stroke: var(--white); }

/* Form */
.form-card {
  background: var(--cream); padding: 44px;
  border-top: 4px solid var(--red); border: 1px solid var(--border);
  border-top: 4px solid var(--red);
}
.form-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--red); letter-spacing: 1px; margin-bottom: 28px;
}
#contactForm { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-group { display: flex; flex-direction: column; gap: 5px; }
.field-group label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
}
.field-group label span { color: var(--red); }
.field-group input,
.field-group textarea,
.field-group select {
  border: 2px solid var(--border); padding: 12px 15px;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  background: var(--white); color: var(--text);
  outline: none; width: 100%;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus { border-color: var(--red); background: var(--white); }
.field-group input.invalid,
.field-group textarea.invalid { border-color: #e63946; }
.field-group textarea { resize: vertical; min-height: 115px; }
.field-error {
  font-size: 0.75rem; color: #e63946; min-height: 16px;
  font-weight: 600; letter-spacing: 0.5px;
}
.btn-submit {
  background: var(--red); color: var(--white);
  border: 2px solid var(--red); padding: 15px 32px;
  font-family: 'Barlow', sans-serif; font-weight: 800;
  font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition), transform 0.15s;
}
.btn-submit:hover { background: var(--white); color: var(--red); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-notice {
  font-size: 0.9rem; font-weight: 600; min-height: 20px;
  padding: 10px 0; letter-spacing: 0.3px;
}
.form-notice.success { color: #1a7a40; }
.form-notice.error { color: #e63946; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--red); border-top: 4px solid var(--red-dark);
  padding: 64px 0 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 48px; margin-bottom: 0;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  color: var(--white); letter-spacing: 3px;
}
.footer-logo-sub {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 2px;
}
.footer-tagline {
  color: rgba(255,255,255,0.45); font-size: 0.87rem;
  margin-top: 14px; line-height: 1.6; max-width: 240px;
}
.footer-nav h4, .footer-services h4, .footer-contact h4 {
  color: var(--white); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-nav ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.58); text-decoration: none;
  font-size: 0.9rem; transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-services li { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-contact p {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,0.58); font-size: 0.88rem;
  line-height: 1.55; margin-bottom: 10px;
}
.footer-contact a {
  color: rgba(255,255,255,0.58); text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { flex-shrink: 0; stroke: rgba(255,255,255,0.4); margin-top: 3px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom strong { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════ */
#backToTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 46px; height: 46px; background: var(--red); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-md);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--red-light); }
#backToTop svg { width: 20px; height: 20px; stroke: var(--white); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .container, .about-inner, .contact-inner, .footer-inner, .footer-bottom { padding-left: 32px; padding-right: 32px; }
  .hero-content { padding: 60px 32px 60px; }
  .hero-content { max-width: 600px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav-inner { padding: 0 14px; gap: 6px; }
  .nav-logo-img { height: 36px; }
  .logo-main { font-size: 1.35rem; letter-spacing: 1.5px; }
  .logo-sub { display: none; }
  #navMenu {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); overflow-y: auto;
    transform: translateX(100%); transition: transform var(--transition);
    z-index: 400; padding: 32px 24px;
    border-top: 3px solid var(--red);
  }
  #navMenu.open { transform: translateX(0); }
  #navMenu ul { flex-direction: column; gap: 0; }
  .nav-link {
    display: block; padding: 16px 0; font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-burger { display: flex; }
  .btn-nav-cta { display: none; }
  .hero { min-height: auto; }
  .hero-deco-letter { display: none; }
  .hero-content { padding: 48px 24px 48px; max-width: 100%; }
  .hero-title { font-size: clamp(3.2rem, 10vw, 6rem); }
  .slider-dots { bottom: 80px; left: 24px; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .about-visual { order: -1; }
  .about-badge-exp { bottom: -14px; right: -14px; }
  .about-badge-type { top: -14px; left: -14px; }
  #services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 2px solid var(--red-muted); }
  .service-card:last-child { border-bottom: none; }
  #about { padding: 72px 0; }
  #galerie { padding: 72px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item.large { grid-column: span 2; }
  #contact { padding: 72px 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .stat { padding: 16px 24px; }
  footer { padding-top: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px 40px; }
  .footer-bottom { padding: 18px 24px; }
  .container { padding: 0 24px; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stat { padding: 14px 18px; }
  .stat strong { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  #backToTop { bottom: 20px; right: 20px; }
}

.nav-logo-img {
  width: auto; height: 44px; object-fit: contain; flex-shrink: 0;
  border-radius: 2px;
}
.nav-logo { gap: 12px; }

.btn-about {
  display: inline-block; margin-top: 36px;
  background: var(--white); color: var(--red);
  padding: 15px 36px; font-weight: 800; font-size: 0.88rem;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--white);
  transition: background var(--transition), color var(--transition), transform 0.15s;
}
.btn-about:hover { background: var(--red-pale); color: var(--red); transform: translateY(-2px); }

.captcha-note {
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 4px; font-style: italic;
}
.h-captcha { margin-top: 8px; }

.footer-logo-img {
  width: 56px; height: 56px; object-fit: contain; margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   GALLERY TABS
══════════════════════════════════════════ */
.gallery-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
}
.gtab {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--text-soft);
  border: 2px solid var(--border); padding: 10px 22px;
  font-family: 'Barlow', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.gtab:hover { border-color: var(--red); color: var(--red); }
.gtab.active { background: var(--red); color: var(--white); border-color: var(--red); }
.gtab-count {
  background: rgba(255,255,255,0.25); color: inherit;
  font-size: 0.72rem; padding: 1px 7px; border-radius: 20px;
  font-weight: 800;
}
.gtab:not(.active) .gtab-count { background: var(--red-faint); color: var(--red); }

/* Gallery item filter animation */
.gallery-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item.fade-in {
  animation: fadeIn 0.4s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════
   PRINT
══════════════════════════════════════════ */
@media print {
  #navbar, .hero-slider, .ticker-band, #lightbox, #backToTop { display: none; }
  #hero { min-height: auto; padding: 20px; background: white; }
  * { color: black !important; background: white !important; }
}
