/* ═══════════════════════════════════════ RESET & BASE ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background-color: #F2F5FA;
  color: #0A1628;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F2F5FA; }
::-webkit-scrollbar-thumb { background: #EC4A0A; border-radius: 2px; }
::selection { background: rgba(236,74,10,0.15); }

a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ═══════════════════════════════════════ TYPOGRAPHY ═══════════════════════════════════════ */
.syne    { font-family: 'Syne', system-ui, sans-serif; }
.mono    { font-family: 'Space Mono', monospace; }
.figtree { font-family: 'Figtree', system-ui, sans-serif; }

.display-h {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 700;
  line-height: 0.92;
  color: #0A1628;
}
.text-white { color: #F2F5FA !important; }

.body-text {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.875rem;
  color: #4B5D73;
  line-height: 1.75;
  font-weight: 400;
}

/* ═══════════════════════════════════════ LAYOUT ═══════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-section { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .py-section { padding-top: 7rem; padding-bottom: 7rem; } }

/* ═══════════════════════════════════════ COLORS ═══════════════════════════════════════ */
.bg-ivory   { background-color: #F2F5FA; }
.bg-charcoal { background-color: #0A1628; }

/* ═══════════════════════════════════════ SECTION BAR ═══════════════════════════════════════ */
.section-bar {
  padding: 0.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-bar.light { border-bottom: 1px solid #CBD5E6; }
.section-bar.dark  { border-bottom: 1px solid rgba(242,245,250,0.06); }
.section-bar > * { padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 1280px) {
  .section-bar > * { padding-left: calc((100% - 1280px)/2 + 1.5rem); padding-right: calc((100% - 1280px)/2 + 1.5rem); }
}

.sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.sec-label::before {
  content: '';
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  flex-shrink: 0;
}
.section-num {
  font-size: 10px;
  letter-spacing: 0.28em;
}

/* ═══════════════════════════════════════ BUTTONS ═══════════════════════════════════════ */
.btn {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  padding: 13px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  white-space: nowrap;
}

.btn-dark { background: #0A1628; color: #F2F5FA; border: 1px solid transparent; }
.btn-dark:hover { background: #EC4A0A; transform: translateY(-1px); }

.btn-light { background: #F2F5FA; color: #0A1628; border: 1px solid transparent; }
.btn-light:hover { background: #CBD5E6; transform: translateY(-1px); }

.btn-outline-dark { border: 1px solid #0A1628; color: #0A1628; background: transparent; }
.btn-outline-dark:hover { background: #0A1628; color: #F2F5FA; }

.btn-outline-light { border: 1px solid rgba(242,245,250,0.3); color: #F2F5FA; background: transparent; }
.btn-outline-light:hover { border-color: rgba(242,245,250,0.65); background: rgba(242,245,250,0.1); }

.btn-sage { background: #EC4A0A; color: #F2F5FA; border: 1px solid transparent; }
.btn-sage:hover { background: #B83508; transform: translateY(-1px); }

/* ═══════════════════════════════════════ TAGS ═══════════════════════════════════════ */
.tag-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #CBD5E6;
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  color: #4B5D73;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ═══════════════════════════════════════ ANIMATE-UP ═══════════════════════════════════════ */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════ NAVBAR ═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: all 0.5s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(242,245,250,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #CBD5E6;
  box-shadow: 0 1px 24px rgba(10,22,40,0.08);
  padding: 0.5rem 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 12px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: #EC4A0A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::after { transform: scaleX(1); }

#navbar.scrolled .nav-link { color: #4B5D73; }
#navbar.scrolled .nav-link:hover { color: #0A1628; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}
@media (min-width: 768px) { .nav-phone { display: inline-flex; } }
.nav-phone:hover { background: rgba(255,255,255,0.2); }

#navbar.scrolled .nav-phone {
  background: #EC4A0A;
  color: white;
  border-color: transparent;
}
#navbar.scrolled .nav-phone:hover { background: #B83508; }

.hamburger {
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  width: 17px; height: 1.5px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}
#navbar.scrolled .hamburger { border-color: #CBD5E6; }
#navbar.scrolled .hamburger span { background: #0A1628; }
.hamburger:hover { border-color: rgba(255,255,255,0.5); }
#navbar.scrolled .hamburger:hover { border-color: #0A1628; }

/* ═══════════════════════════════════════ DRAWER ═══════════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10,22,40,0.7);
  backdrop-filter: blur(4px);
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 70;
  width: 288px;
  background: #F2F5FA;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.32, 0, 1);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #CBD5E6;
}
.drawer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0A1628;
}
.drawer-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  border: 1px solid #CBD5E6;
  color: #4B5D73;
  transition: all 0.2s ease;
}
.drawer-close:hover { color: #0A1628; border-color: #0A1628; }

.drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
.drawer-link {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0A1628;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(203,213,230,0.6);
  transition: color 0.2s ease;
}
.drawer-link:last-child { border-bottom: none; }
.drawer-link:hover { color: #EC4A0A; }

.drawer-foot {
  padding: 1.5rem;
  border-top: 1px solid #CBD5E6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════ HERO ═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-videos {
  position: absolute;
  inset: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero-video.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,13,26,0.65) 0%, rgba(6,13,26,0.55) 50%, rgba(6,13,26,0.90) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-top: 9rem;
}

.hero-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8.5vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 2rem;
}
.hero-sub {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-bottom: 3.5rem;
}
.hero-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  gap: 1.5rem;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-val {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-dots { display: flex; align-items: center; gap: 0.5rem; }
.hero-dot {
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  width: 6px; height: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.hero-dot.active {
  width: 24px; height: 6px;
  background: rgba(255,255,255,0.6);
}
.hero-dot:hover { background: rgba(255,255,255,0.4); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}
.scroll-ind {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 1.8s ease-in-out infinite;
  transition: color 0.2s ease;
}
.scroll-ind:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════ ABOUT ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 7rem;
    align-items: start;
  }
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
.stat-box { padding: 2rem; }
.stat-box.br { border-right: 1px solid #CBD5E6; }
.stat-box.bb { border-bottom: 1px solid #CBD5E6; }

.stat-big {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: #0A1628;
  margin-bottom: 0.5rem;
}
.stat-box-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EC4A0A;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-box-sub {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: #5A6E87;
}

.certs-bar {
  border-top: 1px solid #CBD5E6;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.certs-label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8A9BB5;
  flex-shrink: 0;
}
.certs-list { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; }
.cert {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #8A9BB5;
  cursor: default;
  transition: color 0.2s ease;
}
.cert:hover { color: #1E2F4A; }

/* ═══════════════════════════════════════ SERVICES ═══════════════════════════════════════ */
.services-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .services-layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
  }
}

.svc-list { border-top: 1px solid rgba(242,245,250,0.07); }

.svc-tab {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(242,245,250,0.07);
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: none;
}
.svc-tab.inactive { opacity: 0.32; }
.svc-tab.inactive:hover { opacity: 0.6; }
.svc-tab-left { display: flex; align-items: center; gap: 1.5rem; }
.svc-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  transition: color 0.3s ease;
  color: rgba(242,245,250,0.25);
}
.svc-tab.active .svc-num { color: #EC4A0A; }
.svc-tab-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: rgba(242,245,250,0.6);
  line-height: 1;
  transition: color 0.3s ease;
}
.svc-tab.active .svc-tab-title { color: #F2F5FA; }
.svc-tab-sub {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  color: rgba(242,245,250,0.3);
  margin-top: 4px;
}
.svc-arrow {
  color: rgba(242,245,250,0.15);
  transition: all 0.4s ease;
  transform: translateX(-8px);
  opacity: 0;
  flex-shrink: 0;
}
.svc-tab.active .svc-arrow { color: #EC4A0A; transform: translateX(0); opacity: 1; }

.svc-panel {
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media (min-width: 1024px) {
  .svc-panel {
    padding-left: 3.5rem;
    border-left: 1px solid rgba(242,245,250,0.07);
  }
}
.svc-panel.fading { opacity: 0; }

.svc-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .svc-img-wrap { height: 360px; } }
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.svc-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.25);
}
.svc-big-num {
  position: absolute;
  bottom: 1rem; right: 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(72px, 10vw, 128px);
  font-weight: 800;
  color: rgba(236,74,10,0.15);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.svc-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #F2F5FA;
  line-height: 1;
  margin-bottom: 1rem;
}
.svc-panel-desc {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242,245,250,0.5);
  margin-bottom: 2rem;
  max-width: 32rem;
}
.svc-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}
.svc-spec {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.svc-spec-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #EC4A0A;
  flex-shrink: 0;
  margin-top: 6px;
}
.svc-spec span {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: rgba(242,245,250,0.45);
  line-height: 1.4;
}

/* ═══════════════════════════════════════ ADVANTAGES ═══════════════════════════════════════ */
.adv-header {
  display: grid;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .adv-header { grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: flex-end; }
}

.adv-list { border-top: 1px solid #CBD5E6; }
.adv-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid #CBD5E6;
  transition: all 0.2s ease;
}
.adv-item:hover .adv-title { color: #EC4A0A; }

/* Mobile */
.adv-mobile { display: block; }
@media (min-width: 1024px) { .adv-mobile { display: none; } }
.adv-mobile-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

/* Desktop */
.adv-desktop {
  display: none;
  grid-template-columns: 60px 1fr 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .adv-desktop { display: grid; } }

.adv-n {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #8A9BB5;
}
.adv-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1;
  color: #0A1628;
  transition: color 0.3s ease;
}
.adv-desc {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #5A6E87;
  max-width: 26rem;
}
.adv-stat {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1;
  color: #EC4A0A;
  text-align: right;
  white-space: nowrap;
}

.adv-cta {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .adv-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ═══════════════════════════════════════ GALLERY ═══════════════════════════════════════ */
.gallery-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
  align-items: flex-end;
}
@media (min-width: 1024px) { .gallery-header { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.filter-btns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(242,245,250,0.15);
  color: rgba(242,245,250,0.4);
  background: transparent;
}
.filter-btn:hover { border-color: rgba(242,245,250,0.35); color: rgba(242,245,250,0.7); }
.filter-btn.active { background: #EC4A0A; color: white; border-color: #EC4A0A; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.gc {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gc.tall { grid-row: span 2; }
.gc img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.gc:hover img { transform: scale(1.06); }
.gc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.92) 0%, rgba(6,13,26,0.15) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gc:hover .gc-overlay { opacity: 1; }
.gc-overlay-inner {}
.gc-cat {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #EC4A0A;
  margin-bottom: 0.5rem;
}
.gc-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 2px;
}
.gc-type {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.gc.hidden { display: none; }

.gallery-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  border-top: 1px solid rgba(242,245,250,0.07);
  padding-top: 2.5rem;
}
@media (min-width: 640px) {
  .gallery-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ═══════════════════════════════════════ PROCESS ═══════════════════════════════════════ */
.process-header {
  display: grid;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .process-header { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: flex-end; }
}

.process-steps {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 0; right: 0;
    height: 1px;
    background: #CBD5E6;
    z-index: 0;
  }
}

.process-step { display: flex; flex-direction: column; }
.process-step-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .process-step-top { margin-bottom: 2.5rem; } }
.process-num-box {
  position: relative;
  z-index: 1;
  width: 76px; height: 76px;
  border-radius: 8px;
  border: 2px solid #CBD5E6;
  background: #F2F5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-num-box span {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #EC4A0A;
}
.process-step-line {
  flex: 1;
  height: 1px;
  background: #CBD5E6;
}
@media (min-width: 1024px) { .process-step-line { display: none; } }

.process-step-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8A9BB5;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  color: #0A1628;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step-desc {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #5A6E87;
  margin-bottom: 1rem;
}
.process-step-dur {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A0B0C5;
}

/* ═══════════════════════════════════════ CONTACT ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: 5rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.info-block-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8A9BB5;
  font-weight: 700;
}
.info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #4B5D73;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.info-item:hover { color: #0A1628; }
.info-icon {
  width: 36px; height: 36px;
  border-radius: 6px;
  border: 1px solid #CBD5E6;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5A6E87;
  transition: all 0.3s ease;
}
.info-item:hover .info-icon { border-color: #EC4A0A; background: #EC4A0A; color: white; }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  background: #25D366;
  color: white;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.25s ease;
}
.whatsapp-btn:hover { background: #128C7E; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.hours-table { display: flex; flex-direction: column; gap: 0.5rem; }
.hour-row { display: flex; justify-content: space-between; }

/* Contact form */
.contact-form-wrap {
  border: 1px solid #CBD5E6;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 16px rgba(10,22,40,0.04);
}
@media (min-width: 1024px) { .contact-form-wrap { padding: 2.5rem; } }

.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.float-field {
  position: relative;
  margin-bottom: 1.25rem;
}
.float-field input,
.float-field textarea {
  width: 100%;
  padding: 22px 16px 8px;
  border: 1px solid #CBD5E6;
  border-radius: 6px;
  background: #F8FAFD;
  color: #0A1628;
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}
.float-field input:focus,
.float-field textarea:focus {
  border-color: #EC4A0A;
  background: white;
  box-shadow: 0 0 0 3px rgba(236,74,10,0.08);
}
.float-field label {
  position: absolute;
  left: 16px; top: 15px;
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A9BB5;
  pointer-events: none;
  transition: all 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.float-field:focus-within label,
.float-field input:not(:placeholder-shown) + label,
.float-field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 0.48rem;
  letter-spacing: 0.24em;
  color: #EC4A0A;
  font-weight: 700;
}
.form-row .float-field { margin-bottom: 0; }

.svc-checks { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc-check-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #CBD5E6;
  color: #5A6E87;
  background: transparent;
}
.svc-check-btn:hover { border-color: #EC4A0A; color: #EC4A0A; }
.svc-check-btn.active { background: #EC4A0A; color: white; border-color: #EC4A0A; }

.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: #8A9BB5;
  text-align: center;
  margin-top: 1rem;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  gap: 1.25rem;
  text-align: center;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(236,74,10,0.4);
  background: rgba(236,74,10,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC4A0A;
}

/* ═══════════════════════════════════════ MAP ═══════════════════════════════════════ */
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.map-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: #5A6E87;
  transition: color 0.2s ease;
}
.map-link:hover { color: #EC4A0A; }
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #CBD5E6;
  height: 420px;
}

/* ═══════════════════════════════════════ FOOTER ═══════════════════════════════════════ */
.footer-cta-strip { border-bottom: 1px solid #CBD5E6; }
.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .footer-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-cta-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #0A1628;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid #CBD5E6;
}
@media (min-width: 640px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-main { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo-wrap img { border-radius: 8px; }

.social-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  border: 1px solid #CBD5E6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A6E87;
  transition: all 0.2s ease;
}
.social-btn:hover { border-color: #EC4A0A; color: #EC4A0A; }

.footer-col {}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8A9BB5;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links li a,
.footer-links li span {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: #4B5D73;
  transition: color 0.2s ease;
}
.footer-links li a:hover { color: #EC4A0A; }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #5A6E87;
  transition: color 0.2s ease;
}
.footer-contact-item svg { flex-shrink: 0; color: #8A9BB5; margin-top: 2px; transition: color 0.2s ease; }
.footer-contact-item:hover { color: #0A1628; }
.footer-contact-item:hover svg { color: #EC4A0A; }

.footer-hours { display: flex; flex-direction: column; gap: 6px; margin-top: 0.5rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  align-items: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ═══════════════════════════════════════ WHATSAPP BUBBLE ═══════════════════════════════════════ */
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.wa-bubble {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}
.wa-bubble:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-bubble:active { transform: scale(0.94); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.25;
}
