/* ══════════════════════════════════════════════════
   VESTARS GROUP — PREMIUM CSS
   Design System: Dark Luxury · Gold Accents · Editorial
   Fonts: Playfair Display + DM Sans
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  --gold:        #B8965A;
  --gold-light:  #D4AE78;
  --gold-dark:   #7A6030;
  --gold-faint:  rgba(184,150,90,0.08);
  --ink:         #080806;
  --deep:        #0D0C09;
  --surface:     #141310;
  --raise:       #1C1A16;
  --muted:       #2A2820;
  --fog:         #6A6660;
  --ash:         #9A9690;
  --linen:       #E8E4DC;
  --white:       #F5F2EC;

  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-sans:     'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:       160px;
  --section-px:  clamp(2rem, 5vw, 6rem);
  --section-py:  clamp(5rem, 10vw, 10rem);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body {
  background: var(--ink);
  color: var(--linen);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color: inherit; }
img { max-width:100%; display:block; }
button { font-family: inherit; cursor: none; }

/* ══════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(184,150,90,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}
.cursor.hovered { width: 16px; height: 16px; }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold); }
/* Disable custom cursor on touch / mobile devices */
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  button, a { cursor: pointer !important; }
}

/* ══════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
#preloader.out { opacity: 0; visibility: hidden; }
.preloader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.preloader-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.pl-mark {
  font-family: var(--ff-serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: plFadeIn 0.8s var(--ease-out) 0.2s forwards;
}
.pl-text {
  font-family: var(--ff-sans);
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.5em;
  color: var(--linen);
  opacity: 0;
  animation: plFadeIn 0.8s var(--ease-out) 0.5s forwards;
}
.preloader-line {
  width: 240px; height: 1px;
  background: var(--muted);
  overflow: hidden;
}
.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  animation: plLoad 2s var(--ease-in-out) 0.8s forwards;
}
.preloader-pct {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--fog);
  opacity: 0;
  animation: plFadeIn 0.5s var(--ease-out) 1s forwards;
}
@keyframes plFadeIn { to { opacity: 1; } }
@keyframes plLoad { to { transform: scaleX(1); } }

/* ══════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════ */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
  padding: 0;
}
#siteHeader.scrolled {
  background: rgba(8,8,6,0.94);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(184,150,90,0.12);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-v {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lw-brand {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--linen);
}
.lw-group {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.5em;
  color: var(--ash);
  margin-top: 2px;
}

/* Uploaded logo image */
.logo-img { height:136px; width:auto; max-width:520px; object-fit:contain; }
.pl-logo-img { height:120px; width:auto; max-width:480px; object-fit:contain; filter:brightness(1.1); }
.ft-logo-img { height:104px; width:auto; max-width:440px; object-fit:contain; opacity:.9; }
/* Mobile: logo smaller so it fits in header */
@media (max-width: 900px) {
  .logo-img    { height: 48px !important; max-width: 180px !important; }
  .pl-logo-img { height: 120px !important; max-width: 480px !important; }
  .ft-logo-img { height: 36px !important; max-width: 140px !important; }
}

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  align-items: center;
}
.dn-link {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.3s;
  position: relative;
}
.dn-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.1rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.dn-link:hover, .dn-link.active { color: var(--linen); }
.dn-link:hover::after, .dn-link.active::after { width: calc(100% - 2.2rem); }
.has-sub { position: relative; }
.subnav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: rgba(14,13,10,0.97);
  border: 1px solid rgba(184,150,90,0.15);
  backdrop-filter: blur(20px);
  list-style: none;
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-out);
}
.has-sub:hover .subnav {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.subnav li a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--ash);
  transition: color 0.2s, padding-left 0.2s;
}
.subnav li a:hover { color: var(--gold); padding-left: 1.8rem; }

/* Header Right */
.header-right { display:flex; align-items:center; gap:1.5rem; }
.hdr-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(184,150,90,0.5);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.35s var(--ease-out);
}
.hdr-cta:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}
.mt-bar {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--linen);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.menu-toggle.open .mt-bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.open .mt-bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  position: fixed;
  top: 0;           /* covers full screen including header */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,8,6,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 980;     /* below header (header is z-index 1000) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--section-px) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.4s var(--ease-out), visibility 0.4s, transform 0.4s var(--ease-out);
}
.mob-menu.open { opacity: 1; visibility: visible; transform: none; }
.mob-list { list-style: none; }
.mob-list li {
  border-bottom: 1px solid rgba(184,150,90,0.08);
  overflow: hidden;
}
.mob-list li a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 400;
  color: var(--linen);
  transition: color 0.3s, padding-left 0.3s;
}
.mob-list li a:hover { color: var(--gold); padding-left: 0.5rem; }
.mob-list li a em {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
  min-width: 24px;
}
.mob-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184,150,90,0.1);
  font-size: 0.85rem;
  color: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ══════════════════════════════════════════════════
   ANIMATION BASE CLASSES
══════════════════════════════════════════════════ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-anim="fade-up"] { transform: translateY(40px); }
[data-anim="fade-left"] { transform: translateX(-40px); }
[data-anim="fade-right"] { transform: translateX(40px); }
[data-anim="expand-x"] { transform: scaleX(0); transform-origin: left; opacity:1; }
[data-anim].visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;  /* body grows, stats fixed at bottom */
  overflow: hidden;
  padding-top: var(--nav-h);
  background: #0D0C09;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-bg > img.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hbg-gradient {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(8,8,6,0.65) 0%,
      rgba(8,8,6,0.35) 35%,
      rgba(8,8,6,0.35) 65%,
      rgba(8,8,6,0.85) 100%);
}
.hbg-mesh {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.hbg-lines { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
/* Hero visual background — shows when no photo uploaded */
.hero-bg-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 60%, rgba(40,32,15,0.95) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(20,16,8,0.9) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #1a1710 0%, #0a0908 100%);
}
.hero-bg-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-bg-visual::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center,
    rgba(184,150,90,0.08) 0%,
    rgba(184,150,90,0.04) 30%,
    transparent 70%);
  border-radius: 50%;
}
.hl {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.12) 30%, rgba(184,150,90,0.12) 70%, transparent);
  animation: hlFall 6s ease-in-out infinite alternate;
}
@keyframes hlFall {
  0% { opacity: 0.3; transform: scaleY(0.6) translateY(-20%); }
  100% { opacity: 0.7; transform: scaleY(1) translateY(0); }
}

.hero-side-l, .hero-side-r {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.hero-side-l { left: var(--section-px); }
.hero-side-r { right: var(--section-px); }
.side-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.scroll-track {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: trackPulse 2s ease-in-out infinite;
}
@keyframes trackPulse { 50% { opacity: 0.4; } }
.side-scroll span {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
}
.est-tag {
  writing-mode: vertical-rl;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem var(--section-px) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  align-self: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(184,150,90,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  backdrop-filter: blur(8px);
  background: rgba(184,150,90,0.05);
}
.chip-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: chipBlink 2s ease-in-out infinite;
}
@keyframes chipBlink { 50% { opacity: 0.3; } }

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.ht-italic {
  font-style: italic;
  color: var(--gold);
  font-size: clamp(4rem, 9vw, 8rem);
}
.ht-sub {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-style: normal;
  margin-top: 0.5rem;
}
.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero Stats bar — grid row 2, always below body */
.hero-stats {
  position: relative;
  z-index: 2;
  grid-row: 2;
  background: rgba(8,8,6,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(184,150,90,0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.8rem var(--section-px);
  width: 100%;
}
.hs-item { text-align: center; }
.hs-num {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hs-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
  display: block;
}
.hs-sep {
  width: 1px;
  background: rgba(184,150,90,0.15);
  align-self: stretch;
}

/* ══════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════ */
.marquee-band {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid rgba(184,150,90,0.1);
  border-bottom: 1px solid rgba(184,150,90,0.1);
  padding: 1.2rem 0;
}
.mq-track {
  display: flex;
  width: max-content;
  animation: mqScroll 30s linear infinite;
}
.mq-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 2.5rem;
  white-space: nowrap;
}
.mq-inner span {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}
.mq-inner b {
  color: var(--gold);
  font-size: 0.4rem;
  font-weight: 900;
}
@keyframes mqScroll { to { transform: translateX(-50%); } }
.marquee-band:hover .mq-track { animation-play-state: paused; }

/* ══════════════════════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════════════════════ */
.about-sect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  overflow: hidden;
}
.as-visual {
  position: relative;
  background: var(--surface);
}
.asv-stack {
  position: absolute;
  inset: 0;
}
.asv-main {
  position: absolute;
  top: 0; left: 0;
  right: 30%;
  bottom: 25%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out);
  overflow: hidden;
}
.asv-accent {
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 0;
  left: 55%;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--ink);
  transition: transform 0.8s var(--ease-out);
  overflow: hidden;
}
.asv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.asv-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1C1A14 0%, #141210 100%);
}
.asp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.4;
}
.asp-inner span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-sect:hover .asv-main { transform: scale(1.03); }
.about-sect:hover .asv-accent { transform: scale(1.02) translateY(-4px); }
.asv-badge {
  position: absolute;
  bottom: 3rem; left: 3rem;
  z-index: 5;
  padding: 2rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
}
.asv-badge-num {
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.asv-badge-text {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(0,0,0,0.65);
  margin-top: 0.3rem;
}
.asv-badge-hr { border: none; border-top: 1px solid rgba(0,0,0,0.2); margin: 1rem 0; }
.asv-badge-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

.as-content {
  padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep);
}

/* ══════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════ */
.sect-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.sect-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--gold);
}
.sect-label.light { color: rgba(184,150,90,0.7); }
.sect-label.light::before { background: rgba(184,150,90,0.4); }

.sect-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.sect-title em {
  font-style: italic;
  color: var(--gold);
}
.sect-intro {
  font-size: 0.95rem;
  color: var(--fog);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 0;
}

.gold-bar {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.txt-lg {
  font-size: 1rem;
  color: var(--linen);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.txt-sm {
  font-size: 0.88rem;
  color: var(--fog);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
}
.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pi-icon { margin-bottom: 0.3rem; }
.pi-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--linen);
  letter-spacing: 0.05em;
}
.pi-desc {
  font-size: 0.72rem;
  color: var(--fog);
  line-height: 1.5;
}

/* Arrow Link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.4s var(--ease-out);
}
.arrow-link:hover { gap: 1.3rem; }
.arrow-link svg { transition: transform 0.3s; }
.arrow-link:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   COMPANIES SECTION
══════════════════════════════════════════════════ */
.companies-sect {
  background: var(--surface);
  padding: var(--section-py) var(--section-px);
}
.cs-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cs-head .sect-label { justify-content: center; }
.cs-head .sect-label::before { display: none; }

.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.comp-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  cursor: none;
  text-decoration: none;
}
.cc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out), filter 0.6s;
  filter: saturate(0.6) brightness(0.5);
  overflow: hidden;
}
.cc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: inherit;
}
.cc-img-fallback {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.comp-card:hover .cc-img {
  transform: scale(1.06);
  filter: saturate(0.8) brightness(0.55);
}
.cc-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,0.95) 0%, rgba(8,8,6,0.4) 50%, rgba(8,8,6,0.15) 100%);
  transition: background 0.5s;
}
.comp-card:hover .cc-veil {
  background: linear-gradient(to top, rgba(8,8,6,0.98) 0%, rgba(8,8,6,0.6) 50%, rgba(8,8,6,0.25) 100%);
}
.cc-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
}
.cc-num {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(184,150,90,0.15);
  line-height: 1;
  transition: color 0.4s;
}
.comp-card:hover .cc-num { color: rgba(184,150,90,0.3); }
.cc-center { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 1rem; }
.cc-tag {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out) 0.1s;
}
.comp-card:hover .cc-tag { opacity: 1; transform: none; }
.cc-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}
.cc-info {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 180px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out) 0.15s;
}
.comp-card:hover .cc-info { opacity: 1; transform: none; }
.cc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184,150,90,0.15);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: border-color 0.3s;
}
.comp-card:hover .cc-foot { border-color: rgba(184,150,90,0.4); }
.cc-foot svg { transition: transform 0.4s var(--spring); }
.comp-card:hover .cc-foot svg { transform: translate(3px, -3px); }
.cc-border {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
  transform-origin: left;
}
.comp-card:hover .cc-border { transform: scaleX(1); }

/* ══════════════════════════════════════════════════
   NUMBERS BAND
══════════════════════════════════════════════════ */
.numbers-band {
  position: relative;
  background: var(--deep);
  padding: clamp(5rem, 10vw, 8rem) var(--section-px);
  overflow: hidden;
  border-top: 1px solid rgba(184,150,90,0.08);
  border-bottom: 1px solid rgba(184,150,90,0.08);
}
.nb-bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(184,150,90,0.03);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.2em;
  user-select: none;
}
.nb-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.nb-stat { text-align: center; }
.nb-val {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.nb-val sup {
  font-size: 0.4em;
  margin-top: 0.3em;
  color: var(--gold-light);
}
.nb-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  line-height: 1.5;
  margin-top: 0.8rem;
}
.nb-vline {
  grid-column: span 1;
  height: 80px;
  width: 1px;
  background: rgba(184,150,90,0.15);
  justify-self: center;
}

/* ══════════════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════════════ */
.projects-sect {
  background: var(--surface);
  padding: var(--section-py) var(--section-px);
}
.proj-sect-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.proj-filters {
  display: flex;
  gap: 0;
  border: 1px solid rgba(184,150,90,0.15);
}
.pf {
  padding: 0.7rem 1.4rem;
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  background: none;
  border: none;
  border-right: 1px solid rgba(184,150,90,0.15);
  transition: all 0.3s;
  cursor: none;
}
.pf:last-child { border-right: none; }
.pf:hover { color: var(--linen); background: rgba(184,150,90,0.05); }
.pf.active { background: var(--gold); color: var(--ink); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 340px;
  gap: 3px;
}
.pj {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  cursor: none;
  transition: opacity 0.4s, transform 0.4s;
}
.pj-lg { grid-column: span 6; }
.pj-wide { grid-column: span 6; }
.pj-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-out), filter 0.5s;
  filter: brightness(0.55) saturate(0.7);
  overflow: hidden;
}
.pj-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: inherit;
  filter: inherit;
}
.pj:hover .pj-img { transform: scale(1.06); filter: brightness(0.4) saturate(0.8); }
.pj-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.pj:hover .pj-overlay { opacity: 1; }
.pj-ov-content { z-index: 1; }
.pj-ov-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pj-ov-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pj-ov-loc { font-size: 0.72rem; color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.pj-ov-btn {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
}
.pj-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(8,8,6,0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  transition: opacity 0.4s;
}
.pj:hover .pj-foot { opacity: 0; }
.pj-foot-cat {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.pj-foot-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--linen);
}

.proj-all-btn {
  text-align: center;
  margin-top: 4rem;
}

/* Buttons */
.btn-gold, .btn-stroke, .btn-outline-gold, .btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease-out);
  cursor: none;
}
.btn-gold {
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-stroke {
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--linen);
}
.btn-stroke:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-outline-gold {
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(184,150,90,0.4);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }

/* ══════════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════════ */
.manifesto-sect {
  position: relative;
  background: var(--deep);
  padding: clamp(8rem, 14vw, 14rem) var(--section-px);
  text-align: center;
  overflow: hidden;
}
.ms-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 20vw, 18rem);
  font-weight: 700;
  color: rgba(184,150,90,0.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3em;
  user-select: none;
}
.ms-body { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.ms-qmark {
  font-family: var(--ff-serif);
  font-size: 10rem;
  font-weight: 400;
  color: rgba(184,150,90,0.1);
  line-height: 0.5;
  margin-bottom: 1rem;
}
.ms-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  font-style: normal;
  margin-bottom: 3rem;
}
.ms-quote em { color: var(--gold); font-style: italic; }
.ms-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog);
}
.ms-author-line { width: 40px; height: 1px; background: var(--gold); }

/* ══════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
.process-sect {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8rem;
  align-items: start;
  padding: var(--section-py) var(--section-px);
  background: var(--surface);
}
.ps-left { position: sticky; top: calc(var(--nav-h) + 2rem); }
.ps-right { display: flex; flex-direction: column; }
.ps-step {
  display: grid;
  grid-template-columns: 60px 1px 1fr;
  gap: 0 2rem;
  align-items: start;
}
.pss-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(184,150,90,0.2);
  transition: color 0.4s;
  line-height: 1;
  padding-top: 0.1rem;
}
.ps-step:hover .pss-num { color: var(--gold); }
.pss-line {
  width: 1px;
  height: 100%;
  min-height: 80px;
  background: rgba(184,150,90,0.1);
  align-self: stretch;
}
.ps-step.last .pss-line { display: none; }
.pss-content {
  padding-bottom: 3rem;
  padding-top: 0.1rem;
}
.pss-content h4 {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--linen);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.pss-content p { font-size: 0.82rem; color: var(--fog); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  background: var(--gold);
  padding: clamp(5rem, 10vw, 8rem) var(--section-px);
  overflow: hidden;
}
.cta-band-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}
.cta-title em { font-style: italic; }
.cta-left p { font-size: 0.9rem; color: rgba(0,0,0,0.55); }
.cta-left .sect-label { color: rgba(0,0,0,0.45); }
.cta-left .sect-label::before { background: rgba(0,0,0,0.25); }
.cta-right { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.5rem;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.35s var(--ease-out);
  cursor: none;
}
.btn-cta-white:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(0,0,0,0.65);
  transition: color 0.3s;
}
.cta-phone-link:hover { color: var(--ink); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(184,150,90,0.1);
}
.ft-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem var(--section-px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 6rem;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.ftl-v {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.ftl-txt { display: flex; flex-direction: column; line-height: 1; }
.ftl-txt span {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--linen);
}
.ftl-txt small {
  font-size: 0.5rem;
  letter-spacing: 0.5em;
  color: var(--fog);
  margin-top: 3px;
}
.ft-tagline {
  font-size: 0.82rem;
  color: var(--fog);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ft-social { display: flex; gap: 1rem; }
.fts {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,150,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fog);
  transition: all 0.3s;
}
.fts:hover { border-color: var(--gold); color: var(--gold); }

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.ft-col h5 {
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.ft-col ul li a {
  font-size: 0.82rem;
  color: var(--fog);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.ft-col ul li a:hover { color: var(--linen); padding-left: 4px; }
.ft-addr { font-size: 0.78rem; color: var(--fog); line-height: 1.7; }

.ft-bottom {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem var(--section-px);
  border-top: 1px solid rgba(184,150,90,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ft-bottom span {
  font-size: 0.72rem;
  color: var(--fog);
  letter-spacing: 0.05em;
}
.ft-bottom-links { display: flex; gap: 2rem; }
.ft-bottom-links a {
  font-size: 0.72rem;
  color: var(--fog);
  transition: color 0.2s;
}
.ft-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   PAGE HERO (subpages)
══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 5rem;
}
.ph-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.6);
  transition: transform 0.8s var(--ease-out);
}
.page-hero:hover .ph-bg { transform: scale(1.03); }
.ph-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,0.9) 0%, transparent 60%);
}
.ph-content {
  position: relative; z-index: 1;
  padding: 0 var(--section-px);
  width: 100%;
}
.ph-breadcrumb {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 1rem;
}
.ph-breadcrumb a { color: var(--fog); transition: color 0.2s; }
.ph-breadcrumb a:hover { color: var(--gold); }
.ph-breadcrumb span { color: rgba(184,150,90,0.3); }
.ph-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
}
.ph-title em { font-style: italic; color: var(--gold); }

/* Section inner wrapper */
.section-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}
.section-wrap-sm {
  max-width: 1440px;
  margin: 0 auto;
  padding: calc(var(--section-py)*0.6) var(--section-px);
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .nb-inner { grid-template-columns: repeat(7,1fr); }
}

@media (max-width: 1024px) {
  .about-sect { grid-template-columns: 1fr; }
  .as-visual { height: 450px; position: relative; min-height: 0; }
  .asv-stack, .asv-main, .asv-accent { position: absolute; }
  .process-sect { grid-template-columns: 1fr; gap: 4rem; }
  .ps-left { position: static; }
  .ft-top { grid-template-columns: 1fr; gap: 3rem; }
  .ft-cols { grid-template-columns: repeat(2,1fr); gap: 3rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-side-l, .hero-side-r { display: none; }
  .hero-stats { grid-template-columns: repeat(2,1fr); padding: 1.2rem 1.5rem; }
  .hs-sep:nth-child(4) { display: none; }
  .proj-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pj { grid-column: span 1; height: 260px; }
  .pj-lg, .pj-wide { grid-column: span 2; height: 320px; }
  .comp-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .nb-inner { grid-template-columns: repeat(4,1fr); gap: 2rem; }
  .nb-vline { display: none; }
  .nb-stat:nth-child(2), .nb-stat:nth-child(4), .nb-stat:nth-child(6) { display: block; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .process-sect { padding: 4rem var(--section-px); }
  .ps-step { gap: 0 1rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .ht-italic { font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .comp-grid { grid-template-columns: 1fr; }
  .comp-card { min-height: 380px; }
  .proj-grid { grid-template-columns: 1fr; }
  .pj, .pj-lg, .pj-wide { grid-column: span 1; height: 260px; }
  .nb-inner { grid-template-columns: repeat(2,1fr); }
  .ft-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .pillars { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}
.wa-float-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  flex-shrink: 0;
}
.wa-float-btn svg { width: 28px; height: 28px; }
.wa-float:hover .wa-float-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float-label {
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 24px 0 0 24px;
  margin-right: -4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  letter-spacing: 0.02em;
}
.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}
/* Pulse animation */
.wa-float-btn::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float { bottom: 1.2rem; right: 1.2rem; }
  .wa-float-btn { width: 50px; height: 50px; }
  .wa-float-label { display: none; }
}

/* ══════════════════════════════════════════════════
   PERFORMANS OPTİMİZASYONLARI
══════════════════════════════════════════════════ */
/* Ekran dışı bölümler için lazy render */
.about-sect,
.companies-sect,
.numbers-band,
.projects-sect,
.manifesto-sect,
.process-sect,
.sc-services,
.sc-projects,
.sc-process,
.sc-feat-band {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}
/* Tüm görseller için smooth load */
img {
  image-rendering: auto;
}
img[loading="lazy"] {
  transition: opacity 0.3s ease;
}
