/* ============================================================
   SIDNEY MARCUS GROUP — Color Palette (from copper/bronze logo)
   ============================================================
   --copper:        #B87333   primary brand copper
   --copper-light:  #D4956A   hover / highlight
   --copper-dark:   #8B5E3C   deep bronze
   --copper-shine:  #E8B882   metallic sheen
   --bg-dark:       #0D0D0B   near-black background
   --bg-section:    #161210   dark warm section
   --text-primary:  #F5F0EB   warm cream
   --text-muted:    #A89880   muted warm gray
   ============================================================ */

:root {
  --copper:        #B87333;
  --copper-light:  #D4956A;
  --copper-dark:   #8B5E3C;
  --copper-shine:  #E8B882;
  --bg-dark:       #0D0D0B;
  --bg-section:    #161210;
  --bg-card:       #1E1814;
  --text-primary:  #F5F0EB;
  --text-muted:    #A89880;
  --divider:       rgba(184, 115, 51, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--copper-shine);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(184,115,51,0.12) 0%, transparent 70%),
    linear-gradient(160deg, #0D0D0B 0%, #1A1210 50%, #0D0D0B 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(184,115,51,0.03) 80px,
      rgba(184,115,51,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(184,115,51,0.03) 80px,
      rgba(184,115,51,0.03) 81px
    );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(184,115,51,0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  margin-bottom: 0.5rem;
}

.logo {
  width: clamp(360px, 55vw, 640px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(184,115,51,0.35));
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 36px rgba(212,149,106,0.55));
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--copper-shine) 0%, var(--copper) 40%, var(--copper-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  margin: 0.25rem auto;
}

.hero-location {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 500;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ── About ────────────────────────────────────────────────── */
.about {
  background-color: var(--bg-section);
  padding: 7rem 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--copper);
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.value-card:hover {
  border-left-color: var(--copper-light);
  background: rgba(184,115,51,0.06);
}

.value-icon {
  color: var(--copper);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--copper-shine);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Coming Soon ──────────────────────────────────────────── */
.coming-soon {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,115,51,0.08) 0%, transparent 70%),
    var(--bg-dark);
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-dark), transparent);
}

.coming-soon-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--copper-shine) 0%, var(--copper) 50%, var(--copper-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.4rem;
  line-height: 1.2;
}

.coming-soon-sub {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Marquee */
.routes-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 1rem 0;
  margin-bottom: 4rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track .dot {
  color: var(--copper);
  font-size: 0.6rem;
}

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

.routes-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* CTA */
.cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.cta-text {
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.cta-btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1.5px solid var(--copper);
  color: var(--copper-shine);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
  background: var(--copper);
  color: #0D0D0B;
  box-shadow: 0 0 20px rgba(184,115,51,0.35);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #080806;
  border-top: 1px solid var(--divider);
  padding: 3rem 0;
}

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

.footer-logo-wrap {
  flex-shrink: 0;
}

.footer-logo {
  width: 64px;
  height: auto;
  opacity: 0.75;
  filter: grayscale(20%);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-company {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--copper-light);
}

.footer-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(168,152,128,0.5);
  margin-top: 0.3rem;
}

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

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

.value-card.reveal {
  transition-delay: calc(var(--i, 0) * 100ms);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about {
    padding: 5rem 0;
  }

  .coming-soon {
    padding: 5rem 0 4rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 1.5rem;
  }
}
