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

:root {
  --gold: #ae916a;
  --gold-light: #ae916a;
  --gold-pale: #ae916a;
  --bg: #000000;
  --bg-card: #111111;
  --bg-card2: #151515;
  --text: #e8e0d0;
  --text-muted: #777;
  --text-dim: #555;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===========================
   NAV
=========================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(184,150,62,0);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-serif);
}

.nav-name {
  display: flex;
  flex-direction: column;
}

.nav-full-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text);
}

.nav-title {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 400;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-white);
}

.nav-contact a:hover { color: var(--gold); }
.nav-divider { color: var(--text-dim); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu-tagline {
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.mobile-menu-tagline em {
  color: var(--gold-light);
  font-style: italic;
}

.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
}

/* ===========================
   HERO
=========================== */
.hero {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  min-height: calc(100vh - 86px);
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom right;
}

.hero-content {
  padding: 25px 50px 50px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  margin-top: 10px;
}

.hero-sub-caps {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}

.hero-body {
  font-size: 12px;
  color: #CCC;
  line-height: 1.7;
  margin-bottom: 80px;
}

.hero-tag {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--white);
  letter-spacing: -0.5px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 1px solid var(--text-muted);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 500;
  padding: 12px 22px;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-light {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ===========================
   EXPANDABLE
=========================== */
.expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}
.expandable.open { max-height: 800px; }

.expandable-inner {
  padding: 24px 0 8px 0;
  font-size: 13px;
  color: #999;
  line-height: 1.9;
  max-width: 420px;
}
.expandable-inner p { margin-bottom: 14px; }

/* ===========================
   STATS
=========================== */
.stats {
  background: var(--bg-card);
  border-top: 1px solid rgba(184,150,62,0.15);
  border-bottom: 1px solid rgba(184,150,62,0.15);
  max-width: 94%;
  margin: 0 auto;
  margin-top:-65px;
  position:relative;
  z-index:9999;
  border-radius:15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(184,150,62,0.1);
}

.stat-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(184,150,62,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  color: var(--gold);
}

.stat-icon svg { width: 100%; height: 100%; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-top:-20px;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
}

.stat-markets {
  display: block;
  font-size: 9px;
  color: var(--text-dim);
  margin-top: 4px;
  letter-spacing: 1.5px;
}

/* ===========================
   CLIENTS
=========================== */
.clients {
  padding: 60px 40px 40px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.section-rule {
  flex: 1;
  height: 1px;
  background: rgba(184,150,62,0.3);
}

.section-eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 0;
  align-items: center;
  margin-bottom: 16px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.logo-item img {
  max-width: 100px;
  max-height: 56px;
  height: auto;
}

.logo-item img:hover { opacity:0.8; }

/* Client list expand */
.client-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: none;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(184,150,62,0.15);
  margin-top: 8px;
  border-radius:15px;
}

.client-col h4 {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: var(--font-sans);
}

.client-col ul {
  list-style: none;
}

.client-col li {
  font-size: 12px;
  color: #aaa;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ===========================
   PORTFOLIO
=========================== */
.portfolio {
  padding: 60px 40px;
  background: var(--bg-card2);
}

.portfolio-header {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.portfolio-left {
  min-width: 220px;
  padding-top: 10px;
}

.section-eyebrow-light {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.instagram-handle {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.portfolio-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.portfolio-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-tile:hover img { transform: scale(1.05); }

.loading-tile {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  background-size: 200% 200%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 200%; }
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.portfolio-tile:hover .tile-overlay { background: rgba(0,0,0,0.1); }


/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 48px 40px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-mark-lg {
  width: 64px;
  height: 64px;
}

.logo-mark-lg .logo-a,
.logo-mark-lg .logo-b {
  font-size: 28px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.footer-tagline em {
  color: var(--gold-light);
  font-style: italic;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-connect-label {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 500;
}

.footer-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.social-icon svg { width: 16px; height: 16px; }

.footer-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}

.footer-right img {   
  display: flex; 
}

.available-label {
  display: flex;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text);
  text-align: right;
  line-height: 1.8;
}

.globe-icon {
  width: 48px; height: 48px;
  color: rgba(184,150,62,0.5);
}

.footer-copyright {
  text-align: center;
  padding: 16px 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-dim);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .client-logos {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-headline { font-size: 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-contact { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-col { height: 60vw; }
  .hero-img { object-position: center 20%; }
  .hero-content { padding: 36px 24px; }
  .hero-headline { font-size: clamp(42px, 10vw, 64px); }
  .hero-body { max-width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .clients { padding: 40px 20px 30px; }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  .client-list-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio { padding: 40px 20px; }
  .portfolio-header { flex-direction: column; gap: 32px; }
  .portfolio-left { min-width: unset; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonial-inner {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  cite { grid-column: 1 / -1; text-align: left; }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 24px 24px;
  }
  .footer-left { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline { text-align: center; }
  .available-label { text-align: center; }
}

@media (max-width: 480px) {
  .client-logos { grid-template-columns: repeat(2, 1fr); }
  .client-list-grid { grid-template-columns: 1fr; padding: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 38px; }
  .testimonial { padding: 32px 20px; }
}
