
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:   #0077C2;
  --blue-d: #005a96;
  --red:    #e41e25;
  --red-d:  #b91219;
  --ash:    #7a8390;
  --dark:   #111316;
  --mid:    #333840;
  --light:  #f5f6f7;
  --white:  #ffffff;
  --font-h: 'Bebas Neue', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-s: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body { touch-action: pan-y; font-family: var(--font-b); background: var(--white); color: var(--dark); overflow-x: hidden; }
img { display: block; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 72px;
  transition: all 0.4s ease;
  background: transparent;
}
#nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img {
  height: 44px; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
#nav.scrolled .nav-logo img { filter: none; }

.nav-logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.nav-emblem {
  width: 38px; height: 38px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-b); font-size: 14px; font-weight: 700; color: white;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: background 0.3s;
}
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark span:first-child {
  font-family: var(--font-h); font-size: 24px; letter-spacing: 1px;
  color: white; transition: color 0.4s;
}
.nav-wordmark span:last-child {
  font-size: 9px; font-weight: 600; letter-spacing: 4px;
  color: rgba(255,255,255,0.6); text-transform: uppercase; transition: color 0.4s;
}
#nav.scrolled .nav-wordmark span:first-child { color: var(--dark); }
#nav.scrolled .nav-wordmark span:last-child { color: var(--ash); }

.nav-menu { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-menu a {
  font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s;
}
#nav.scrolled .nav-menu a { color: var(--mid); }
.nav-menu a:hover { color: var(--red) !important; }

.nav-contact {
  background: var(--red); color: white; border: none;
  padding: 10px 22px; font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
}
.nav-contact:hover { background: var(--red-d); }

/* ── ACCORDION PANEL HERO ── */
.acc-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: flex 0.7s cubic-bezier(0.77,0,0.18,1);
  min-width: 72px;
}
.acc-panel.active { flex: 4.5; }

.acc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,10,30,0.38) 45%,
    rgba(0,10,30,0.88) 100%
  );
  transition: background 0.5s;
}
.acc-panel:not(.active) .acc-overlay {
  background: rgba(0,0,0,0.55);
}

/* Vertical label — shown when panel is collapsed */
.acc-label {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: var(--font-h);
  font-size: 18px; letter-spacing: 5px; color: rgba(255,255,255,0.75);
  text-transform: uppercase; white-space: nowrap;
  transition: opacity 0.4s ease;
  z-index: 3;
}
.acc-panel.active .acc-label { opacity: 0; pointer-events: none; }

/* Panel content — shown when active */
.acc-content {
  position: absolute;
  bottom: 60px; left: 52px; right: 52px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
  z-index: 4; pointer-events: none;
}
.acc-panel.active .acc-content {
  opacity: 1; transform: translateY(0); pointer-events: all;
}

.acc-tag {
  font-size: 10px; font-weight: 700; color: var(--red);
  letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.acc-tag::before { content:''; width:24px; height:2px; background:var(--red); display:block; }

.acc-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.5vw, 80px);
  color: white; line-height: 0.95; letter-spacing: 1px;
  margin-bottom: 18px;
}
.acc-title span { color: #5bc8f5; display: block; }

.acc-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.68);
  line-height: 1.7; max-width: 400px; margin-bottom: 28px;
}

.acc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.acc-btn-p {
  background: var(--red); color: white; border: none;
  padding: 13px 30px; font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.acc-btn-p:hover { background: var(--red-d); transform: translateX(4px); }
.acc-btn-o {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 30px; font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.acc-btn-o:hover { border-color: white; }

/* ── WHATSAPP FLOAT ── */
.wa-btn {
  position: fixed; left: 20px; bottom: 26px; z-index: 9999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; transition: all 0.25s;
  animation: waPulse 2.5s ease infinite;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-btn svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wa-tooltip {
  position: fixed; left: 82px; bottom: 38px; z-index: 9998;
  background: #111; color: white; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  letter-spacing: 0.5px;
}
.wa-tooltip::before {
  content:''; position:absolute; left:-6px; top:50%; transform:translateY(-50%);
  border:6px solid transparent; border-right-color:#111; border-left:none;
}
.wa-btn:hover ~ .wa-tooltip { opacity: 1; }

@keyframes scrollLine { to { top: 200%; } }

/* ── GALLERY SECTION ── */
.gallery-section { padding: 100px 52px; background: var(--white); }
.gallery-header { margin-bottom: 60px; }
.gallery-header h2 {
  font-family: var(--font-h); font-size: clamp(40px, 5vw, 72px);
  color: var(--dark); letter-spacing: 1px; line-height: 1;
}
.gallery-header p { font-size: 15px; color: var(--ash); margin-top: 16px; max-width: 480px; line-height: 1.7; font-weight: 300; }

/* Masonry grid — matches ranconfc style */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 6px;
}
.g-cell { overflow: hidden; position: relative; cursor: pointer; background: var(--light); }
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.g-cell:hover img { transform: scale(1.07); }
.g-cell::after { content: ''; position: absolute; inset: 0; background: rgba(0,119,194,0); transition: background 0.3s; }
.g-cell:hover::after { background: rgba(0,119,194,0.12); }

/* Grid spans — varied sizes like ranconfc */
.g-cell:nth-child(1)  { grid-column: span 2; grid-row: span 2; }
.g-cell:nth-child(2)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(3)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(4)  { grid-column: span 2; grid-row: span 1; }
.g-cell:nth-child(5)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(6)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(7)  { grid-column: span 2; grid-row: span 1; }
.g-cell:nth-child(8)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(9)  { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(10) { grid-column: span 3; grid-row: span 1; }
.g-cell:nth-child(11) { grid-column: span 1; grid-row: span 1; }
.g-cell:nth-child(12) { grid-column: span 2; grid-row: span 1; }

/* ── PROJECTS SECTION ── */
.projects-section { background: var(--dark); padding: 100px 52px; }
.projects-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.projects-head h2 {
  font-family: var(--font-h); font-size: clamp(36px, 4.5vw, 66px);
  color: white; letter-spacing: 1px; line-height: 1; max-width: 560px;
}
.projects-head h2 em { color: #5bc8f5; font-style: normal; }
.see-all {
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); padding: 12px 28px;
  font-family: var(--font-b); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.see-all:hover { background: var(--red); border-color: var(--red); color: white; }

/* Project tabs */
.proj-tabs { display: flex; gap: 0; margin-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.proj-tab {
  padding: 14px 28px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.4); letter-spacing: 1.5px; text-transform: uppercase;
  background: none; border: none; cursor: pointer; font-family: var(--font-b);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.2s;
}
.proj-tab.active { color: white; border-bottom-color: var(--red); }
.proj-tab:hover { color: rgba(255,255,255,0.8); }

/* Project cards grid */
.proj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.proj-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.proj-card:hover img { transform: scale(1.06); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0) 55%);
  transition: all 0.35s;
}
.proj-card:hover .proj-overlay { background: linear-gradient(to top, rgba(0,20,50,0.96) 0%, rgba(0,60,110,0.25) 100%); }
.proj-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; transform: translateY(8px); transition: transform 0.35s;
}
.proj-card:hover .proj-info { transform: translateY(0); }
.proj-tag { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
.proj-name { font-family: var(--font-s); font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; line-height: 1.2; }
.proj-loc { font-size: 12px; color: rgba(255,255,255,0.5); }
.proj-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  opacity: 0; transform: scale(0.7); transition: all 0.3s;
}
.proj-card:hover .proj-arrow { opacity: 1; transform: scale(1); }

/* ── STATS BAR ── */
.stats-bar { background: var(--blue); padding: 0 52px; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 48px 0; border-right: 1px solid rgba(255,255,255,0.15); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h); font-size: 64px; color: white;
  line-height: 1; margin-bottom: 6px; letter-spacing: 1px;
}
.stat-label { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 2.5px; text-transform: uppercase; }

/* ── STORIES / MARQUEE ── */
.marquee-section { padding: 60px 0; background: var(--light); overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 22s linear infinite; }
.marquee-item {
  font-family: var(--font-h); font-size: 72px; color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.12);
  padding: 0 48px; letter-spacing: 2px; text-transform: uppercase; flex-shrink: 0;
  transition: -webkit-text-stroke 0.3s;
}
.marquee-item:hover { -webkit-text-stroke-color: var(--blue); }
.marquee-dot { font-family: var(--font-h); font-size: 72px; color: var(--red); padding: 0 16px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FEATURE SPLIT ── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; }
.feat-img { aspect-ratio: 1/1; overflow: hidden; }
.feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.feat-img:hover img { transform: scale(1.04); }
.feat-body {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.feat-body.dark { background: var(--dark); }
.feat-eyebrow { font-size: 10px; font-weight: 700; color: var(--red); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.feat-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.feat-h { font-family: var(--font-h); font-size: clamp(36px, 3.5vw, 54px); line-height: 1.05; margin-bottom: 20px; letter-spacing: 0.5px; }
.feat-body .feat-h { color: var(--dark); }
.feat-body.dark .feat-h { color: white; }
.feat-p { font-size: 14px; font-weight: 300; line-height: 1.85; margin-bottom: 36px; }
.feat-body .feat-p { color: var(--ash); }
.feat-body.dark .feat-p { color: rgba(255,255,255,0.5); }

.feat-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.feat-list-item { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.feat-body .feat-list-item { color: var(--mid); }
.feat-body.dark .feat-list-item { color: rgba(255,255,255,0.7); }
.feat-bullet { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }

.btn-red { background: var(--red); color: white; border: none; padding: 14px 32px; font-family: var(--font-b); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-red:hover { background: var(--red-d); transform: translateX(4px); }
.btn-blue { background: var(--blue); color: white; border: none; padding: 14px 32px; font-family: var(--font-b); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-blue:hover { background: var(--blue-d); }

/* ── STORIES GRID ── */
.stories-section { padding: 100px 52px; background: var(--white); }
.stories-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
.stories-header h2 { font-family: var(--font-h); font-size: clamp(38px, 4.5vw, 62px); color: var(--dark); letter-spacing: 1px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.story-card { border: 1px solid #e8eaed; overflow: hidden; cursor: pointer; transition: all 0.3s; }
.story-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.story-thumb { aspect-ratio: 16/9; overflow: hidden; }
.story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.story-card:hover .story-thumb img { transform: scale(1.05); }
.story-body { padding: 24px; }
.story-tag { font-size: 10px; font-weight: 700; color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px; }
.story-title { font-family: var(--font-s); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.story-excerpt { font-size: 13px; color: var(--ash); line-height: 1.7; font-weight: 300; margin-bottom: 18px; }
.story-link { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.story-link:hover { color: var(--red-d); }

/* ── CTA FULL BLEED ── */
.cta-full {
  position: relative; height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.35); }
.cta-content { position: relative; z-index: 2; text-align: center; padding: 0 40px; }
.cta-content h2 { font-family: var(--font-h); font-size: clamp(44px, 6vw, 88px); color: white; letter-spacing: 2px; line-height: 1; margin-bottom: 24px; }
.cta-content h2 em { color: #5bc8f5; font-style: normal; }
.cta-content p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-w { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); padding: 14px 32px; font-family: var(--font-b); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-outline-w:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer { background: #090d11; padding: 72px 52px 36px; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 56px; }
.foot-logo img { height: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; margin-bottom: 18px; }
.foot-logo-fb { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.foot-emblem { width: 36px; height: 36px; background: var(--blue); display: flex; align-items: center; justify-content: center; font-family: var(--font-b); font-size: 13px; font-weight: 800; color: white; clip-path: polygon(50%0%,100%25%,100%75%,50%100%,0%75%,0%25%); }
.foot-wm span:first-child { font-family: var(--font-h); font-size: 22px; color: white; display: block; letter-spacing: 1px; }
.foot-wm span:last-child { font-size: 9px; font-weight: 600; letter-spacing: 4px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.foot-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 270px; margin-bottom: 24px; font-weight: 300; }
.foot-addr { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7; font-weight: 300; }
.foot-social { display: flex; gap: 8px; margin-top: 20px; }
.foot-social a { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); font-size: 12px; text-decoration: none; transition: all 0.2s; }
.foot-social a:hover { background: var(--red); border-color: var(--red); color: white; }

.foot-col-h { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.foot-links { display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,0.32); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.foot-links a:hover { color: var(--blue); }

.foot-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.foot-bl { display: flex; gap: 24px; }
.foot-bl a { font-size: 12px; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.2s; }
.foot-bl a:hover { color: var(--blue); }

/* ── FLOAT ── */
.float-wrap { position: fixed; right: 22px; bottom: 26px; z-index: 800; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 11px 17px; font-family: var(--font-b); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.fb-red { background: var(--red); color: white; }
.fb-red:hover { background: var(--red-d); transform: translateX(-3px); }
.fb-blue { background: var(--blue); color: white; }
.fb-blue:hover { background: var(--blue-d); transform: translateX(-3px); }

/* ══════════════════════════════
   HAMBURGER BUTTON (hidden desktop)
══════════════════════════════ */
.mob-arr { display: none; }
.mob-dots { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; transition: all 0.3s;
}
#nav.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mob-nav {
  display: none; position: fixed; inset: 0; z-index: 990;
  background: rgba(10,15,20,0.97); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-family: var(--font-h); font-size: 38px; letter-spacing: 2px;
  color: rgba(255,255,255,0.8); text-decoration: none; text-transform: uppercase;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 260px; text-align: center; transition: color 0.2s;
}
.mob-nav a:hover { color: var(--red); }
.mob-nav-close {
  position: absolute; top: 22px; right: 20px;
  width: 40px; height: 40px; background: none; border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mob-nav-cta {
  margin-top: 24px; background: var(--red) !important; color: white !important;
  font-size: 14px !important; letter-spacing: 3px !important; padding: 16px 36px !important;
  border: none !important;
}

/* ══════════════════════════════
   TABLET (≤1024px)
══════════════════════════════ */
@media(max-width:1024px){
  #nav { padding: 0 20px; }
  section { padding: 70px 28px; }
  footer { padding: 60px 28px 32px; }
  .gallery-section,.projects-section,.why,.landowner,.stats-bar,.cta-full { padding-left:28px;padding-right:28px; }
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(4,160px); }
  .g-cell:nth-child(n) { grid-column:span 1;grid-row:span 1; }
  .g-cell:nth-child(1) { grid-column:span 2;grid-row:span 2; }
  .feature-split { grid-template-columns: 1fr; }
  .feat-img { aspect-ratio: 16/9; }
  .feat-body { padding: 52px 40px; }
  .stories-grid { grid-template-columns: repeat(2,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .landowner-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Keep nav links visible on tablet, just smaller */
  .nav-menu { display: flex; gap: 18px; }
  .nav-menu a { font-size: 11px; letter-spacing: 0.8px; }
  .nav-contact { display: flex; padding: 9px 16px; font-size: 10px; }
  .hamburger { display: none; }
}

/* ══════════════════════════════
   MOBILE (≤768px)
══════════════════════════════ */
@media(max-width:768px){
  #nav { padding: 0 18px; height: 64px; }
  .nav-logo img { height: 34px; }

  /* HERO: accordion → stacked full-panel slider */
  #hero { flex-direction: column; padding-top: 64px; height: 100svh; min-height: 520px; }
  .acc-panel {
    position: absolute; inset: 0; flex: unset;
    opacity: 0; min-width: unset;
    transition: opacity 0.7s ease;
  }
  .acc-panel.active { opacity: 1; z-index: 2; }
  .acc-label { display: none; }
  .acc-content { bottom: 90px; left: 18px; right: 18px; }
  .acc-title { font-size: clamp(32px, 9vw, 52px); }
  .acc-desc { font-size: 13px; max-width: 100%; margin-bottom: 20px; }
  .acc-btn-p,.acc-btn-o { padding: 11px 20px; font-size: 10px; }
  .acc-tag { font-size: 9px; }

  /* Mobile dots */
  .mob-dots { display: flex !important; }
  .mob-arr  { display: flex !important; }

  /* Sections */
  section { padding: 52px 18px; }
  .gallery-section,.projects-section,.why,.landowner,.stories-section { padding: 52px 18px; }
  footer { padding: 44px 18px 24px; }

  /* Gallery */
  .gallery-header { margin-bottom: 36px; }
  .gallery-header h2 { font-size: clamp(26px, 7vw, 38px); }
  .gallery-header p { font-size: 13px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(6,120px); }
  .g-cell:nth-child(n) { grid-column:span 1;grid-row:span 1; }
  .g-cell:nth-child(1) { grid-column:span 2;grid-row:span 2; }
  .g-cell:nth-child(10) { grid-column:span 2; }

  /* Projects */
  .projects-head { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 28px; }
  .projects-head h2 { font-size: clamp(28px, 8vw, 44px); }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 0; }
  .proj-tab { padding: 10px 16px; font-size: 10px; white-space: nowrap; }
  .see-all { padding: 10px 18px; font-size: 10px; }

  /* Stats */
  .stats-bar { padding: 0 18px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 40px; }
  .stat-label { font-size: 9px; }
  .stat-item { padding: 28px 0; }

  /* Why */
  .why { padding: 52px 18px; }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-num { font-size: 28px; min-width: 36px; }

  /* Feature split */
  .feature-split { grid-template-columns: 1fr; }
  .feat-body { padding: 36px 18px; order: 2; }
  .feat-img { order: 1; }
  .feat-h { font-size: clamp(26px, 7vw, 38px); }
  .feat-p { font-size: 13px; }
  .feat-list-item { font-size: 12px; }

  /* Collections */
  .col-grid { grid-template-columns: repeat(2,1fr); }
  .col-title { font-size: 17px; }
  .col-tag { font-size: 9px; }

  /* Stories / Services */
  .stories-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stories-header h2 { font-size: clamp(26px, 7vw, 38px); }
  .stories-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-body { padding: 18px; }
  .story-title { font-size: 16px; }

  /* Marquee */
  .marquee-section { padding: 36px 0; }
  .marquee-item { font-size: 40px; padding: 0 24px; }
  .marquee-dot { font-size: 40px; }

  /* CTA banner */
  .cta-banner { flex-direction: column; padding: 48px 18px; gap: 20px; }
  .cta-banner h2 { font-size: clamp(24px, 7vw, 36px); }
  .cta-btns { flex-direction: column; gap: 10px; }

  /* Career */
  #career { padding: 52px 18px !important; }
  #career > div { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* CTA full */
  .cta-content h2 { font-size: clamp(30px, 8vw, 48px); }
  .cta-content p { font-size: 13px; }
  .cta-btns a { padding: 14px 28px; font-size: 11px; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .foot-bl { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Float */
  .float-wrap { right: 12px; bottom: 18px; gap: 7px; }
  .float-btn { padding: 9px 12px; font-size: 9px; letter-spacing: 1px; }

  /* WhatsApp */
  .wa-btn { left: 12px; bottom: 18px; width: 46px; height: 46px; }
  .wa-btn svg { width: 24px; height: 24px; }
  .wa-tooltip { display: none !important; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .process-connector { display: none; }
  .process-head { margin-bottom: 36px; }
}

/* ══════════════════════════════
   SMALL MOBILE (≤420px)
══════════════════════════════ */
@media(max-width:420px){
  .acc-title { font-size: 30px; }
  .acc-content { left: 14px; right: 14px; bottom: 80px; }
  .col-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 36px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .g-cell, .g-cell:nth-child(n) { grid-column:span 1; grid-row:span 1; height: 180px; }
  .about-feats { grid-template-columns: 1fr !important; }
  .hero-actions { flex-direction: column; }
  .cta-btns { flex-direction: column; }
  .foot-social a { width: 30px; height: 30px; }
}

/* ══════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════ */
.page-hero {
  height: 52vh; min-height: 340px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 0 60px 52px; position: relative;
  margin-top: 72px;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,10,30,0.78) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--red);
  letter-spacing: 4px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.page-hero-eyebrow::before { content:''; width:24px; height:2px; background:var(--red); display:block; }
.page-hero-title {
  font-family: var(--font-h); font-size: clamp(42px, 6vw, 80px);
  color: white; letter-spacing: 1px; line-height: 0.95;
}
.page-hero-title em { color: #5bc8f5; font-style: normal; }

/* Active nav link */
.nav-menu a.active-page { color: var(--red) !important; }
.nav-menu a.active-page::after { transform: scaleX(1); background: var(--red); }

/* Breadcrumb */
.breadcrumb {
  background: var(--light); padding: 14px 60px;
  font-size: 12px; color: var(--ash); display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb span { color: var(--ash-light); }

/* Contact form */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 2px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-b); font-size: 14px; color: var(--dark);
  border: 1.5px solid #e0e3e8; padding: 13px 16px; outline: none;
  background: var(--white); transition: border-color 0.2s; border-radius: 0;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: var(--red); color: white; border: none;
  padding: 15px 40px; font-family: var(--font-b); font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--red-d); transform: translateX(4px); }

/* Info card */
.info-card {
  background: var(--dark); padding: 36px;
  border-top: 4px solid var(--red);
}
.info-card-title { font-family: var(--font-h); font-size: 22px; color: white; letter-spacing: 1px; margin-bottom: 24px; }
.info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.info-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.info-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }
.info-text strong { color: white; font-weight: 600; display: block; margin-bottom: 2px; font-size: 14px; }

@media(max-width:768px){
  .page-hero { padding: 0 18px 40px; height: 44vh; min-height: 280px; }
  .breadcrumb { padding: 12px 18px; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* ══════════════════════════════
   FLOAT BUTTONS — simplified
══════════════════════════════ */
.float-wrap {
  position: fixed; right: 20px; bottom: 26px; z-index: 800;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 20px; font-family: var(--font-b); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22); white-space: nowrap;
}
.fb-red  { background: var(--red);  color: white; }
.fb-red:hover  { background: var(--red-d);  transform: translateX(-4px); }
.fb-wa   { background: #25D366; color: white; }
.fb-wa:hover   { background: #1ebe5d; transform: translateX(-4px); }

/* ══════════════════════════════
   APPOINTMENT MODAL
══════════════════════════════ */
.appt-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.appt-overlay.open { display: flex; }

.appt-modal {
  background: white; width: 100%; max-width: 580px;
  max-height: 92vh; overflow-y: auto;
  position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalIn { from { opacity:0; transform:scale(0.92) translateY(20px); } to { opacity:1; transform:none; } }

.appt-header {
  background: var(--dark); padding: 32px 36px 28px;
  border-bottom: 3px solid var(--red);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.appt-header h3 {
  font-family: var(--font-h); font-size: 30px; color: white;
  letter-spacing: 1px; line-height: 1;
}
.appt-header p { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 6px; }
.appt-close {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: white; width: 36px; height: 36px; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  font-size: 18px; flex-shrink: 0; margin-top: -4px; transition: all 0.2s;
}
.appt-close:hover { background: var(--red); border-color: var(--red); }

.appt-body { padding: 32px 36px; }
.appt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.appt-group { display: flex; flex-direction: column; gap: 6px; }
.appt-group.full { grid-column: span 2; }
.appt-group label {
  font-size: 10px; font-weight: 700; color: var(--blue);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.appt-group input,
.appt-group select,
.appt-group textarea {
  font-family: var(--font-b); font-size: 14px; color: var(--dark);
  border: 1.5px solid #e0e3e8; padding: 12px 14px; outline: none;
  background: var(--white); transition: border-color 0.2s; width: 100%;
}
.appt-group input:focus,
.appt-group select:focus,
.appt-group textarea:focus { border-color: var(--blue); }
.appt-group textarea { resize: vertical; min-height: 90px; }

.appt-submit {
  width: 100%; background: var(--red); color: white; border: none;
  padding: 16px; font-family: var(--font-b); font-size: 13px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; margin-top: 20px;
}
.appt-submit:hover { background: var(--red-d); }
.appt-submit:disabled { background: var(--ash); cursor: not-allowed; }

/* Success screen */
.appt-success {
  display: none; text-align: center; padding: 48px 36px;
  flex-direction: column; align-items: center; gap: 16px;
}
.appt-success.show { display: flex; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #22c55e);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin-bottom: 8px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.appt-success h3 {
  font-family: var(--font-h); font-size: 28px; color: var(--dark); letter-spacing: 1px;
}
.appt-success p { font-size: 15px; color: var(--ash); line-height: 1.7; max-width: 380px; }
.appt-success .success-ref {
  background: var(--light); padding: 12px 24px;
  font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 1px;
}
.appt-success .btn-close-success {
  background: var(--dark); color: white; border: none;
  padding: 13px 36px; font-family: var(--font-b); font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; margin-top: 8px; transition: background 0.2s;
}
.appt-success .btn-close-success:hover { background: var(--red); }

/* Spinner */
.appt-spinner {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white; border-radius: 50%;
  animation: spin 0.7s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media(max-width:600px){
  .appt-modal { max-height: 100vh; }
  .appt-header { padding: 24px 20px 20px; }
  .appt-body { padding: 24px 20px; }
  .appt-grid { grid-template-columns: 1fr; }
  .appt-group.full { grid-column: span 1; }
  .appt-header h3 { font-size: 24px; }
}
/* ── PROFESSIONAL PROJECTS SECTION ── */
.projects-section {
  background: var(--dark);
  padding: 100px 52px;
  color: white;
}

.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.projects-head h2 {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 1px;
}

.projects-head h2 em {
  color: #5bc8f5;
  font-style: normal;
}

.see-all {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
}

.see-all:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Stats */
.proj-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 70px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-h);
  font-size: 52px;
  line-height: 1;
  color: white;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Project Grid */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.proj-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.proj-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.proj-card:hover img {
  transform: scale(1.08);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.3) 70%);
  transition: all 0.4s;
}

.proj-card:hover .proj-overlay {
  background: linear-gradient(to top, rgba(0,20,40,0.9) 20%, rgba(0,77,140,0.4) 80%);
}

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  z-index: 2;
  transition: all 0.4s;
}

.proj-tag {
  font-size: 10px;
  font-weight: 700;
  color: #5bc8f5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.proj-name {
  font-family: var(--font-h);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.proj-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.proj-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s;
  z-index: 3;
}

.proj-card:hover .proj-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Responsive */
@media(max-width: 768px) {
  .projects-section {
    padding: 60px 18px;
  }
  .proj-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .proj-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}