/* ============================================================
   TWINK LIGHTING — style.css
   Premium dark-gold design system
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d5a3;
  --gold-dim:    #7a6130;
  --black:       #080808;
  --dark:        #0f0f0f;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --white:       #f5f5f0;
  --muted:       #888;
  --muted-2:     #555;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --radius:      4px;
  --transition:  0.35s cubic-bezier(.25,.46,.45,.94);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Common ─────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: normal;
  text-align: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.btn--whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
}

/* =====================================
   NAVIGATION
   ===================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav__logo-img {
  height: 53px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: filter var(--transition), height var(--transition);
}
.nav__logo-img:hover { filter: brightness(1.15); }
.nav.scrolled .nav__logo-img {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.75);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================================
   HERO
   ===================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 53px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
  animation: heroZoom 10s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(8,8,8,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(245,245,240,0.7);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeIn 2s 1.5s both;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =====================================
   PILLARS
   ===================================== */
.pillars {
  background: var(--dark);
  padding: 6rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 3rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,168,76,0.04); }

.pillar__icon {
  width: 72px; height: 72px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover .pillar__icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,168,76,0.2);
}
.pillar__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}
.pillar__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* =====================================
   COLLECTIONS
   ===================================== */
.collections {
  background: var(--black);
  padding: 7rem 0;
}
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
}
.collection-card {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.collection-card__img-wrap {
  width: 100%; height: 100%;
  overflow: hidden;
}
.collection-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.25,.46,.45,.94);
}
.collection-card:hover .collection-card__img {
  transform: scale(1.07);
}

/* Placeholder for cards without images */
.collection-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
}
.collection-card__placeholder--lamp {
  background: linear-gradient(135deg, #101010 0%, #1a1506 100%);
}
.collection-card__placeholder--outdoor {
  background: linear-gradient(135deg, #080c10 0%, #0d1a0a 100%);
}

/* Dark overlay on hover */
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, rgba(8,8,8,0) 50%);
  z-index: 1;
  transition: opacity var(--transition);
}
.collection-card:hover::before {
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.25) 60%);
}

.collection-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}
.collection-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
}
.collection-card__arrow {
  color: var(--gold);
  font-size: 1.3rem;
  transform: translateX(0);
  transition: transform var(--transition);
  opacity: 0;
}
.collection-card:hover .collection-card__arrow {
  transform: translateX(6px);
  opacity: 1;
}

/* =====================================
   SHOWROOM EXPERIENCE
   ===================================== */
.showroom-exp {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.showroom-exp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

/* LEFT */
.showroom-exp__left {
  padding: 6rem 5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.showroom-exp__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.showroom-exp__title em {
  font-style: italic;
  color: var(--gold-light);
}
.showroom-exp__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.showroom-exp__features {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.showroom-exp__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(245,245,240,0.8);
}
.feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* RIGHT (video) */
.showroom-exp__right {
  position: relative;
  overflow: hidden;
}
.showroom-exp__video-wrap {
  position: relative;
  width: 100%; height: 100%;
  min-height: 500px;
}
.showroom-exp__video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 178%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}
.showroom-exp__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.2);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  z-index: 2;
  pointer-events: none;
}
.showroom-exp__video-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
}
.video-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff4444;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* =====================================
   LOCATIONS
   ===================================== */
.locations {
  background: var(--black);
  padding: 7rem 0;
}
.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.location-card {
  background: var(--dark);
  padding: 3.5rem;
  position: relative;
  transition: background var(--transition);
}
.location-card:hover { background: rgba(201,168,76,0.04); }
.location-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.location-card:hover::after { opacity: 1; }

.location-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.location-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}
.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.location-card__detail svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.location-card__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* =====================================
   WHY TWINK
   ===================================== */
.why-twink {
  background: var(--dark-2);
  padding: 7rem 0;
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.why-twink__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
}
.why-card {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.05); }
.why-card__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.why-card:hover .why-card__number { color: rgba(201,168,76,0.5); }
.why-card__title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.why-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* =====================================
   INSTAGRAM
   ===================================== */
.instagram {
  background: var(--black);
  padding: 7rem 0;
}
.instagram__embed-wrap { margin-top: 3rem; }

/* Real Instagram posts grid */
.instagram__posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.ig-post-wrap {
  min-width: 0;
}
.ig-post-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 12px;
  display: block;
  background: #000;
}
/* Override Instagram blockquote default sizing to fill column */
.ig-post-wrap .instagram-media {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
}
.instagram__follow-cta {
  margin-top: 3rem;
  text-align: center;
}

@media (max-width: 1000px) {
  .instagram__posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .instagram__posts-grid { grid-template-columns: 1fr; }
}

/* =====================================
   FOOTER
   ===================================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer__top {
  padding: 5rem 0 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 4rem;
}
.footer__logo {
  height: 44px;
  margin-bottom: 1.25rem;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer__seo-text {
  font-size: 0.8rem;
  color: var(--muted-2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.footer__socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.2);
}

.footer__col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__address {
  margin-bottom: 1.5rem;
}
.footer__address strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 0.4rem;
}
.footer__address p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

.footer__contact-item {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.footer__contact-item a {
  color: var(--muted);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 1.5rem 0;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-align: center;
}

/* =====================================
   WHATSAPP FLOAT
   ===================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  cursor: pointer;
}
.whatsapp-float__bubble {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 2;
  overflow: visible;
}
.whatsapp-float:hover .whatsapp-float__bubble {
  transform: scale(1.08);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}
.whatsapp-float__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.3;
  animation: pingWave 2.5s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}
@keyframes pingWave {
  0% { transform: scale(1); opacity: 0.3; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}
.whatsapp-float__tooltip {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.72rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .why-twink__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__logo-img { height: 46px; }
  .nav.scrolled .nav__logo-img { height: 31px; }
}

@media (max-width: 900px) {
  .nav__logo-img { height: 41px; }
  .nav.scrolled .nav__logo-img { height: 29px; }

  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .pillar:last-child { border-bottom: none; }

  .collections__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .collections__grid .collection-card:nth-child(5),
  .collections__grid .collection-card:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .showroom-exp__inner { grid-template-columns: 1fr; }
  .showroom-exp__left { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .showroom-exp__video-wrap { min-height: 360px; }

  .founder__inner { grid-template-columns: 1fr; }
  .founder__photo-wrap { min-height: 420px; }
  .founder__photo-col::after { display: none; }
  .founder__content { padding: 4rem 2rem; }

  .locations__grid { grid-template-columns: 1fr; }

  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,8,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem 1.5rem; gap: 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .nav { position: fixed; }

  .why-twink__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .nav__logo-img { height: 34px; }
  .nav.scrolled .nav__logo-img { height: 24px; }
  .hero { padding-top: 34px; min-height: 100dvh; height: auto; padding-bottom: 4rem; }
  .hero__headline { font-size: clamp(2rem, 10vw, 3rem); word-break: break-word; }
  .hero__sub { font-size: 0.88rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; padding: 1rem; }

  .collections__grid { grid-template-columns: 1fr; }
  .collections__grid .collection-card { aspect-ratio: 4/3; }
  .collections__grid .collection-card:nth-child(5),
  .collections__grid .collection-card:nth-child(6) {
    aspect-ratio: 4/3;
  }
  
  /* Prevent cropping for tall images on mobile */
  #cat-chandeliers .collection-card__img,
  #cat-floorlamps .collection-card__img,
  #cat-focuslights .collection-card__img {
    object-fit: contain;
    background: #000;
  }

  .why-twink__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ig-post-wrap .instagram-media {
    min-width: 0 !important;
    width: 100% !important;
  }

  .showroom-exp__left { padding: 3rem 1.5rem; text-align: center; }
  .showroom-exp__features { align-items: flex-start; text-align: left; }
  #showroom-cta-btn { align-self: center; width: 100%; margin-top: 1rem; justify-content: center; }
  
  .location-card { padding: 2rem 1.5rem; }
  .pillar { padding: 2rem 1.5rem; }
  .why-card { padding: 2rem 1.5rem; }

  .founder__content { padding: 3rem 1.5rem; }
  .founder__photo-wrap { min-height: 280px; }
  .founder__quote { font-size: 1rem; }
  .founder__quote-mark { font-size: 4rem; }

  .locations__grid { gap: 1px; }

  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }

  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .collections { padding: 5rem 0; }
  .locations { padding: 5rem 0; }
  .why-twink { padding: 5rem 0; }
  .instagram { padding: 5rem 0; }
  .founder__content { gap: 1rem; }
}
.nav__link.active { color: var(--gold); } .nav__link.active::after { width: 100%; }

/* =====================================
   FOUNDER SECTION
   ===================================== */
.founder {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* LEFT — Photo */
.founder__photo-col {
  position: relative;
  overflow: hidden;
}
.founder__photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
}
.founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.founder__photo-col:hover .founder__photo {
  transform: scale(1.04);
}
/* Decorative corner frame */
.founder__photo-frame {
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
  transition: border-color 0.4s;
}
.founder__photo-col:hover .founder__photo-frame {
  border-color: rgba(201,168,76,0.5);
}
/* Right-side fade so it bleeds into content column */
.founder__photo-col::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--dark-2));
  pointer-events: none;
}

/* RIGHT — Content */
.founder__content {
  padding: 6rem 5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,240,0.85);
  line-height: 1.85;
  position: relative;
  margin: 1.5rem 0 2.5rem;
  border: none;
  padding: 0;
}
.founder__quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.6;
  color: rgba(201,168,76,0.2);
  display: block;
  margin-bottom: 1rem;
  font-style: normal;
}

.founder__sig {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.founder__sig-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.founder__sig-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.founder__sig-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}
.founder__sig-title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder__cta { align-self: flex-start; }

/* Responsive */
@media (max-width: 900px) {
  .founder__inner { grid-template-columns: 1fr; }
  .founder__photo-wrap { min-height: 420px; }
  .founder__photo-col::after { display: none; }
  .founder__content { padding: 4rem 2rem; }
}
@media (max-width: 600px) {
  .founder__content { padding: 3rem 1.5rem; }
  .founder__photo-wrap { min-height: 320px; }
}
