/* ============================================================
   THE POP UP STORY — LUXURY LANDING PAGE
   Stylesheet
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --bg: #FAF8F4;
  --white: #FFFFFF;
  --text-primary: #111111;
  --text-secondary: #262626;
  --gold: #B99155;
  --gold-soft: #D9BD91;
  --border: #ECE8E1;
  --radius: 12px;
  --shadow-soft: 0 20px 45px rgba(17, 17, 17, 0.06);
  --shadow-hover: 0 28px 60px rgba(17, 17, 17, 0.1);
  --container-max: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-space: clamp(64px, 9vw, 140px);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: "Google Sans", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

::selection { background: var(--gold); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.02rem;
  max-width: 560px;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 26px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: background var(--ease) 0.35s, color var(--ease) 0.35s, border-color var(--ease) 0.35s, transform var(--ease) 0.35s;
  white-space: nowrap;
}

.btn-black {
  background: var(--text-primary);
  color: var(--white);
  border: 1px solid var(--text-primary);
}
.btn-black:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}
.btn-outline:hover { background: var(--text-primary); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--text-primary); border-color: var(--text-primary); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--ease) 0.4s, box-shadow var(--ease) 0.4s, padding var(--ease) 0.4s;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 80px; width: auto; transition: opacity 0.3s var(--ease); }
.logo-white { display: block; }
.logo-black { display: none; }
.site-header.is-scrolled .logo-white { display: none; }
.site-header.is-scrolled .logo-black { display: block; }

.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 38px; }

.main-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}

.site-header.is-scrolled .main-nav a { color: var(--text-primary); }

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 22px; }

.header-cta { display: inline-flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #000;
  transition: all 0.35s var(--ease);
}
.site-header.is-scrolled .hamburger span,
.hamburger.is-active span { background: var(--text-primary); }

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  opacity: 0;
  visibility: hidden;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-primary);
}
.mobile-nav .btn { margin-top: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #FDFCFA 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}

.hero-title .sparkle { color: var(--gold); font-size: 0.7em; vertical-align: super; }

.hero-desc {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-weight: 500;
  text-transform: uppercase;
}

.hero-meta-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  margin-top: 20px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s var(--ease);
}
.hero-visual:hover img { transform: scale(1); }

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.category-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 46px 0;
}

.category-strip .container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 10px 6px;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.category-item:hover {
  background: var(--bg);
  transform: translateY(-3px);
}

.category-item .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease);
}
.category-item:hover .category-icon { border-color: var(--gold); }

.category-item svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.category-item span {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-space) 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-text .btn { margin-top: 12px; }

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.about-collage .collage-main {
  grid-column: 1 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-collage .collage-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }

.about-collage .collage-small {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-collage .collage-small img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1;
  transition: transform 0.6s var(--ease);
}
.about-collage .collage-small:hover img { transform: scale(1.08); }

/* ============================================================
   FEATURED BRANDS
   ============================================================ */
.brands {
  padding: 0 0 var(--section-space);
}

.brands-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  flex-wrap: wrap;
  gap: 16px;
}

.brands-head .eyebrow { margin-bottom: 0; }

.view-all {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.view-all:hover { color: var(--gold); border-color: var(--gold); }

.brands-slider-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #b99155;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.slider-arrow:hover { border-color: var(--gold); background: var(--white); }
.slider-arrow svg { width: 30px; height: 30px; stroke: #b99155; }

.brands-track-outer { overflow: hidden; flex: 1; }

.brands-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s var(--ease);
}

.brand-card {
  flex: 0 0 calc((100% - 6 * 16px) / 7);
  min-width: 150px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 15px;
  text-align: center;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.brand-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--gold-soft); }

.brand-card .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 14px;
}

.brand-card .brand-logo img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  opacity: 1;
  transition: filter 0.35s var(--ease), opacity 0.35s var(--ease);
}

.brand-card:hover .brand-logo img {
  filter: grayscale(0);
  opacity: 1;
}

.brand-card .brand-cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============================================================
   WHY EVERYONE LOVES TPUS
   ============================================================ */
.why-tpus {
  background: var(--white);
  padding: var(--section-space) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-tpus .section-header { text-align: center; margin-bottom: 56px; }
.why-tpus .eyebrow { justify-content: center; }
.why-tpus .eyebrow::before { display: none; }

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

.why-card {
  text-align: left;
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 26px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.why-card:hover .why-icon { border-color: var(--gold); transform: translateY(-4px); }
.why-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.3; }

.why-card h4 {
  font-size: 21px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   PAST EDITIONS
   ============================================================ */
.past-editions { padding: var(--section-space) 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.gallery-item::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.28);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
}

.gallery-item::after {
  content: "\2197";
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
  z-index: 2;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }

/* ============================================================
   STATISTICS
   ============================================================ */
.statistics {
  background: var(--text-primary);
  padding: 70px 0;
  margin: var(--section-space) 0 0;
}

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

.stat-item {
  position: relative;
  padding: 10px;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 10%;
  width: 1px; height: 80%;
  background: rgba(255,255,255,0.12);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   UPCOMING EVENT / REGISTER
   ============================================================ */
.upcoming {
  padding: var(--section-space) 0;
}

.upcoming .container {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.upcoming-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upcoming-info h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 4px; }
.upcoming-info .location-tag { color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 22px; }

.event-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}
.event-detail-row svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; }

.event-features {
  margin: 20px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.event-features svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }

.upcoming-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.upcoming-image img { width: 100%; height: 100%; object-fit: cover; }

.register-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
}

.register-form-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ============================================================
   FORMS (shared)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 13px 15px;
  background: var(--bg);
  color: var(--text-primary);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 14px;
  text-align: center;
}

.form-status {
  margin-top: 14px;
  font-size: 0.85rem;
  padding: 12px 14px;
  border-radius: 6px;
  display: none;
}
.form-status.success { display: block; background: #EEF6EE; color: #2E6B34; border: 1px solid #CFE7CF; }
.form-status.error { display: block; background: #FBEDEC; color: #A6362B; border: 1px solid #F1CFCB; }

.field-error {
  font-size: 0.72rem;
  color: #C0453A;
  min-height: 14px;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: var(--section-space) 0;
}

.contact-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: flex-start;
}

.contact-intro p { color: var(--text-secondary); margin-bottom: 24px; max-width: 420px; }

.contact-points { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.contact-point { display: flex; gap: 16px; align-items: flex-start; }
.contact-point .icon-circle {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-point .icon-circle svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-point h4 { font-family: var(--font-body); font-size: 18px; font-weight: 600; margin-bottom: 3px; }
.contact-point p { font-size: 16px; color: var(--text-secondary); margin: 0; }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 44px);
}

/* ============================================================
   CONTACT INFORMATION
   ============================================================ */
.contact-info-section {
  padding: 60px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 46px);
}

.info-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}

.info-block p, .info-block address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
}

.info-block a { color: var(--text-primary); transition: color 0.3s; }
.info-block a:hover { color: var(--gold); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram-section { padding: var(--section-space) 0 90px; }

.instagram-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.insta-handle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}
.insta-handle svg { width: 22px; height: 22px; stroke: var(--gold); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta-item:hover img { transform: scale(1.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 0.9fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo { height: 100px; margin-bottom: 20px; }

.footer-about p { font-size: 0.85rem; line-height: 1.8; max-width: 300px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col address, .footer-col p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  font-style: normal;
  line-height: 1.7;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-gst { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.footer-social { display: flex; gap: 14px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke: var(--white); }

.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: transform, opacity;
}
[data-animate="fade-up"] { transform: translateY(36px); }
[data-animate="fade-left"] { transform: translateX(48px); }
[data-animate="fade-right"] { transform: translateX(-48px); }
[data-animate="zoom"] { transform: scale(0.94); }

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-visual img, .gallery-item img, .insta-item img, .about-collage img { transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .upcoming .container { grid-template-columns: 1fr 1fr; }
  .upcoming-image { grid-column: 1 / -1; order: 3; max-height: 320px; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-grid .info-block:first-child { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-height: 420px; }
  .hero { padding-top: 130px; }
  .about .container { grid-template-columns: 1fr; }
  .about-collage { order: -1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .stat-item:nth-child(2n)::after { display: none; }
  .stat-item:nth-child(-n+2) { margin-bottom: 20px; }
  .contact-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .category-strip .container { grid-template-columns: repeat(4, 1fr); row-gap: 32px; }
}

@media (max-width: 720px) {
  .brand-card { flex: 0 0 calc((100% - 2 * 16px) / 3); min-width: 130px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .why-card { padding: 28px 22px; }
  .category-strip .container { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-meta { gap: 16px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .category-strip .container { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .upcoming .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .brands-slider-wrap { gap: 10px; }
  .slider-arrow { width: 38px; height: 38px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22);
  z-index: 900;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: whatsappPulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.28);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  stroke-width: 1.6;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 28px rgba(17, 17, 17, 0.22), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}

@media (max-width: 720px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 18px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
