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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-2: #1A1A1A;
  --dark-3: #242424;
  --white: #F5F2EC;
  --white-muted: #B8B0A0;
  --accent: #2C4A3E;
  --accent-light: #3D6B5A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}

.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--gold-light); }
body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 60px; height: 60px; border-color: var(--gold); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

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

.logo-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201,168,76,0.3);
}

.logo-icon span {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}

.logo-text { color: var(--white); text-decoration: none; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.logo-text small {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  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, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition: all 0.3s !important;
  text-decoration: none;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A0A 50%, #0A0A0A 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% { transform: translate(0,0); }
  100% { transform: translate(80px, 80px); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44,74,62,0.2) 0%, transparent 70%);
  bottom: -100px; left: 100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 120px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 32px;
  max-width: 800px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--white-muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 56px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: none;
  font-family: var(--font-body);
  border: none;
}

.btn-primary:hover { background: var(--gold-light); transform: translateX(4px); }

.btn-secondary {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  cursor: none;
  font-family: var(--font-body);
}

.btn-secondary:hover { color: var(--gold); gap: 20px; }

.btn-arrow {
  width: 32px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s;
}

.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}

.btn-primary:hover .btn-arrow { width: 40px; }
.btn-secondary:hover .btn-arrow { width: 48px; }

.hero-stats {
  position: absolute;
  bottom: 60px; right: 60px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.stat-item { text-align: right; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 60px; left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  writing-mode: vertical-rl;
}

/* MARQUEE */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-inner span {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  padding: 0 40px;
}

.marquee-inner .dot {
  color: rgba(0,0,0,0.3);
  padding: 0;
  letter-spacing: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
section { position: relative; }

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

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-label span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ABOUT SECTION */
.about-section {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left { }

.about-desc {
  font-size: 16px;
  color: var(--white-muted);
  line-height: 1.9;
  margin: 32px 0 48px;
  max-width: 480px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s;
}

.about-feature:hover { border-color: rgba(201,168,76,0.3); }

.feature-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.feature-text p { font-size: 13px; color: var(--white-muted); line-height: 1.6; }

.about-right {
  position: relative;
}

.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--dark-2);
  overflow: hidden;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  z-index: 1;
}

.about-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1A1A1A 0%, #111 100%);
}

.building-illustration {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 24px;
  z-index: 3;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.about-badge span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.about-corner {
  position: absolute;
  top: 20px; right: -20px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  z-index: 3;
}

/* SERVICES */
.services-section {
  padding: 140px 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.services-header {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.services-title-wrap { }
.services-desc {
  max-width: 340px;
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.8;
  text-align: right;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--dark-2);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover { background: var(--dark-3); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: color 0.4s;
}

.service-card:hover .service-number { color: rgba(201,168,76,0.15); }

.service-icon {
  font-size: 32px;
  margin-bottom: 28px;
  display: block;
}

.service-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-link {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-link::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.service-card:hover .service-link::after { width: 40px; }

/* PROPERTIES / PORTFOLIO */
.portfolio-section {
  padding: 140px 0;
  overflow: hidden;
}

.portfolio-header {
  padding: 0 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.portfolio-scroll {
  display: flex;
  gap: 24px;
  padding: 0 60px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.portfolio-scroll::-webkit-scrollbar { display: none; }
.portfolio-scroll:active { cursor: grabbing; }

.portfolio-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:hover { transform: translateY(-8px); }

.portfolio-img {
  height: 260px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
}

.portfolio-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 600;
  z-index: 2;
}

.portfolio-info {
  padding: 32px;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.portfolio-location {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.meta-item { font-size: 12px; color: var(--white-muted); }
.meta-item strong { display: block; color: var(--white); font-size: 14px; font-weight: 500; }

/* WHY CHOOSE US */
.why-section {
  padding: 140px 60px;
  background: var(--dark);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.why-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-left {}

.why-intro {
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.9;
  margin: 28px 0 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.why-card {
  background: var(--dark-2);
  padding: 32px 24px;
  transition: background 0.3s;
}

.why-card:hover { background: var(--dark-3); }

.why-icon { font-size: 28px; margin-bottom: 16px; display: block; }

.why-card h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.why-card p { font-size: 13px; color: var(--white-muted); line-height: 1.7; }

.why-right {
  position: relative;
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-main {
  background: var(--dark-2);
  padding: 56px 48px;
  border-left: 2px solid var(--gold);
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(201,168,76,0.08);
  line-height: 0.7;
  position: absolute;
  top: 32px; left: 32px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.author-info strong { display: block; font-size: 14px; font-weight: 500; }
.author-info span { font-size: 12px; color: var(--gold); letter-spacing: 1px; }

.testimonial-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.testimonial-dot {
  width: 24px; height: 2px;
  background: rgba(201,168,76,0.2);
  cursor: none;
  transition: background 0.3s;
  border: none;
}
.testimonial-dot.active { background: var(--gold); width: 40px; }

/* CTA SECTION */
.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title em { font-style: italic; color: var(--gold); }

.cta-text {
  font-size: 15px;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 80px 60px 40px;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  margin: 20px 0 32px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  cursor: none;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color 0.3s;
  cursor: none;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-contact a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ANIMATIONS */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* INTRO ANIMATION */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.intro-logo {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 8px;
  opacity: 0;
  animation: introLogo 1s ease 0.3s forwards;
}

.intro-tagline {
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 16px;
  opacity: 0;
  animation: introLogo 1s ease 0.6s forwards;
}

.intro-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  animation: introLine 1.2s ease 1.2s forwards;
}

@keyframes introLogo {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes introLine {
  0% { width: 0; }
  100% { width: 100%; }
}

.intro-overlay.exit {
  animation: introExit 0.8s ease forwards;
}

@keyframes introExit {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); }
}

/* PAGE HERO (inner pages) */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A0A0A 0%, #1A1A0A 100%);
}

.page-hero-content { position: relative; z-index: 2; max-width: 1400px; width: 100%; margin: 0 auto; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
}

.breadcrumb a { color: var(--gold); text-decoration: none; cursor: none; }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* CONTACT FORM */
.contact-section {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item-text p { font-size: 14px; color: var(--white-muted); line-height: 1.6; }

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  cursor: none;
  -webkit-appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(201,168,76,0.4);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group select option { background: var(--dark-2); }

/* TEAM */
.team-section {
  padding: 140px 60px;
  background: var(--dark);
}

.team-grid {
  max-width: 1400px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.team-card {
  background: var(--dark-2);
  overflow: hidden;
  transition: transform 0.4s;
}

.team-card:hover { transform: translateY(-4px); }

.team-photo {
  height: 280px;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar {
  font-size: 80px;
  opacity: 0.3;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}

.team-info {
  padding: 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.team-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ABOUT PAGE */
.about-page-section {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.value-card {
  background: var(--dark-2);
  padding: 48px 40px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s;
}

.value-card:hover::after { height: 100%; }
.value-card:hover { background: var(--dark-3); }

.value-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(201,168,76,0.1);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.value-card p { font-size: 13px; color: var(--white-muted); line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 24px; padding-top: 100px; }
  .hero-stats { right: 24px; bottom: 40px; gap: 24px; }
  .hero-scroll { left: 24px; bottom: 40px; }
  .stat-number { font-size: 36px; }

  .about-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .about-right { display: none; }

  .services-section { padding: 80px 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-desc { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }

  .portfolio-header { padding: 0 24px; }
  .portfolio-scroll { padding: 0 24px; }

  .why-section { padding: 80px 24px; }
  .why-inner { grid-template-columns: 1fr; gap: 60px; }
  .why-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 80px 24px; }

  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .page-hero { padding: 100px 24px 60px; }

  .contact-section { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .about-page-section { padding: 80px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 52px; }
  .hero-stats { flex-direction: column; align-items: flex-end; gap: 12px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .team-grid { grid-template-columns: 1fr; }
}
