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

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

:root {
  --orange: #e8572a;
  --orange-light: #ff7340;
  --gold: #c8b47a;
  --cream: #f0ede8;
  --dark: #07070a;
  --dark2: #0d0d12;
  --dark3: #111318;
  --text: #f0ede8;
  --text-dim: rgba(240,237,232,0.75);
  --text-faint: rgba(240,237,232,0.5);
  --font-display: 'Cormorant Garamond', serif;
  --font-ui: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(232,87,42,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(7,7,10,0.92);
  backdrop-filter: blur(20px);
  padding: 18px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--orange); }
.nav-logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(200,180,122,0.4));
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.2em;
  font-weight: 500; text-transform: uppercase;
  color: rgba(240,237,232,0.8);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase; color: var(--cream);
  border: 1px solid rgba(232,87,42,0.4);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(232,87,42,0.05);
}
.nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── SECTIONS BASE ── */
section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

/* ── BG IMAGE ── */
.bg-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  will-change: transform;
}
section:hover .bg-image { transform: scale(1); }

/* ── BG VIDEO ── */
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* ── OVERLAYS ── */
.overlay-dark {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,7,10,0.75) 0%,
    rgba(7,7,10,0.4) 50%,
    rgba(7,7,10,0.6) 100%
  );
}
.overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,7,10,0.9) 0%,
    rgba(7,7,10,0.6) 50%,
    rgba(7,7,10,0.1) 100%
  );
}
.overlay-right {
  position: absolute; inset: 0;
  background: linear-gradient(
    270deg,
    rgba(7,7,10,0.9) 0%,
    rgba(7,7,10,0.6) 50%,
    rgba(7,7,10,0.1) 100%
  );
}
.overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark), transparent);
}
.overlay-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, var(--dark), transparent);
}

/* ── CONTAINER ── */
.container {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
.container-narrow {
  max-width: 900px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.4em;
  font-weight: 600; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 40px; height: 1px;
  background: var(--orange);
}

/* ── HEADLINES ── */
.hero-content .headline-xl,
.hero-content .headline-lg {
  color: #ffffff !important;
  text-shadow:
    1px 1px 0 #000, -1px -1px 0 #000,
    1px -1px 0 #000, -1px 1px 0 #000,
    0 0 12px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,0.9);
}
.hero-content .body-lg {
  color: #ffffff !important;
  text-shadow:
    1px 1px 0 #000, -1px -1px 0 #000,
    0 0 10px rgba(0,0,0,1),
    0 0 24px rgba(0,0,0,0.95);
}

.headline-xl {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300; line-height: 1.0;
  letter-spacing: -0.01em;
}
.headline-xl em {
  font-style: italic; color: var(--orange);
}
.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300; line-height: 1.05;
}
.headline-lg em { font-style: italic; color: var(--orange); }

.headline-md {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.15;
}

/* ── BODY TEXT ── */
.body-lg {
  font-family: var(--font-body);
  font-size: 18px; font-weight: 300;
  line-height: 1.7; color: var(--text-dim);
  max-width: 560px;
}
.body-md {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 300;
  line-height: 1.7; color: var(--text-dim);
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

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

.reveal-scale {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.35s !important; }
.delay-4 { transition-delay: 0.5s !important; }
.delay-5 { transition-delay: 0.65s !important; }

/* ── STATS ROW ── */
.stats-row {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px; margin-top: 48px;
}
.stat-item {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
}
.stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 300;
  color: #ff7340; line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255,80,0,0.5), 0 2px 6px #000;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 10px; letter-spacing: 0.15em;
  font-weight: 600; text-transform: uppercase;
  color: #ffffff; margin-top: 8px;
  text-shadow: 0 1px 4px #000, 0 0 8px #000;
}

/* ── BUTTON ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.25em;
  font-weight: 600; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border: 1px solid rgba(232,87,42,0.4);
  padding: 16px 36px;
  background: rgba(232,87,42,0.06);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--orange);
  transform: translateX(-101%);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { color: #fff; border-color: var(--orange); }
.btn span { position: relative; z-index: 1; }
.btn-arrow { position: relative; z-index: 1; font-size: 18px; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── CARD ── */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  padding: 40px;
  transition: border-color 0.3s, background 0.3s;
}
.card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(232,87,42,0.2);
}

/* ── QUOTE ── */
.quote-block {
  border-left: 2px solid var(--orange);
  padding: 24px 32px;
  background: rgba(232,87,42,0.04);
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300; font-style: italic;
  line-height: 1.4; color: var(--cream);
}

/* ── DIVIDER ── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 80px 0;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--text-faint); text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(240,237,232,0.3), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── RESPONSIVE ── */
/* Hero background positioning — responsive */
.hero-bg {
  background-position: center 35%;
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 60% 30%;
    background-size: cover;
  }
}
@media (orientation: landscape) and (max-width: 900px) {
  .hero-bg {
    background-position: center 30%;
  }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .container { padding: 0 24px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
  .stats-row { flex-wrap: wrap; gap: 32px; }
  .stat-item { flex: 1 1 40%; border-right: none; }
}

/* ── SVG ICON ANIMATIONS ── */
@keyframes iconPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}
.icon-pulse {
  animation: iconPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
.contact-info-icon svg {
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.4));
  transition: filter 0.3s ease;
}
.contact-info-item:hover .contact-info-icon svg {
  filter: drop-shadow(0 0 16px rgba(232,87,42,0.7));
}

/* ── CONTACT ICON IMAGES ── */
.contact-icon-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.35));
}
.contact-info-item:hover .contact-icon-img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 16px rgba(232,87,42,0.6));
}
