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

:root {
  --saffron: #E8650A;
  --saffron-light: #F5A05A;
  --saffron-pale: #FDF0E6;
  --deep: #1A0A00;
  --warm-dark: #2D1200;
  --mid: #6B3A1F;
  --cream: #FBF5EE;
  --cream-dark: #F0E6D8;
  --white: #FFFFFF;
  --text: #2D1200;
  --text-muted: #7A5C44;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Bricolage Grotesque', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(251, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 101, 10, 0.12);
  transition: all 0.3s ease;
}
.nav.scrolled { padding: 0.9rem 3rem; box-shadow: 0 2px 20px rgba(26,10,0,0.08); }
.nav__logo { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--mid); letter-spacing: 0.02em; }
.nav__logo span { color: var(--saffron); }
.nav__links { display: flex; gap: 2.5rem; list-style: none; }
.nav__links a { text-decoration: none; color: var(--text); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav__links a:hover { color: var(--saffron); }
.nav__cta { font-size: 0.875rem; font-weight: 600; color: var(--saffron); cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--deep);
  padding: 8rem 3rem 4rem;
}
.hero__bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(12rem, 28vw, 28rem);
  font-weight: 900; color: rgba(232, 101, 10, 0.06);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__tag {
  display: inline-block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--saffron-light); margin-bottom: 1.5rem;
  border: 1px solid rgba(232, 101, 10, 0.3); padding: 0.4rem 1rem; border-radius: 2rem;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--cream); margin-bottom: 2rem;
}
.hero__title .line { display: block; }
.hero__title .accent-text { color: var(--saffron); font-style: italic; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(251,245,238,0.65); margin-bottom: 3rem; line-height: 1.7; font-weight: 300; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 0.5rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.25s var(--ease-out); cursor: pointer;
}
.btn--primary { background: var(--saffron); color: var(--white); }
.btn--primary:hover { background: #c9540a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,101,10,0.35); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(251,245,238,0.3); }
.btn--ghost:hover { border-color: var(--saffron); color: var(--saffron); }
.btn--large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.hero__scroll-hint {
  position: absolute; bottom: 3rem; left: 3rem;
  display: flex; align-items: center; gap: 1rem;
  color: rgba(251,245,238,0.4); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-line { width: 60px; height: 1px; background: rgba(251,245,238,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--saffron); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { left: -100%; } 100% { left: 100%; } }

.hero__badge {
  position: absolute; bottom: 3rem; right: 3rem;
  width: 110px; height: 110px;
}
.badge-ring { width: 100%; height: 100%; animation: rotateBadge 12s linear infinite; }
.badge-ring text { font-size: 11px; fill: rgba(251,245,238,0.5); font-family: var(--font-body); letter-spacing: 3px; }
.badge-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 2rem;
}
@keyframes rotateBadge { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--saffron); overflow: hidden; padding: 1rem 0;
  border-top: 2px solid var(--warm-dark); border-bottom: 2px solid var(--warm-dark);
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap; animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.marquee-track .dot { color: rgba(255,255,255,0.5); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1; letter-spacing: -0.02em; color: var(--deep);
}

/* ===== ABOUT ===== */
.about { padding: 8rem 3rem; background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; max-width: 1300px; margin: 0 auto; }
.about__stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--saffron); line-height: 1; }
.stat__unit { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--saffron); display: inline; }
.stat__label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.25rem; }
.about__text { font-size: 1.05rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 300; }
.about__tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.tag { padding: 0.5rem 1.1rem; background: var(--cream-dark); border: 1px solid rgba(232,101,10,0.2); border-radius: 2rem; font-size: 0.85rem; font-weight: 500; color: var(--mid); }

/* ===== HIGHLIGHTS ===== */
.highlights { padding: 8rem 3rem; background: var(--deep); }
.highlights__header { text-align: center; margin-bottom: 5rem; }
.highlights__header .section-label { color: var(--saffron-light); }
.highlights__header .section-title { color: var(--cream); }
.highlights__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; max-width: 1300px; margin: 0 auto; background: rgba(232,101,10,0.15); }
.highlight-card {
  background: var(--warm-dark); padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s ease;
}
.highlight-card:hover { background: #3d1a00; }
.highlight-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.highlight-card__num { font-family: var(--font-display); font-size: 4rem; font-weight: 900; color: rgba(232,101,10,0.12); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.highlight-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 0.75rem; }
.highlight-card p { font-size: 0.9rem; color: rgba(251,245,238,0.55); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.card-link { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--saffron); text-decoration: none; transition: gap 0.2s; }
.card-link:hover { color: var(--saffron-light); }

/* ===== CULTURE ===== */
.culture { padding: 8rem 3rem; background: var(--cream-dark); }
.culture__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1300px; margin: 0 auto; }
.culture__left p { font-size: 1rem; color: var(--mid); line-height: 1.8; margin: 1.5rem 0 2rem; font-weight: 300; }
.food-list { display: flex; flex-direction: column; gap: 1rem; }
.food-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--cream); border-radius: 0.75rem; border: 1px solid rgba(232,101,10,0.1); transition: border-color 0.2s, transform 0.2s; }
.food-item:hover { border-color: var(--saffron); transform: translateX(4px); }
.food-emoji { font-size: 1.75rem; flex-shrink: 0; }
.food-item strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--deep); }
.food-item span { font-size: 0.8rem; color: var(--text-muted); }

.culture__mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.mosaic-card {
  background: var(--deep); padding: 1.75rem; border-radius: 1rem;
  transition: transform 0.3s var(--ease-out);
}
.mosaic-card:hover { transform: translateY(-4px); }
.mosaic-card--large { grid-column: 1 / -1; background: var(--saffron); }
.mosaic-card--wide { grid-column: 1 / -1; }
.mosaic-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.mosaic-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.25rem; }
.mosaic-card p { font-size: 0.8rem; color: rgba(251,245,238,0.55); }
.mosaic-card--large h4 { color: var(--white); }
.mosaic-card--large p { color: rgba(255,255,255,0.75); }

/* ===== NEIGHBOURHOODS ===== */
.neighbourhoods { padding: 8rem 3rem; background: var(--cream); }
.neighbourhoods__header { margin-bottom: 4rem; }
.neighbourhoods__list { max-width: 1000px; }
.neighbourhood {
  display: flex; align-items: center; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid rgba(232,101,10,0.15);
  transition: all 0.3s ease; cursor: default;
}
.neighbourhood:hover { padding-left: 1rem; }
.neighbourhood:hover .neighbourhood__num { color: var(--saffron); }
.neighbourhood__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: rgba(232,101,10,0.25); min-width: 3rem; transition: color 0.3s; }
.neighbourhood__info { flex: 1; }
.neighbourhood__info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--deep); margin-bottom: 0.25rem; }
.neighbourhood__info p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; }
.neighbourhood__vibe { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--saffron); background: rgba(232,101,10,0.08); padding: 0.4rem 1rem; border-radius: 2rem; white-space: nowrap; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 10rem 3rem; background: var(--saffron);
  position: relative; overflow: hidden; text-align: center;
}
.cta-banner__bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 900; color: rgba(255,255,255,0.1);
  white-space: nowrap; pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__inner h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.5rem; }
.cta-banner__inner h2 em { font-style: italic; }
.cta-banner__inner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 3rem; font-weight: 300; }
.cta-banner .btn--primary { background: var(--white); color: var(--saffron); }
.cta-banner .btn--primary:hover { background: var(--cream); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
.footer { background: var(--deep); padding: 4rem 3rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; max-width: 1300px; margin: 0 auto; }
.footer__logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--cream); margin-bottom: 0.5rem; }
.footer__brand p { font-size: 0.85rem; color: rgba(251,245,238,0.4); }
.footer__links { display: flex; gap: 2rem; }
.footer__links a { text-decoration: none; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,245,238,0.5); transition: color 0.2s; }
.footer__links a:hover { color: var(--saffron); }
.footer__copy { font-size: 0.8rem; color: rgba(251,245,238,0.3); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about__grid, .culture__inner { grid-template-columns: 1fr; gap: 3rem; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .about, .highlights, .culture, .neighbourhoods, .cta-banner { padding: 5rem 1.5rem; }
  .highlights__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .hero__badge { display: none; }
  .neighbourhood { flex-wrap: wrap; }
}
