/* =============================================
   LESS IS MORE HOSPITALITY — Main Stylesheet
   ============================================= */

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

:root {
  --black: #0a0a0a;
  --white: #f5f3ef;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --grey-dark: #1a1a1a;
  --grey-mid: #2e2e2e;
  --grey-light: #888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
body::after {
  content: '';
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  top: var(--cy, -20px);
  left: var(--cx, -20px);
}

/* Pausa brand */
:root {
  --pausa: #8B3A1A;
  --pausa-light: #c17a50;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 3rem;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full { width: 100%; text-align: center; }

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5vw;
  transition: all var(--transition-fast);
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1.2rem 5vw;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav__logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,243,239,0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition-fast);
}

/* =============================================
   HERO
   ============================================= */

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1559329007-40df8a9345d8?w=1600&q=80') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.65);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10,10,10,0.4) 70%,
    var(--black) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 5vw;
}

/* Big centered logo — HTML/CSS version, transparent bg */
.hero__logo-wrap {
  opacity: 0;
  animation: fadeUp 1.1s ease 0.3s forwards;
  margin-bottom: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__logo-symbol {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: var(--white);
  letter-spacing: 0.25em;
  line-height: 1;
}

.hero__logo-name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(0.7rem, 2vw, 1.1rem);
  letter-spacing: 0.55em;
  color: var(--white);
  line-height: 1;
}

.hero__logo-hosp {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  color: rgba(245, 243, 239, 0.75);
  letter-spacing: 0.12em;
  line-height: 1;
}

/* "Restaurant Group · Dubai" */
.hero__descriptor {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

/* Gold line divider */
.hero__divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

/* Venue names strip */
.hero__venues {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.8rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  color: rgba(245, 243, 239, 0.65);
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.hero__venues-dot {
  color: var(--gold);
  font-style: normal;
  opacity: 0.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.6s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2s ease infinite 2s;
}

/* =============================================
   INTRO
   ============================================= */

.intro {
  padding: 10rem 0;
}

.intro__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 5vw;
}

.intro__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 2.5rem;
  border: none;
}

.intro__text {
  font-size: 0.85rem;
  line-height: 2;
  color: rgba(245,243,239,0.6);
  letter-spacing: 0.02em;
}

/* =============================================
   CONCEPTS
   ============================================= */

.concepts {
  padding: 6rem 0 10rem;
}

.concepts > .container > .section-header {
  margin-bottom: 4rem;
}

.concepts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
}

.concept-card {
  background: var(--black);
  padding: 3rem 2rem;
  position: relative;
  transition: background var(--transition-fast);
  overflow: hidden;
}

.concept-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.concept-card:hover { background: var(--grey-dark); }
.concept-card:hover::before { width: 100%; }

.concept-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.concept-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.concept-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--white);
}

.concept-card__text {
  font-size: 0.75rem;
  line-height: 1.9;
  color: rgba(245,243,239,0.5);
  margin-bottom: 1.5rem;
}

.concept-card__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: letter-spacing var(--transition-fast);
}
.concept-card__link:hover { letter-spacing: 0.25em; }

/* =============================================
   VENUES
   ============================================= */

.venues {
  padding: 6rem 0;
}

.venues__header {
  padding: 0 5vw;
  margin-bottom: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.venues__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 70vh 40vh;
  gap: 4px;
  padding: 0 5vw;
  max-width: 1300px;
  margin: 0 auto;
}

.venues__grid--secondary {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 55vh;
  margin-top: 4px;
}

/* ---- Card base ---- */
.venue-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.venue-card--large { grid-row: 1 / 3; }

/* ---- Backgrounds (real photos) ---- */
.venue-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.venue-card:hover .venue-card__bg { transform: scale(1.06); }

.venue-card__bg--birdies     { background-image: url('Birdies Devanture.webp'); background-position: center top; }
.venue-card__bg--funkcoolio  { background-image: url('Funkcoolio Devanture.webp'); }
.venue-card__bg--nsh         { background-image: url('nsh Devanture.webp'); }
.venue-card__bg--pausa       { background: linear-gradient(135deg, #6b2c10 0%, #8B3A1A 40%, #a84d28 70%, #7a3318 100%); }
.venue-card__bg--rytmo       { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111 100%); }

/* ---- Overlays ---- */
.venue-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.5)  40%,
    rgba(5,5,5,0.15) 100%
  );
  transition: background var(--transition-fast);
}
.venue-card:hover .venue-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,5,0.96) 0%,
    rgba(5,5,5,0.65) 45%,
    rgba(5,5,5,0.2)  100%
  );
}
.venue-card__overlay--pausa {
  background: linear-gradient(
    to top,
    rgba(40,12,3,0.95) 0%,
    rgba(40,12,3,0.55) 45%,
    rgba(40,12,3,0.2)  100%
  );
}

/* ---- Content ---- */
.venue-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 3;
}

/* ---- Logo area ---- */
.venue-card__logo-wrap {
  margin-bottom: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.venue-logo {
  max-height: 44px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Birdies: show logo naturally as a branded badge */
.venue-logo--birdies {
  max-height: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* NSH: white background — dark pill container */
.venue-logo--nsh {
  background: var(--white);
  padding: 4px 10px 4px 6px;
  max-height: 42px;
  border-radius: 3px;
}

/* Pausa written: show the terracotta [pausa] logo naturally */
.venue-logo--pausa {
  max-height: 34px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* Name-only venues (Funkcoolio, Rytmo) */
.venue-card__name-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.venue-card__name-text--rytmo {
  font-size: 2rem;
  letter-spacing: 0.12em;
  font-style: normal;
  color: rgba(245,243,239,0.5);
}

/* ---- Tag ---- */
.venue-card__tag {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ---- Description (hidden, reveals on hover) ---- */
.venue-card__desc {
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(245,243,239,0.7);
  margin-bottom: 1.2rem;
  max-width: 380px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.venue-card:hover .venue-card__desc {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

/* ---- CTA ---- */
.venue-card__cta {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s, letter-spacing var(--transition-fast);
}
.venue-card:hover .venue-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.venue-card__cta:hover { letter-spacing: 0.3em; }

/* ---- Coming Soon badge ---- */
.venue-card--coming-soon { cursor: default; }

.venue-card__coming-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 4;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.5rem 1rem;
}

/* Coming soon: desc visible always, no CTA */
.venue-card--coming-soon .venue-card__desc {
  max-height: 140px;
  opacity: 0.5;
  transform: translateY(0);
  transition: none;
}
.venue-card--coming-soon .venue-card__tag {
  color: rgba(201,168,76,0.5);
}

/* =============================================
   PHILOSOPHY
   ============================================= */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  margin-top: 8rem;
}

.philosophy__media {
  position: relative;
  overflow: hidden;
}

.philosophy__media-inner {
  position: absolute;
  inset: 0;
  background: url('picture our story.jpg') center/cover no-repeat;
  transition: transform 0.8s ease;
}

.philosophy__media:hover .philosophy__media-inner {
  transform: scale(1.03);
}

.philosophy__content {
  background: var(--grey-dark);
  padding: 8rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
}

.philosophy__text {
  font-size: 0.8rem;
  line-height: 2;
  color: rgba(245,243,239,0.55);
  margin-bottom: 1.5rem;
}

.philosophy__text:last-of-type { margin-bottom: 2.5rem; }

/* =============================================
   NUMBERS
   ============================================= */

.numbers {
  padding: 8rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.number-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.number-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.07);
}
.number-item:last-child::after { display: none; }

.number-item__value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.number-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.4);
}

/* =============================================
   SOCIAL
   ============================================= */

.social {
  padding: 8rem 0;
}

.social__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.social__handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.social__handle:hover { color: var(--gold-light); }

.social__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.social__item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: filter var(--transition-fast), transform 0.5s ease;
  filter: grayscale(15%);
  cursor: pointer;
}
.social__item:hover {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.social__item--1 { background-image: url('birdies ftj.png'); }
.social__item--2 { background-image: url('birdies ftj b.png'); background-position: center top; }
.social__item--3 { background-image: url('ftj nsh.png'); }
.social__item--4 { background-image: url('funkcoolio ftj.png'); }
.social__item--5 { background-image: url('funkcoolio ftj b.png'); }

/* =============================================
   CONTACT
   ============================================= */

.contact {
  padding: 10rem 0;
  background: var(--grey-dark);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.contact__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact__detail-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__detail-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact__detail-value:hover { color: var(--gold); }

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(245,243,239,0.3); }
.form-input:focus { border-color: var(--gold); }

.form-select { cursor: pointer; }
.form-select option { background: var(--grey-dark); color: var(--white); }

.form-textarea { resize: vertical; min-height: 120px; font-family: var(--font-sans); }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: #050505;
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  display: block;
}

.footer__brand-tagline {
  font-size: 0.75rem;
  line-height: 2;
  color: rgba(245,243,239,0.35);
}

.footer__links {
  display: flex;
  gap: 5rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__col-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.75rem;
  color: rgba(245,243,239,0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,243,239,0.2);
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .concepts__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__media { height: 50vh; }
  .philosophy__content { padding: 5rem 5vw; }
  .contact__inner { grid-template-columns: 1fr; gap: 4rem; }
  .venues__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 60vh 50vh 50vh;
  }
  .venues__grid--secondary {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 50vh;
  }
  .venue-card--large { grid-row: auto; }
  /* Always show description on mobile */
  .venue-card__desc {
    max-height: 140px;
    opacity: 0.7;
    transform: translateY(0);
  }
  .venue-card__cta {
    opacity: 1;
    transform: translateY(0);
  }
  .social__grid { grid-template-columns: repeat(3, 1fr); }
  .social__item { overflow: hidden; }
  .footer__top { flex-direction: column; }
  .footer__links { flex-wrap: wrap; gap: 3rem; }
  .nav__logo-img { height: 42px; }
}

@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__link { font-size: 1rem; }
  .nav__burger { display: flex; z-index: 100; }
  .concepts__grid { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: repeat(3, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; align-items: center; }
}
