/* ───────────────────────────────────────────────────────────
   HAVENCO — site8  |  Premium Furniture & Home Electronics
   ─────────────────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:      #F6F1EA;
  --cream-dark: #EDE4D8;
  --dark:       #1B1714;
  --dark-2:     #2C2421;
  --mid:        #6B5A4E;
  --gold:       #C4955A;
  --gold-light: #DDB880;
  --white:      #FEFCFA;
  --border:     #E2D9CE;
  --card-bg:    #FFFFFF;
  --error:      #D94F4F;

  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'DM Sans', system-ui, sans-serif;
  --ff-syne:   'Syne', sans-serif;

  --nav-h:     72px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s,
              box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(27, 23, 20, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.nav-logo {
  font-family: var(--ff-syne);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 6px;
  margin-right: 6px;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--ff-syne);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-signin {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-syne);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s;
}
.btn-signin:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(27,23,20,0.97);
  backdrop-filter: blur(20px);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.nav-mobile.open { max-height: 360px; padding: 20px 40px 30px; }
.nav-mobile a {
  padding: 14px 0;
  font-family: var(--ff-syne);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; color: var(--gold); }
.nav-mobile a:hover { color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { transform: scale(1.06); transition: transform 8s var(--ease-in); }
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27,23,20,0.72) 0%, rgba(27,23,20,0.32) 55%, rgba(27,23,20,0.1) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px; padding-top: var(--nav-h); width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--ff-syne); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; padding: 6px 14px;
  border: 1px solid rgba(196,149,90,0.4); border-radius: 100px;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 600; line-height: 1.06; color: var(--white); margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72); line-height: 1.65; margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-syne); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  padding: 14px 32px; border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,149,90,0.4); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-syne); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); padding: 14px 32px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 48px; }
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: var(--ff-serif); font-size: 1.9rem; font-weight: 600; color: var(--white); line-height: 1; }
.hero-stats span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 2;
}
.hero-scroll-hint span {
  font-family: var(--ff-syne); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── SECTION COMMON ─────────────────────────────────────── */
.section-header {
  max-width: 1400px; margin: 0 auto; padding: 0 40px; margin-bottom: 56px;
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 16px;
}
.section-header .section-eyebrow { grid-column: 1; }
.section-header .section-title   { grid-column: 1; }
.section-header .view-all-link   { grid-column: 2; grid-row: 2; }
.section-eyebrow {
  display: block; font-family: var(--ff-syne); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.12; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--gold); }
.view-all-link {
  font-family: var(--ff-syne); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.2s;
}
.view-all-link:hover { color: var(--dark); }

/* ── CATEGORIES (IMMERSIVE DARK) ────────────────────────── */
.categories-section { padding: 100px 0 80px; background: #1b1714; overflow: hidden; }
.cat-top-header {
  max-width: 1400px; margin: 0 auto 52px; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.cat-top-header .section-eyebrow { color: var(--gold); }
.cat-top-header .section-title { color: var(--white); }
.cat-top-header .section-title em { color: var(--gold); }
.cat-top-header .view-all-link { color: rgba(255,255,255,0.4); border-bottom-color: var(--gold); }
.cat-top-header .view-all-link:hover { color: var(--gold); }
.cat-immersive-track {
  display: flex; gap: 14px; padding: 0 40px 20px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab;
}
.cat-immersive-track:active { cursor: grabbing; }
.cat-immersive-track::-webkit-scrollbar { display: none; }
.cic-card {
  position: relative; flex: 0 0 270px; height: 420px;
  border-radius: 22px; overflow: hidden; display: block; text-decoration: none;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}
.cic-card:hover { transform: scale(1.03) translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.55); }
.cic-img-wrap { position: absolute; inset: 0; }
.cic-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.cic-card:hover .cic-img-wrap img { transform: scale(1.08); }
.cic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.08) 100%);
  transition: background 0.4s;
}
.cic-card:hover .cic-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.15) 100%);
}
.cic-body {
  position: absolute; top: 0; left: 0; right: 0; padding: 22px 22px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.cic-num {
  font-family: var(--ff-syne); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; color: var(--gold);
}
.cic-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  color: white; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translate(8px, -8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.cic-card:hover .cic-arrow { opacity: 1; transform: translate(0, 0); }
.cic-foot { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 24px 26px; }
.cic-name {
  display: block; font-family: var(--ff-serif); font-size: 1.55rem; font-weight: 600;
  color: white; line-height: 1.2; margin-bottom: 5px;
}
.cic-count {
  font-family: var(--ff-syne); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.cic-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out); z-index: 2;
}
.cic-card:hover::after { transform: scaleX(1); }

/* ── COLLECTION SPOTLIGHT ───────────────────────────────── */
.spotlight-section { padding: 100px 0; background: var(--cream); overflow: hidden; }
.spotlight-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 460px 1fr; gap: 64px; align-items: start;
}
.spotlight-left {
  position: relative; height: 640px; border-radius: 28px; overflow: hidden;
}
.spotlight-left img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.spotlight-left:hover img { transform: scale(1.04); }
.spotlight-float-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--dark); color: var(--gold);
  padding: 14px 22px; border-radius: 18px;
  display: flex; flex-direction: column; line-height: 1.1;
}
.spotlight-float-badge span {
  font-family: var(--ff-syne); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7;
}
.spotlight-float-badge strong { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; }
.spotlight-right { display: flex; flex-direction: column; gap: 44px; padding-top: 12px; }
.spotlight-heading {
  font-family: var(--ff-serif); font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 600; line-height: 1.1; color: var(--dark); margin-bottom: 18px;
}
.spotlight-heading em { font-style: italic; color: var(--gold); }
.spotlight-text .section-eyebrow { display: block; margin-bottom: 16px; }
.spotlight-text p { font-size: 0.95rem; color: var(--mid); line-height: 1.7; max-width: 420px; margin-bottom: 28px; }
.spotlight-stats { display: flex; gap: 36px; margin-bottom: 32px; }
.spotlight-stats div { display: flex; flex-direction: column; }
.spotlight-stats strong { font-family: var(--ff-serif); font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1; }
.spotlight-stats span { font-family: var(--ff-syne); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-top: 4px; }
.smg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.smg-card {
  position: relative; border-radius: 16px; overflow: hidden; height: 175px;
  cursor: pointer; transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.smg-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(27,23,20,0.18); }
.smg-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.smg-card:hover img { transform: scale(1.07); }
.smg-wide { grid-column: span 2; height: 155px; }
.smg-price {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,0.95); color: var(--dark);
  font-family: var(--ff-serif); font-size: 0.85rem; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.smg-name {
  position: absolute; bottom: 12px; right: 12px; margin: 0;
  font-family: var(--ff-syne); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: white;
  background: rgba(0,0,0,0.45); padding: 4px 10px; border-radius: 100px; backdrop-filter: blur(6px);
}

/* ── BENTO PRODUCT GRID ─────────────────────────────────── */
.products-section { padding: 100px 0; background: var(--cream); }
.bento-grid {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px; gap: 16px;
}
.bento-large  { grid-column: span 2; grid-row: span 2; }
.bento-wide   { grid-column: span 2; }
.bento-tall   { grid-row: span 2; }
.bento-card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--card-bg); box-shadow: 0 2px 12px rgba(27,23,20,0.07);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  display: flex; flex-direction: column;
}
.bento-card:hover { transform: translateY(-6px) scale(1.012); box-shadow: 0 24px 60px rgba(27,23,20,0.16); }
.bento-img-wrap { position: relative; flex: 1; overflow: hidden; }
.bento-img-wrap img { transition: transform 0.7s var(--ease-out); }
.bento-card:hover .bento-img-wrap img { transform: scale(1.07); }
.product-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--ff-syne); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; z-index: 2;
}
.tag-new        { background: var(--dark); color: var(--gold); }
.tag-featured   { background: var(--gold); color: var(--dark); }
.tag-bestseller { background: rgba(255,255,255,0.95); color: var(--dark); }
.tag-sale       { background: #D94F4F; color: white; }
.bento-hover-overlay {
  position: absolute; inset: 0; background: rgba(27,23,20,0.45);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.35s;
}
.bento-card:hover .bento-hover-overlay { opacity: 1; }
.btn-quick-view {
  font-family: var(--ff-syne); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); background: var(--white); padding: 10px 22px;
  border-radius: 100px; transition: background 0.2s;
}
.btn-quick-view:hover { background: var(--gold-light); }
.btn-wishlist {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white; backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.btn-wishlist:hover { background: rgba(255,255,255,0.3); }
.bento-info { padding: 18px 22px 20px; background: var(--card-bg); }
.bento-category {
  font-family: var(--ff-syne); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 6px;
}
.bento-name { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; line-height: 1.3; }
.bento-desc {
  font-size: 0.78rem; color: var(--mid); line-height: 1.5; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.bento-footer { display: flex; align-items: center; justify-content: space-between; }
.bento-price { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.btn-add-cart {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--ff-syne); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--dark); padding: 9px 18px;
  border-radius: 100px; transition: background 0.2s, transform 0.2s;
}
.btn-add-cart:hover { background: var(--gold); color: var(--dark); transform: translateY(-1px); }

/* ── HORIZONTAL FLOW SECTION ─────────────────────────────── */
.flow-section { position: relative; height: 400vh; background: var(--dark); }
.flow-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.flow-header { padding: 0 80px 40px; color: var(--white); }
.flow-header .section-eyebrow { color: var(--gold); }
.flow-header h2 { font-family: var(--ff-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--white); margin-top: 8px; }
.flow-track { display: flex; gap: 24px; padding: 0 80px; will-change: transform; }
.flow-card { flex: 0 0 380px; height: 480px; border-radius: 20px; overflow: hidden; position: relative; flex-shrink: 0; }
.flow-img { position: absolute; inset: 0; }
.flow-img img { transition: transform 0.6s var(--ease-out); }
.flow-card:hover .flow-img img { transform: scale(1.05); }
.flow-card-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px;
  background: linear-gradient(to top, rgba(27,23,20,0.9) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px; color: var(--white);
}
.flow-card-info span { font-family: var(--ff-syne); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.flow-card-info strong { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; }
.flow-card-info em { font-family: var(--ff-sans); font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  background: var(--white);
  max-width: 1400px; margin: 0 auto; padding: 120px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-col { position: relative; }
.about-img-main { width: 100%; height: 580px; border-radius: 24px; overflow: hidden; }
.about-img-accent {
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 260px; border-radius: 18px; overflow: hidden;
  border: 6px solid var(--white); box-shadow: 0 20px 50px rgba(27,23,20,0.2);
}
.about-tag-float {
  position: absolute; top: 40px; left: -24px;
  font-family: var(--ff-syne); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); background: var(--gold); padding: 10px 18px;
  border-radius: 100px; box-shadow: 0 8px 24px rgba(196,149,90,0.35);
}
.about-text-col { padding-right: 20px; }
.about-text-col .section-title { margin-bottom: 24px; }
.about-text-col p { font-size: 1rem; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.about-pillars { margin: 40px 0; display: flex; flex-direction: column; gap: 24px; }
.pillar { display: flex; align-items: flex-start; gap: 20px; }
.pillar-num { font-family: var(--ff-syne); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; color: var(--gold); padding-top: 4px; flex-shrink: 0; }
.pillar div { display: flex; flex-direction: column; gap: 4px; }
.pillar strong { font-family: var(--ff-syne); font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.pillar span  { font-size: 0.85rem; color: var(--mid); line-height: 1.55; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar { background: var(--dark); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 48px 40px; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px; color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.3s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-item svg { color: var(--gold); }
.trust-item strong { font-family: var(--ff-syne); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; }
.trust-item span   { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-section { background: var(--cream-dark); padding: 100px 40px; text-align: center; }
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-inner .section-eyebrow { margin-bottom: 16px; }
.newsletter-inner h2 { font-family: var(--ff-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--dark); line-height: 1.15; margin-bottom: 36px; }
.newsletter-form {
  display: flex; gap: 0; border-radius: 100px; overflow: hidden;
  background: var(--white); box-shadow: 0 4px 24px rgba(27,23,20,0.1);
}
.newsletter-form input { flex: 1; padding: 16px 28px; font-family: var(--ff-sans); font-size: 0.9rem; color: var(--dark); background: transparent; border: none; outline: none; }
.newsletter-form input::placeholder { color: var(--mid); }
.newsletter-form button { flex-shrink: 0; padding: 16px 32px; font-family: var(--ff-syne); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); background: var(--gold); transition: background 0.25s; }
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { margin-top: 16px; font-size: 0.78rem; color: var(--mid); }

/* ── CONTACT + MAP ───────────────────────────────────────── */
.map-contact-wrap {
  background: var(--cream-dark); padding: 64px 40px 80px;
}
.map-contact-section {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 400px 1fr;
  min-height: 420px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 28px 72px rgba(27,23,20,0.18);
}
.mc-info {
  padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; gap: 28px;
  background: #1b1714;
}
.mc-logo {
  font-family: var(--ff-syne); font-size: 1.3rem; font-weight: 800;
  letter-spacing: 0.14em; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.mc-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7;
  border-left: 2px solid var(--gold); padding-left: 16px; margin: 0;
}
.mc-details { display: flex; flex-direction: column; gap: 20px; }
.mc-row {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.mc-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.mc-row div { display: flex; flex-direction: column; gap: 2px; }
.mc-row strong { font-family: var(--ff-syne); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.mc-row a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.mc-row a:hover { color: var(--gold); }
.mc-map { position: relative; overflow: hidden; min-height: 460px; }
.mc-map iframe { width: 100%; height: 100%; border: none; display: block; filter: saturate(0.85) contrast(1.05); }
.mc-map-link {
  position: absolute; bottom: 16px; right: 16px;
  background: var(--dark); color: var(--gold);
  font-family: var(--ff-syne); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  padding: 8px 16px; border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.mc-map-link:hover { background: var(--gold); color: var(--dark); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark-2); color: var(--white); }
.footer-top { max-width: 1400px; margin: 0 auto; padding: 80px 40px 60px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.footer-logo { font-family: var(--ff-syne); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.12em; color: var(--white); display: flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 28px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.25s, color 0.25s, background 0.25s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,149,90,0.1); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-col h4 { font-family: var(--ff-syne); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-bar { max-width: 1400px; margin: 0 auto; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; gap: 40px; flex-wrap: wrap; }
.footer-contact-bar div { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-contact-bar svg { color: var(--gold); flex-shrink: 0; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 20px 40px 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom span { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-badges { display: flex; gap: 20px; }
.footer-badges span { font-family: var(--ff-syne); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── LOGIN PAGE ──────────────────────────────────────────── */
.login-page { min-height: 100svh; display: flex; align-items: stretch; padding-top: var(--nav-h); }
.login-bg { position: fixed; inset: 0; z-index: -1; }
.login-bg-img { filter: brightness(0.35) saturate(0.8); }
.login-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,23,20,0.85) 0%, rgba(27,23,20,0.5) 100%); }
.login-panel {
  width: 100%; max-width: 520px;
  background: rgba(254,252,250,0.97); backdrop-filter: blur(24px);
  border-radius: 28px; padding: 48px 56px 60px;
  box-shadow: 0 32px 80px rgba(27,23,20,0.5);
  position: relative; z-index: 1; align-self: center;
  margin: 16px auto;
}
@media (min-width: 768px) {
  .login-page { justify-content: flex-start; padding-left: 8vw; }
  .login-panel { margin: auto 0; }
}
.login-brand { display: flex; flex-direction: column; gap: 20px; margin-bottom: 44px; }
.back-home { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-syne); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.back-home:hover { color: var(--dark); }
.login-logo { font-family: var(--ff-syne); font-size: 1.4rem; font-weight: 800; letter-spacing: 0.12em; color: var(--dark); display: flex; align-items: center; gap: 4px; }
.login-title { font-family: var(--ff-serif); font-size: 2rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.15; }
.login-sub { font-size: 0.9rem; color: var(--mid); margin-bottom: 32px; line-height: 1.5; }
.login-error { background: #FEF2F2; border: 1px solid #FECACA; color: var(--error); border-radius: 12px; padding: 12px 18px; font-size: 0.85rem; margin-bottom: 24px; }
.login-form { display: flex; flex-direction: column; gap: 20px; }
.form-field label { display: flex; justify-content: space-between; align-items: center; font-family: var(--ff-syne); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.forgot-link { font-size: 0.72rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--gold); transition: color 0.2s; }
.forgot-link:hover { color: var(--dark); }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap svg { position: absolute; left: 16px; color: var(--mid); flex-shrink: 0; pointer-events: none; }
.input-wrap input { width: 100%; padding: 14px 48px; font-family: var(--ff-sans); font-size: 0.9rem; color: var(--dark); background: var(--cream); border: 1.5px solid var(--border); border-radius: 12px; outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s; }
.input-wrap input:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(196,149,90,0.12); }
.input-wrap input::placeholder { color: rgba(107,90,78,0.5); }
.toggle-pw { position: absolute; right: 14px; color: var(--mid); opacity: 0.5; transition: opacity 0.2s; display: flex; align-items: center; padding: 4px; }
.toggle-pw:hover { opacity: 1; }
.form-check { display: flex; align-items: center; gap: 10px; }
.check-label { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--mid); cursor: pointer; user-select: none; }
.check-label input { display: none; }
.check-custom { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--border); background: var(--cream); flex-shrink: 0; transition: border-color 0.2s, background 0.2s; position: relative; }
.check-label input:checked + .check-custom { background: var(--gold); border-color: var(--gold); }
.check-label input:checked + .check-custom::after { content: ''; position: absolute; top: 2px; left: 5px; width: 5px; height: 9px; border: 2px solid var(--dark); border-top: none; border-left: none; transform: rotate(45deg); }
.btn-login { width: 100%; padding: 15px; font-family: var(--ff-syne); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); background: var(--gold); border-radius: 12px; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; margin-top: 4px; }
.btn-login:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,149,90,0.35); }
.login-divider { display: flex; align-items: center; gap: 16px; margin: 28px 0; color: var(--mid); font-size: 0.78rem; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.social-logins { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-social { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; font-family: var(--ff-sans); font-size: 0.85rem; font-weight: 500; color: var(--dark); background: var(--cream); border: 1.5px solid var(--border); border-radius: 12px; transition: border-color 0.25s, background 0.25s; }
.btn-social:hover { border-color: var(--gold); background: var(--white); }
.login-register { text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--mid); }
.login-register a { color: var(--gold); font-weight: 600; transition: color 0.2s; }
.login-register a:hover { color: var(--dark); }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-card {
  opacity: 0; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }
.reveal-card  { transform: translateY(30px); }
.reveal-up.is-visible, .reveal-left.is-visible, .reveal-right.is-visible,
.reveal-scale.is-visible, .reveal-card.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.bento-card:nth-child(2)  { transition-delay: 0.05s; }
.bento-card:nth-child(3)  { transition-delay: 0.10s; }
.bento-card:nth-child(4)  { transition-delay: 0.15s; }
.bento-card:nth-child(5)  { transition-delay: 0.20s; }
.bento-card:nth-child(6)  { transition-delay: 0.25s; }
.bento-card:nth-child(7)  { transition-delay: 0.30s; }
.bento-card:nth-child(8)  { transition-delay: 0.35s; }
.bento-card:nth-child(9)  { transition-delay: 0.40s; }
.bento-card:nth-child(10) { transition-delay: 0.45s; }
.bento-card:nth-child(11) { transition-delay: 0.50s; }
.bento-card:nth-child(12) { transition-delay: 0.55s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-large { grid-column: span 2; }
}
@media (max-width: 1024px) {
  .about-section  { grid-template-columns: 1fr; gap: 60px; }
  .about-img-col  { max-width: 600px; }
  .footer-top     { grid-template-columns: 1fr; gap: 48px; }
  .footer-links   { grid-template-columns: repeat(2, 1fr); }
  .trust-bar      { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links  { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
  .nav-inner  { padding: 0 24px; }
  .hero-content { padding: 0 24px; padding-top: var(--nav-h); }
  .hero-stats   { gap: 28px; }
  .section-header { padding: 0 24px; grid-template-columns: 1fr; }
  .view-all-link  { grid-column: 1; }
  .cat-top-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .cat-immersive-track { padding: 0 24px 16px; }
  .cic-card { flex: 0 0 220px; height: 340px; }
  .cic-name { font-size: 1.25rem; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .spotlight-left { height: 380px; }
  .spotlight-right { gap: 32px; }
  .spotlight-stats { gap: 24px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; padding: 0 24px; gap: 12px; }
  .bento-large { grid-column: span 2; }
  .bento-wide  { grid-column: span 2; }
  .flow-header { padding: 0 24px 32px; }
  .flow-track  { padding: 0 24px; }
  .flow-card   { flex: 0 0 300px; height: 380px; }
  .about-section   { padding: 80px 24px; }
  .about-img-main  { height: 400px; }
  .about-img-accent { display: none; }
  .trust-bar     { grid-template-columns: 1fr 1fr; }
  .trust-item    { padding: 36px 24px; }
  .newsletter-section { padding: 80px 24px; }
  .newsletter-form { flex-direction: column; border-radius: 16px; overflow: visible; background: transparent; box-shadow: none; gap: 12px; }
  .newsletter-form input  { padding: 14px 20px; border-radius: 12px; background: var(--white); border: 1.5px solid var(--border); }
  .newsletter-form button { border-radius: 12px; padding: 14px 24px; width: 100%; }
  .footer-top     { padding: 60px 24px 48px; }
  .footer-links   { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-contact-bar { padding: 20px 24px; flex-direction: column; gap: 16px; }
  .map-contact-wrap { padding: 40px 24px 60px; }
  .map-contact-section { grid-template-columns: 1fr; }
  .mc-info { padding: 36px 24px; }
  .mc-map { min-height: 300px; }
  .footer-bottom  { padding: 20px 24px 30px; flex-direction: column; align-items: flex-start; }
  .footer-badges  { flex-wrap: wrap; gap: 12px; }
  .login-panel    { padding: 36px 28px 44px; margin: 0 16px; }
  .login-page     { padding: 0; }
}
@media (max-width: 500px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 340px; }
  .bento-large, .bento-wide, .bento-tall, .bento-normal { grid-column: span 1; grid-row: span 1; }
  .hero-ctas  { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .trust-bar  { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
}
