/* ============================================
   MANHATTAN CONNECTIONS — style.css
   Palette:
     --black:   #0A0A0A
     --dark:    #141414
     --card:    #1C1C1C
     --gold:    #C9A052
     --gold-lt: #E2C07A
     --cream:   #F5F0E8
     --muted:   #888888
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: #0A0A0A;
  color: #F5F0E8;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A052;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #F5F0E8;
  margin-bottom: 48px;
}

.section-eyebrow.light,
.section-title.light { color: #F5F0E8; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  border: 1px solid #C9A052;
  color: #C9A052;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #C9A052;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: #0A0A0A; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-large { padding: 18px 48px; font-size: 0.85rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,160,82,0.15);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon { font-size: 1.4rem; }

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #F5F0E8;
}

.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: #C9A052;
  margin-top: -2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 4px;
}

.lang-btn:hover,
.lang-btn.active { color: #C9A052; }

.lang-divider { color: #333; font-size: 0.65rem; }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A052;
  border: 1px solid rgba(201,160,82,0.4);
  padding: 9px 22px;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: #C9A052;
  color: #0A0A0A;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C9A052;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: #F5F0E8;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.65);
}

.hero-langs .dot { color: #C9A052; }

/* Gold line scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, #C9A052);
  animation: scrollPulse 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---------- Services ---------- */
.services {
  padding: 110px 0;
  background: #0A0A0A;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-img-wrap {
  height: 360px;
  overflow: hidden;
  position: relative;
}

.service-img-wrap img {
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
}

.service-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px 32px;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.service-card:hover .service-body { transform: translateY(0); }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.service-card:hover .service-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Featured card gets gold accent */
.service-card--featured .service-name {
  color: #C9A052;
}

/* ---------- Why Us ---------- */
.why-us {
  padding: 110px 0;
  background: #141414;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-col {
  position: relative;
}

.why-image-col img {
  height: 560px;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: #C9A052;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #0A0A0A;
  line-height: 1;
}

.badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  color: #C9A052;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-list strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #F5F0E8;
  margin-bottom: 5px;
}

.why-list p {
  font-size: 0.83rem;
  font-weight: 300;
  color: #888;
  line-height: 1.65;
}

/* ---------- Area ---------- */
.area {
  padding: 110px 0;
  background: #0A0A0A;
}

.area-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.area-card {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.area-card img {
  transition: transform 0.6s ease;
}

.area-card:hover img { transform: scale(1.05); }

.area-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.15) 60%);
}

.area-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #F5F0E8;
}

/* ---------- Quote / CTA ---------- */
.quote-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  z-index: 1;
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.quote-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin: -24px auto 48px;
}

.quote-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.quote-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(245,240,232,0.7);
  transition: color 0.2s;
}

.phone-link:hover { color: #C9A052; }

.phone-flag { font-size: 1rem; }

/* ---------- Footer ---------- */
.footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(201,160,82,0.2);
  padding: 52px 0;
}

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

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #F5F0E8;
}

.footer-logo span { color: #C9A052; }

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: #555;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #666;
  transition: color 0.2s;
  text-transform: uppercase;
}

.footer-links a:hover { color: #C9A052; }

.footer-copy {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.04em;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; gap: 3px; }
  .service-img-wrap { height: 280px; }
  .service-desc { opacity: 1; transform: none; }

  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-image-col img { height: 360px; }
  .why-badge { right: 0; bottom: -20px; }

  .area-cards { grid-template-columns: 1fr; }
  .area-card { height: 260px; }
}

@media (max-width: 640px) {
  .nav-cta { display: none; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2rem; margin-bottom: 32px; }
  .services, .why-us, .area, .quote-section { padding: 80px 0; }
  .why-grid { gap: 40px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
