/* ═══════════════════════════════════════════════════════════
   LUCKY INTERNATIONAL — ABOUT & SERVICES PAGE CSS
   Import order: tokens.css → base.css → loaders.css → about.css
   Desktop only — media queries to be added later
═══════════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 80px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
#navbar.scrolled {
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--divider);
  box-shadow: 0 4px 24px rgba(26,26,26,0.06);
}
#navbar:not(.scrolled) .nav-logo-name,
#navbar:not(.scrolled) .nav-logo-addr,
#navbar:not(.scrolled) .nav-links a { color: var(--white); }
#navbar:not(.scrolled) .nav-links a::after { background: var(--white); }
#navbar:not(.scrolled) .nav-dhaba-link { color: rgba(255,255,255,0.85) !important; }
#navbar:not(.scrolled) .hamburger span { background: var(--white); }
#navbar.scrolled .nav-logo-name,
#navbar.scrolled .nav-logo-addr,
#navbar.scrolled .nav-links a { color: var(--fg); }
#navbar.scrolled .nav-dhaba-link { color: var(--dred) !important; }
#navbar.scrolled .hamburger span { background: var(--fg); }
.nav-inner {
  height: 100%;
  padding: 0 var(--margin-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1;
}
.nav-logo-addr {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.5;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-dhaba-link { color: var(--dred) !important; font-weight: 600; }
.nav-dhaba-link::after { background: var(--dred) !important; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  transition: all var(--transition-base);
}
#mobile-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0.35s;
  pointer-events: none;
}
#mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0s;
}

#mobile-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.overlay-dhaba { color: var(--dred) !important; }
.overlay-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 24px;
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  background: none;
  border: none;
}

/* ── Page Hero ── */
#about-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 var(--margin-desktop) 72px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%),
    url('../assets/images/hotel/full-overlay.png') center/cover no-repeat;
  filter: grayscale(0.15);
  transition: filter 1500ms ease-in-out;
}
#about-hero:hover .about-hero-bg { filter: grayscale(0); }
.about-hero-content {
  position: relative;
  z-index: 2;
}
.about-hero-eyebrow { color: var(--gold); margin-bottom: 16px; }
.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.about-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ── Heritage Section ── */
#heritage {
  background: var(--bg);
  padding: 0;
}
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 720px;
}
.heritage-statement {
  padding: 100px 72px 100px var(--margin-desktop);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--divider);
}
.heritage-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.heritage-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 20px;
}
.heritage-right {
  padding: 100px var(--margin-desktop) 100px 72px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.heritage-image-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
  flex: 1;
  min-height: 360px;
}
.heritage-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.heritage-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.heritage-since-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.since-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -1px;
}
.since-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
}
.heritage-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 0;
}
.heritage-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 12px;
}
.heritage-quote cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--fg-30);
  font-style: normal;
  text-transform: uppercase;
}

/* ── Values ── */
#values {
  background: var(--bg);
  padding: 100px var(--margin-desktop);
}
.values-inner { max-width: var(--max-width); margin: 0 auto; }
.values-header { margin-bottom: 56px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
.value-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background var(--transition-base);
}
.value-card:hover { background: #F4F3F0; }
.value-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.value-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 16px;
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
}

/* ── Timeline ── */
#milestones {
  background: var(--bg);
  padding: 100px var(--margin-desktop);
}
.milestones-inner { max-width: var(--max-width); margin: 0 auto; }
.milestones-header { margin-bottom: 64px; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--divider);
  z-index: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 48px 1fr;
  gap: 0;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--divider);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
  padding-top: 2px;
}
.timeline-connector {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 2px solid var(--bg);
  outline: 1px solid var(--gold);
  flex-shrink: 0;
}
.timeline-content { padding-left: 24px; }
.timeline-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  max-width: 640px;
}

/* ── Services Grid ── */
#services {
  background: var(--bg);
  padding: 100px var(--margin-desktop);
}
.services-outer { max-width: var(--max-width); margin: 0 auto; }
.services-header { margin-bottom: 56px; }
.services-header-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
.service-tile {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--transition-base);
}
.service-tile:hover { background: #F4F3F0; }
.service-tile-icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.service-tile-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.service-tile-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  flex: 1;
}
.service-tile-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
  margin-top: 8px;
}
.service-tile:hover .service-tile-link { gap: 10px; }

/* ── Commitment Strip ── */
#commitment {
  position: relative;
  background: var(--fg);
  overflow: hidden;
}
.commitment-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hotel/full-overlay.png') center/cover no-repeat;
  opacity: 0.04;
  filter: grayscale(1);
}
.commitment-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.commitment-text {
  padding: 100px 72px 100px var(--margin-desktop);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commitment-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.commitment-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 20px;
}
.commitment-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
}
.c-stat {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}
.c-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.c-stat-div {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.commitment-image {
  position: relative;
  overflow: hidden;
  background: #111;
}
.commitment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About CTA ── */
#about-cta {
  background: #0A0A0A;
  padding: 120px var(--margin-desktop);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#about-cta::before {
  content: 'LUCKY';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -8px;
  user-select: none;
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
#footer { background: #0A0A0A; padding: 80px var(--margin-desktop) 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 14px;
}
.footer-brand-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(212,175,55,0.75); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--white); }
.footer-dhaba-link { color: var(--dred) !important; }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 390px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  #navbar { height: 60px; }
  .nav-inner { padding: 0 var(--margin-mobile); }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Page Hero */
  #about-hero { height: auto; min-height: 380px; padding: 0 var(--margin-mobile) 48px; }
  .about-hero-headline { font-size: 40px; letter-spacing: -1px; }
  .about-hero-sub { font-size: 14px; }

  /* Heritage Section */
  .heritage-grid { grid-template-columns: 1fr; min-height: unset; }
  .heritage-statement { padding: 56px var(--margin-mobile) 40px; border-right: none; border-bottom: 1px solid var(--divider); }
  .heritage-headline { font-size: 28px; }
  .heritage-body { font-size: 14px; max-width: 100%; }
  .heritage-right { padding: 40px var(--margin-mobile) 56px; gap: 24px; }
  .heritage-image-wrap { min-height: 280px; }
  .heritage-since-badge { top: 16px; left: 16px; padding: 10px 16px; }
  .since-year { font-size: 22px; }
  .heritage-quote p { font-size: 16px; }

  /* Values */
  #values { padding: 56px var(--margin-mobile); }
  .values-header { margin-bottom: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { padding: 32px 24px; }
  .value-number { font-size: 36px; margin-bottom: 12px; }
  .value-title { font-size: 19px; }

  /* Timeline */
  #milestones { padding: 56px var(--margin-mobile); }
  .milestones-header { margin-bottom: 40px; }
  .timeline::before { left: 6px; }
  .timeline-item { grid-template-columns: 12px 1fr; gap: 0; padding: 24px 0; }
  .timeline-year { grid-column: 1 / -1; font-size: 18px; margin-bottom: 8px; padding-top: 0; }
  .timeline-connector { padding-top: 2px; }
  .timeline-content { padding-left: 20px; }
  .timeline-title { font-size: 17px; }
  .timeline-desc { font-size: 13px; max-width: 100%; }

  /* Services Grid */
  #services { padding: 56px var(--margin-mobile); }
  .services-header { margin-bottom: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-tile { padding: 32px 24px; }
  .service-tile-title { font-size: 18px; }

  /* Commitment Strip */
  .commitment-inner { grid-template-columns: 1fr; min-height: unset; }
  .commitment-text { padding: 56px var(--margin-mobile) 40px; }
  .commitment-headline { font-size: 28px; }
  .commitment-body { font-size: 14px; max-width: 100%; }
  .commitment-stats { flex-wrap: wrap; width: 100%; }
  .commitment-image { height: 280px; }

  /* About CTA */
  #about-cta { padding: 64px var(--margin-mobile); }
  .about-cta-actions { flex-direction: column; align-items: stretch; }
  .about-cta-actions .btn { width: 100%; }

  /* Footer */
  #footer { padding: 48px var(--margin-mobile) 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  hr.divider-line { margin: 0 var(--margin-mobile) !important; }
}