/* ============================================
   ART & GIN — GLOBAL STYLES v4
   Charcoal Black + Luxury Gold redesign
   Brand Incubator pivot
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg:           #0B0B0C;
  --bg-surface:   #111113;
  --bg-card:      #18181B;
  --gold:         #D4AF37;
  --gold-light:   #E8C84A;
  --gold-dim:     rgba(212,175,55,0.12);
  --gold-border:  rgba(212,175,55,0.18);
  --white:        #FFFFFF;
  --off-white:    #F5F0E8;
  --grey:         #8A8A8A;
  --grey-light:   #5A5A5A;
  --border:       rgba(212,175,55,0.15);

  --font-heading: 'PT Serif', Georgia, serif;
  --font-body:    'Montserrat', -apple-system, sans-serif;

  --nav-height:   96px;
  --section-pad:  clamp(40px, 6vw, 80px);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--off-white);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: 2px; }

/* === GRAIN TEXTURE === */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* === UTILITY === */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 60px); }

.section-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px; display: block;
}

.section-heading {
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: var(--white);
}

.section-body { font-size: clamp(15px, 1.15vw, 17px); color: var(--off-white); font-weight: 400; max-width: 540px; line-height: 1.8; }
.section-body p + p { margin-top: 1.2em; }
.divider { width: 50px; height: 1px; background: var(--gold); margin: 28px 0; opacity: 0.4; }
.reveal { opacity: 0; transform: translateY(50px); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 42px;
  border: 1px solid var(--gold);
  color: var(--bg);
  background: var(--gold);
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
  box-shadow: 0 4px 24px rgba(212,175,55,0.2);
}
.btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 32px rgba(212,175,55,0.35);
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn--outline {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 6px 32px rgba(212,175,55,0.3);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 60px);
  height: var(--nav-height);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0;
  background: rgba(11,11,12,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav--scrolled {
  background: rgba(11,11,12,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav--inner { background: var(--bg-surface); border-bottom: 1px solid var(--border); }

.nav__logo-img { height: 72px; width: 72px; object-fit: contain; z-index: 1001; position: relative; }
.nav > a:first-child { justify-self: start; }
.nav__cta { justify-self: end; }

.nav__links { display: flex; align-items: center; justify-content: center; gap: 24px; list-style: none; }
.nav__links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { width: 100%; }

.nav__cta {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__cta:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.nav__cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 0;
}
.nav__hamburger span { display: block; width: 24px; height: 1px; background: var(--white); transition: transform 0.35s, opacity 0.25s; }
.nav__hamburger span:nth-child(1) { margin-bottom: 6px; }
.nav__hamburger span:nth-child(3) { margin-top: 6px; }
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: var(--nav-height) 0 40px 0;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; z-index: 999;
  border-top: 1px solid var(--border);
}
.nav__mobile.open { opacity: 1; visibility: visible; }
.nav__mobile a {
  display: block; width: auto; padding: 12px 0;
  font-family: var(--font-heading); font-size: 18px; font-weight: 400;
  color: var(--white); transition: color 0.3s;
  letter-spacing: 0.05em; text-align: center;
}
.nav__mobile a:hover { color: var(--gold); }

.nav__mobile-content { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }

.nav__mobile-socials { display: flex; align-items: center; justify-content: center; gap: 20px; }
.nav__mobile-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%; color: var(--gold); transition: background 0.3s, border-color 0.3s;
}
.nav__mobile-socials a:hover { background: rgba(212,175,55,0.1); border-color: var(--gold); }
.nav__mobile-socials svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================
   PARALLAX BAND
   ============================================ */
.parallax-band {
  position: relative;
  height: clamp(280px, 40vw, 480px);
  overflow: hidden;
}
.parallax-band__img {
  position: absolute; top: -25%; left: 0;
  width: 100%; height: 150%;
  object-fit: cover; will-change: transform;
}
.parallax-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.6) 0%, rgba(11,11,12,0.75) 100%);
  z-index: 1;
}
.parallax-band__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.parallax-band__content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--white); margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.parallax-band__content p {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 700;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; height: 100vh; min-height: min(640px, 100svh);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--bg);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(212,175,55,0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,11,12,0.15) 0%, rgba(11,11,12,0.05) 50%, rgba(11,11,12,0.4) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center; max-width: 840px; padding: 0 24px;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px; display: block;
  opacity: 0; transform: translateY(20px);
}
.hero__title {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700; color: var(--white);
  line-height: 1.08; margin-bottom: 24px;
  letter-spacing: 0.01em;
  opacity: 0; transform: translateY(30px);
}
.hero__sub {
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 600; color: rgba(255,255,255,1);
  margin-bottom: 16px; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(20px);
}
.hero__body {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500; color: rgba(255,255,255,0.95);
  max-width: 580px; margin: 0 auto 48px;
  line-height: 1.75;
  opacity: 0; transform: translateY(20px);
}
.hero__btns {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0;
}
.hero__scroll span { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero__scroll svg { width: 20px; height: 20px; stroke: var(--gold); animation: scrollBounce 2s ease infinite; opacity: 0.7; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
}
@media (max-width: 768px) {
  .hero__scroll { display: none; }
}
@media (orientation: landscape) and (max-height: 480px) {
  .hero { min-height: auto; height: 100svh; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-pad) 0; overflow: hidden; }
.section--dark { background: var(--bg); }
.section--surface { background: var(--bg-surface); }
.section--deeper { background: #0D0D0F; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bar__item {
  text-align: center;
  padding: 20px 24px;
  position: relative;
}
.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--border);
}
.stats-bar__number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--gold);
  display: block; line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.stats-bar__number:hover {
  color: var(--white);
}
.stats-bar__label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey);
}
@media (max-width: 640px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2)::after { display: none; }
  .stats-bar__item:nth-child(3) { border-top: 1px solid var(--border); }
  .stats-bar__item:nth-child(4) { border-top: 1px solid var(--border); }
  .stats-bar__item:nth-child(4)::after { display: none; }
}

/* ============================================
   WHO THIS IS FOR (client grid)
   ============================================ */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.client-card {
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  transition: background 0.35s;
}
.client-card:hover { background: #1f1f24; }
.client-card__icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}
.client-card__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.client-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 12px; letter-spacing: 0.02em;
}
.client-card p { font-size: 13px; color: var(--grey); line-height: 1.65; }
@media (max-width: 768px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .client-grid { grid-template-columns: 1fr; } }

/* ============================================
   WHAT WE DO (two-column)
   ============================================ */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.what-grid__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.what-grid__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.what-grid__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 60%);
  mix-blend-mode: overlay;
}
.what-pillars { list-style: none; margin-top: 32px; }
.what-pillars li {
  font-size: 14px; color: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 14px;
  transition: color 0.3s;
}
.what-pillars li:first-child { border-top: 1px solid var(--border); }
.what-pillars li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 9px;
}
@media (max-width: 768px) { .what-grid { grid-template-columns: 1fr; } }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 64px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 20%, var(--gold-border) 80%, transparent 100%);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 8px;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .process-step__num {
  background: var(--gold-dim);
  border-color: var(--gold);
}
.process-step__name {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); margin-bottom: 10px;
}
.process-step__outcome {
  font-size: 12px; color: var(--grey); line-height: 1.55;
}
@media (max-width: 768px) {
  .process-timeline { flex-direction: column; gap: 0; }
  .process-timeline::before { display: none; }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px 20px;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .process-step__num { margin: 0; }
  .process-step__name, .process-step__outcome { grid-column: 2; }
  .process-step__name { margin-bottom: 4px; align-self: end; }
}

/* ============================================
   TIER CARDS
   ============================================ */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tiers-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.tier-card {
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column;
  transition: background 0.35s;
  position: relative;
  border: 1px solid var(--border);
}
.tier-card--featured {
  background: #1a1a1e;
}
.tier-card--featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 20px;
  z-index: 1;
}
.tier-card:hover { background: #1f1f26; }
.tier-card__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.tier-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.tier-card__price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--gold);
  margin-bottom: 8px; line-height: 1;
}
.tier-card__ideal {
  font-size: 13px; color: var(--grey);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.tier-features { list-style: none; flex: 1; margin-bottom: 36px; }
.tier-features li {
  font-size: 13px; color: var(--off-white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}
@media (max-width: 900px) {
  .tier-card--featured::before { 
    font-size: 7px; 
    padding: 3px 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
@media (max-width: 600px) {
  .tiers-grid,
  .tiers-grid--2col { grid-template-columns: 1fr; gap: 16px; }
  .tier-card { text-align: center; align-items: center; }
  .tier-features li { text-align: left; }
  .tier-card--featured::before { font-size: 9px; padding: 6px 20px; }
}

/* ============================================
   PAST PROJECTS
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}
.project-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.project-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.project-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,0.55) 0%, transparent 40%);
}
.project-card__body { padding: 16px 20px 20px; }
.project-card__type {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: block;
}
.project-card__name {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.project-card__meta {
  font-size: 11px; color: var(--grey); margin-bottom: 8px;
}
.project-card__desc { font-size: 12px; color: var(--grey); line-height: 1.5; }
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.why-item {
  background: var(--bg-card);
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.5vw, 32px);
  transition: background 0.35s;
}
.why-item:hover { background: #1f1f24; }
.why-item__icon {
  width: 40px; height: 40px; margin-bottom: 20px;
}
.why-item__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-item h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.why-item p { font-size: 13px; color: var(--grey); line-height: 1.65; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 360px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 60px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px; line-height: 0.6;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 28px; left: 28px;
}
.testimonial-card__quote {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 32px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-card__author {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
}
.testimonial-card__role {
  font-size: 12px; color: var(--grey);
  margin-top: 4px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq-list { margin-top: 60px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-toggle {
  width: 100%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  gap: 20px;
}
.faq-toggle__q {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500; color: var(--white);
  line-height: 1.5;
}
.faq-toggle__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px; font-weight: 300;
  line-height: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.faq-item.open .faq-toggle__icon {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 14px; color: var(--grey); line-height: 1.8;
  padding-bottom: 24px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact-cta {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 0;
}
.contact-cta__inner {
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.contact-cta__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.contact-cta__sub {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--grey); margin-bottom: 48px; line-height: 1.75;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-top: 60px;
  text-align: left;
}
.contact-details { padding-top: 8px; }
.contact-detail { margin-bottom: 24px; }
.contact-detail__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.contact-detail__value { font-size: 15px; color: var(--off-white); }
.contact-detail__value a { transition: color 0.3s; }
.contact-detail__value a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; margin-top: 32px; }
.contact-social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
}
.contact-social a:hover { background: var(--gold-dim); border-color: var(--gold); }
.contact-social svg { width: 18px; height: 18px; stroke: var(--grey); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.contact-social a:hover svg { stroke: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--off-white);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #1a1a1e;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center; padding: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate__logo { width: 90px; margin-bottom: 32px; opacity: 0.9; }
.age-gate h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px; color: var(--white);
  letter-spacing: 0.02em;
}
.age-gate p { color: var(--grey); font-size: 14px; margin-bottom: 36px; max-width: min(360px, 100%); line-height: 1.6; }
.age-gate__buttons { display: flex; gap: 16px; }
.age-gate__buttons .btn { min-width: 140px; text-align: center; }
@media (max-width: 480px) {
  .age-gate__buttons { flex-direction: column; align-items: stretch; }
  .age-gate__buttons .btn { min-width: 0; }
}
.age-gate__legal { margin-top: 40px; font-size: 11px; color: rgba(255,255,255,0.25); max-width: 380px; line-height: 1.5; }

/* ============================================
   FEATURED PROJECTS SLIDER (Swiper)
   ============================================ */
.featured-projects { padding: var(--section-pad) 0; }

/* Outer slider container — full bleed */
.projects-slider { position: relative; margin-top: 40px; padding: 0 20px; }

/* Swiper override: show adjacent slides */
.projects-slider__slider {
  overflow: hidden;
  padding: 0 !important;
}
.projects-slider__wrapper { align-items: stretch; }

/* Each slide */
.projects-slider__slide { height: auto; display: flex; }

.projects-slider__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.projects-slider__item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.projects-slider__image {
  position: relative;
  width: 100%;
  padding-top: 133%; /* 3:4 portrait — height = 133% of width, always */
  overflow: hidden;
  background: var(--bg-card);
  flex-shrink: 0;
}
.projects-slider__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,12,0.55) 0%, transparent 40%);
  z-index: 1;
}
.projects-slider__image img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s;
}
.projects-slider__item:hover .projects-slider__image img { transform: scale(1.05); }

.projects-slider__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 28px;
  gap: 12px;
}
.projects-slider__info { flex: 1; }
.projects-slider__title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--white);
  margin-bottom: 10px;
}
.projects-slider__text {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.projects-slider__footer { margin-top: auto; }
.projects-slider__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.projects-slider__btn:hover { gap: 14px; }
.projects-slider__btn-icon { font-style: normal; }

/* Nav arrows */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-nav__item {
  pointer-events: all;
  width: 44px; height: 44px;
  background: rgba(10,10,12,0.8);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  color: var(--white);
  flex-shrink: 0;
}
.slider-nav__item:hover { background: rgba(212,175,55,0.15); border-color: var(--gold); }
.slider-nav__item.disabled { opacity: 0.3; pointer-events: none; }

/* Pagination dots */
.projects-slider__pagination { text-align: center; position: static !important; width: auto !important; bottom: auto !important; }
.slider-pagination__item {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.25);
  margin: 0 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-pagination__item.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .projects-slider { padding: 0 16px; }
  .projects-slider__content { padding: 18px 18px 24px; }
}

@media (max-width: 480px) {
  .projects-slider { padding: 0 12px; }
  .projects-slider__image { max-height: 40vh; }
}

@media (min-width: 1024px) {
  .projects-slider { padding: 0 40px; }
  .projects-slider__slider { overflow: hidden; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  background: #080809;
  border-top: 1px solid var(--border);
  color: var(--grey);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  gap: 48px;
  align-items: start;
  justify-items: start;
}
.footer__brand { width: 100%; max-width: 100%; }
.footer__logo { height: 60px; margin-bottom: 16px; }
.footer__tagline { font-size: 13px; line-height: 1.65; color: var(--off-white); width: 100%; display: block; }
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-self: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav a {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--off-white);
  transition: color 0.3s;
  display: block;
}
.footer__nav a:hover { color: var(--gold); }
.footer__address { font-size: 12px; line-height: 1.8; color: var(--off-white); justify-self: end; }
.footer__address strong { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer__socials { display: flex; gap: 16px; margin-top: 16px; }
.footer__socials a { color: var(--grey); transition: color 0.3s; }
.footer__socials a:hover { color: var(--gold); }
.footer__socials i { font-size: 18px; color: var(--grey); transition: color 0.3s; }
.footer__line { width: 100%; height: 1px; background: var(--border); margin: 40px 0 24px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 12px; color: var(--grey-light); }
.footer__responsible {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__logo { display: none; }
  .footer__address { 
    justify-self: center; 
    text-align: center;
  }
  .footer__brand {
    justify-self: center;
    text-align: center;
  }
}

/* ============================================
   CONSULTATION MODAL
   ============================================ */
.consult-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.consult-overlay.open { opacity: 1; visibility: visible; }
.consult-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  padding: clamp(32px, 5vw, 52px);
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s;
}
.consult-overlay.open .consult-modal { transform: translateY(0); }
@media (max-width: 600px) {
  .consult-modal { width: calc(100% - 32px); padding: 24px 20px; }
}
.consult-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: color 0.3s;
}
.consult-modal__close:hover { color: var(--white); }
.consult-modal__close svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; }
.consult-modal__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.consult-modal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.consult-modal__sub {
  font-size: 13px; color: var(--grey);
  margin-bottom: 28px; line-height: 1.6;
}
.consult-modal__success {
  display: none;
  text-align: center; padding: 32px 0;
}
.consult-modal__success svg {
  width: 48px; height: 48px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  margin: 0 auto 16px; display: block;
}
.consult-modal__success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--white); margin-bottom: 8px;
}
.consult-modal__success p { font-size: 14px; color: var(--grey); }

/* PAGE HEADER for inner pages */
.page-header {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--bg-surface);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { justify-content: center; }
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-header p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--off-white); max-width: 520px; margin: 0 auto; line-height: 1.7;
}
.page-header__img {
  position: absolute; top: -25%; left: 0;
  width: 100%; height: 150%;
  object-fit: cover; will-change: transform;
  z-index: 0;
}
.page-header__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.72) 0%, rgba(11,11,12,0.82) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .page-header__img { top: 0; height: 100%; will-change: auto; }
}

/* INCLUDED LIST (contract page) */
.included-list { list-style: none; margin-top: 20px; }
.included-list li {
  font-size: 14px; color: var(--off-white);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px;
}
.included-list li:first-child { border-top: 1px solid var(--border); }
.included-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}

/* TWO-COL GRID */
.grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 768px) { .grid-2col { grid-template-columns: 1fr; gap: 40px; } }

/* PARALLAX IMG WRAP */
.parallax-img-wrap { position: relative; overflow: hidden; }
.parallax-img-wrap img { width: 100%; height: 130%; object-fit: cover; will-change: transform; }

/* ============================================
   HERO GRADIENT FALLBACK (animated)
   ============================================ */
.hero__gradient-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0B0B0C 0%, #141410 50%, #0B0B0C 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes gradientShift {
  0%   { opacity: 1; filter: brightness(1); }
  50%  { opacity: 0.85; filter: brightness(1.15); }
  100% { opacity: 1; filter: brightness(1); }
}
/* Hide fallback once video loads */
.hero__video.loaded ~ .hero__gradient-fallback { opacity: 0; }
@media (max-width: 768px) {
  .footer__socials a { color: #fff !important; }
  .footer__socials i { font-size: 14px !important; color: #fff !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__logo { height: 48px; }
  .footer__address { max-width: 100%; }
  .footer__nav { gap: 12px; }
}
@media (max-width: 480px) {
  .footer__grid { align-items: center; text-align: center; }
  .footer__logo { height: 40px; }
  .footer__nav { align-items: center; gap: 10px; }
  .footer__address { text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
}
