/* 
 * Benzoville Select — Premium Lead Magnet Landing Page Design System
 * Curated for Architects, Interior Designers, and Real-Estate Developers.
 */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100;200;300;400;500;600;700&family=Geist+Mono:wght@300;400&display=swap');

:root {
  /* Colors */
  --black: hsl(0, 0%, 4%);
  --black-pure: hsl(0, 0%, 2%);
  --black-soft: hsl(0, 0%, 8%);
  
  --brass: hsl(35, 30%, 50%); /* #a38259 */
  --brass-light: hsl(35, 45%, 62%); /* #c9a875 */
  --brass-dark: hsl(35, 30%, 36%); /* #7a6240 */
  --brass-soft: hsla(35, 30%, 50%, 0.08);
  --brass-glow: hsla(35, 30%, 50%, 0.25);
  
  --white: hsl(0, 0%, 100%);
  --off-white: hsl(0, 0%, 98%);
  
  --grey-50: hsl(0, 0%, 96%);
  --grey-100: hsl(0, 0%, 90%);
  --grey-200: hsl(0, 0%, 83%);
  --grey-300: hsl(0, 0%, 64%);
  --grey-400: hsl(0, 0%, 58%);
  --grey-500: hsl(0, 0%, 45%);
  --grey-700: hsl(0, 0%, 25%);
  --grey-800: hsl(0, 0%, 15%);
  --grey-900: hsl(0, 0%, 9%);

  /* Animation Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-smooth: all 0.6s var(--ease-out-expo);
  --transition-fast: all 0.3s ease;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--black-pure);
  overflow: hidden;
  height: 100%;
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black-pure);
  color: var(--black-soft);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  overflow: hidden;
  height: 100%;
}

.fullpage-container {
  height: 100vh;
  width: 100vw;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black-pure);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s var(--ease-out-expo);
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  height: 40px;
  width: auto;
  opacity: 0;
  transform: translateY(20px);
  filter: brightness(0) invert(1);
  animation: preloaderReveal 1.2s var(--ease-out-expo) forwards 0.2s;
}

.preloader-line {
  width: 140px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--brass-light);
  animation: preloaderProgress 1.5s var(--ease-in-out-cubic) forwards;
}

@keyframes preloaderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderProgress {
  to {
    width: 100%;
  }
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 200;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.serif-display {
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-weight: 200;
  color: var(--brass-light);
}

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--brass);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.1;
  font-weight: 200;
}

.magazine-details h1,
.magazine-details h1 .serif-display {
  font-weight: 300;
}

.h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  font-weight: 200;
}

.h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.25;
  font-weight: 300;
}

.body-large {
  font-size: 18px;
  line-height: 1.7;
  color: var(--grey-700);
}

.body-medium {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-500);
}

/* Layout Utilities */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 20vh 0; /* 20% top margin, 20% bottom margin */
  box-sizing: border-box;
  overflow: hidden;
}

section .container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-dark {
  background-color: var(--black-pure);
  color: var(--white);
}

.section-dark h1, 
.section-dark h2, 
.section-dark h3 {
  color: var(--white);
}

.section-dark .body-large,
.section-dark .body-medium {
  color: var(--grey-300);
}

.section-header {
  max-width: 800px;
  margin-bottom: 72px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .sub-text {
  margin-left: auto;
  margin-right: auto;
}

.sub-text {
  font-size: 17px;
  color: var(--grey-500);
  margin-top: 20px;
  max-width: 600px;
  line-height: 1.6;
}

.section-dark .sub-text {
  color: var(--grey-300);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-size: 12px;
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-brass {
  background: var(--brass);
  color: var(--white);
  border: 1px solid var(--brass);
}

.btn-brass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass-light);
  transform: translateY(100%);
  transition: var(--transition-smooth);
  z-index: 0;
}

.btn-brass:hover::before {
  transform: translateY(0);
}

.btn-brass span,
.btn-brass svg {
  position: relative;
  z-index: 1;
}

.btn-brass:hover {
  border-color: var(--brass-light);
  box-shadow: 0 12px 30px var(--brass-glow);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn-arrow:hover svg {
  transform: translateX(6px);
}

/* Nav Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: background-color 0.5s ease, border-color 0.5s ease, padding 0.6s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.5s var(--ease-out-expo);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

header.nav-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-30px);
}

header.scrolled {
  background: rgba(10, 10, 10, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scrolled light theme color-morph */
header.nav-theme-light.scrolled {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.nav-theme-light .nav-link {
  color: rgba(10, 10, 10, 0.7);
}

header.nav-theme-light .nav-link:hover {
  color: var(--black);
}

header.nav-theme-light .nav-link::after {
  background: var(--brass);
}

header.nav-theme-light .logo-img {
  filter: brightness(0); /* Make logo black */
}

header.nav-theme-light .btn-outline-white {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.3);
}

header.nav-theme-light .btn-outline-white:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.5s ease, height 0.6s var(--ease-out-expo);
}

header.scrolled .logo-img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.5s ease, padding 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(163, 130, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translateY(calc(var(--scroll-offset) * -0.12px));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: elementReveal 1s var(--ease-out-expo) forwards 0.4s;
}

.hero-tag {
  background: var(--brass-soft);
  border: 1px solid var(--brass);
  color: var(--brass-light);
  padding: 6px 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-content h1,
.hero-content h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 300;
  color: var(--black-pure);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-content h1 .serif-display,
.hero-content h2 .serif-display {
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  color: var(--brass);
}

.hero-content .sub {
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--grey-200);
  padding-top: 32px;
}

.hero-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-feat-icon {
  color: var(--brass-light);
  flex-shrink: 0;
  padding-top: 3px;
}

.hero-feat-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-feat-text {
  font-size: 14px;
  color: var(--grey-700);
}

.hero-feat-text strong {
  color: var(--black);
  display: block;
  font-weight: 300;
  margin-bottom: 2px;
}

/* Premium Form Container */
.form-card-container {
  opacity: 0;
  transform: translateY(30px);
  animation: elementReveal 1s var(--ease-out-expo) forwards 0.7s;
}

.form-card {
  background: var(--white);
  padding: 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-5deg) rotateX(2.5deg);
  transition: transform 0.8s var(--ease-out-expo), box-shadow 0.8s var(--ease-out-expo), background-color 0.3s;
  will-change: transform;
  overflow: hidden; /* Clips the shine effect */
}

/* Fallback hover styles if JS is disabled; JS inline styles will override these */
.form-card:hover {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-8px);
  box-shadow: 0 30px 70px hsla(35, 45%, 62%, 0.35);
}

/* Premium Border Light Animation tracking mouse */
.form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: radial-gradient(
    circle 240px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--brass-light),
    rgba(163, 130, 89, 0.15) 50%,
    transparent 100%
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 6;
}

/* Premium Shine Reflection tracking mouse */
.form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 180px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(163, 130, 89, 0.08) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 5;
}

.form-card:hover::before,
.form-card:hover::after {
  opacity: 1;
}

.form-card h3 {
  font-size: 21px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--grey-500);
  margin-bottom: 16px;
}

.form-card-dark .form-sub {
  color: var(--grey-300);
}

.form-group {
  position: relative;
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey-400);
  margin-bottom: 6px;
  transition: var(--transition-fast);
}

.form-card-dark .form-label {
  color: var(--grey-300);
}

.form-control {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--grey-200);
  padding: 8px 0;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--black);
  border-radius: 0;
  transition: var(--transition-fast);
}

.form-card-dark .form-control {
  border-bottom: 1px solid var(--grey-800);
  color: var(--white);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--brass);
}

.form-control::placeholder {
  color: var(--grey-300);
}

.form-card-dark .form-control::placeholder {
  color: var(--grey-700);
}

/* Select Styling */
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='%23a38259'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

select.form-control option {
  background-color: hsl(35, 40%, 90%); /* Light champagne/cream that matches the luxury brass vibe */
  color: var(--black);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-card .btn-submit {
  width: 100%;
  margin-top: 12px;
  border: none;
}

.form-note {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--grey-400);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes elementReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lead Magnet Magazine Section */
.magazine-showcase {
  background-color: var(--off-white);
  overflow: hidden;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* 3D Magazine Display */
.magazine-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.magazine-scene {
  width: 320px;
  height: 420px;
  perspective: 1200px;
  position: relative;
  z-index: 2;
}

.magazine-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(10deg);
  transition: transform 0.8s var(--ease-out-expo);
}

.magazine-scene:hover .magazine-3d {
  transform: rotateY(-5deg) rotateX(5deg);
}

.magazine-face {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.magazine-front {
  transform: translateZ(8px);
  border-radius: 2px 6px 6px 2px;
  z-index: 3;
}

.magazine-spine {
  position: absolute;
  width: 16px;
  height: 100%;
  background: #2b2724;
  left: -8px;
  transform: rotateY(-90deg) translateZ(0);
  transform-origin: center right;
  z-index: 2;
  box-shadow: inset -3px 0 8px rgba(0,0,0,0.4);
}

.magazine-back {
  background: #171717;
  transform: rotateY(180deg) translateZ(8px);
  border-radius: 6px 2px 2px 6px;
  z-index: 1;
}

/* Background floating elements */
.magazine-bg-decor {
  position: absolute;
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  opacity: 0.45;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
}

.decor-left {
  left: 20px;
  transform: translate(-15%, calc(-5% + (var(--scroll-offset) * -0.05px))) rotate(-8deg) scale(0.9);
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  will-change: transform;
}

.decor-right {
  right: 20px;
  transform: translate(15%, calc(5% + (var(--scroll-offset) * 0.05px))) rotate(8deg) scale(0.9);
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  will-change: transform;
}

.magazine-visual:hover .decor-left {
  transform: translate(-25%, calc(-8% + (var(--scroll-offset) * -0.05px))) rotate(-12deg) scale(0.92);
  opacity: 0.6;
}

.magazine-visual:hover .decor-right {
  transform: translate(25%, calc(8% + (var(--scroll-offset) * 0.05px))) rotate(12deg) scale(0.92);
  opacity: 0.6;
}

.magazine-details ul {
  list-style: none;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.magazine-details li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.magazine-icon-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--brass);
  border: 1px solid var(--brass);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.magazine-details-text h4 {
  font-size: 16px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0;
}

.magazine-details-text p {
  color: var(--grey-500);
  font-size: 14px;
}

/* Target Audience Segment Cards */
.audiences {
  background-color: var(--black-soft);
}

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

.audience-card {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: var(--black-pure);
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  border: none;
  transform-style: preserve-3d;
  will-change: transform;
}

.audience-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out-expo), filter 0.5s ease;
  filter: brightness(0.7);
  will-change: transform;
}

.audience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.2) 100%);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.6s var(--ease-out-expo), backdrop-filter 0.6s var(--ease-out-expo), -webkit-backdrop-filter 0.6s var(--ease-out-expo);
}

.audience-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--brass-light);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.1em;
}

.audience-card h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 0;
  transition: transform 0.5s var(--ease-out-expo), margin-bottom 0.5s var(--ease-out-expo);
  font-family: 'Geist', sans-serif;
  font-weight: 200;
  text-transform: uppercase;
}

.audience-hover-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo), opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
  transform: translateY(20px);
}

.audience-card p {
  font-size: 14px;
  color: var(--grey-300);
  line-height: 1.6;
  margin-bottom: 24px;
}

.audience-list {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-bullet {
  font-size: 13px;
  color: var(--grey-400);
  display: flex;
  gap: 10px;
  align-items: center;
}

.audience-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brass-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hover effects */
.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.audience-card:hover .audience-bg-img {
  transform: scale(1.08);
  filter: brightness(0.35) blur(2px);
}

.audience-card:hover .audience-overlay {
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.audience-card:hover h3 {
  margin-bottom: 20px;
}

.audience-card:hover .audience-hover-content {
  max-height: 350px;
  opacity: 1;
  transform: translateY(0);
}

/* Premium Border Light Animation tracking mouse */
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: radial-gradient(
    circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--brass-light),
    rgba(163, 130, 89, 0.15) 50%,
    transparent 100%
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 6;
}

/* Premium Shine Reflection tracking mouse */
.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 5;
}

.audience-card:hover::before,
.audience-card:hover::after {
  opacity: 1;
}

.audience-bullet {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.audience-card:hover .audience-bullet {
  opacity: 1;
  transform: translateY(0);
}

.audience-card:hover .audience-bullet:nth-child(1) { transition-delay: 0.1s; }
.audience-card:hover .audience-bullet:nth-child(2) { transition-delay: 0.2s; }
.audience-card:hover .audience-bullet:nth-child(3) { transition-delay: 0.3s; }

/* Touch devices have no hover — always show the bullets there,
   otherwise this content is permanently invisible on mobile. */
@media (hover: none), (pointer: coarse) {
  .audience-bullet {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Portfolio Highlight Gallery */
.portfolio {
  padding-bottom: 140px;
}

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

.portfolio-item {
  height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.portfolio-img {
  width: 100%;
  height: 120%;
  position: absolute;
  top: -10%;
  left: 0;
  background-size: cover;
  background-position: center;
  transform: translateY(calc(var(--scroll-offset) * 0.06px));
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s;
  filter: brightness(0.95);
  will-change: transform;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 2;
}

.portfolio-item:hover .portfolio-img {
  transform: translateY(calc(var(--scroll-offset) * 0.06px)) scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--brass-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-name {
  font-size: 18px;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-weight: 400;
}

/* Luxury Credibility Stats */
.stats-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--grey-800);
  border-bottom: 1px solid var(--grey-800);
  padding: 80px 0;
}

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

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--grey-800);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: clamp(36px, 4vw, 54px);
  font-family: 'Cinzel', serif;
  color: var(--brass-light);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey-400);
  text-transform: uppercase;
}

/* Brand Collaborations Banner */
.collabs {
  background: var(--black-pure);
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-900);
}

.collabs-title {
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--brass-light);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.collabs-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.collabs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  text-decoration: none;
  transition: transform 0.6s var(--ease-out-expo), 
              filter 0.6s var(--ease-out-expo), 
              opacity 0.6s var(--ease-out-expo), 
              border-color 0.6s var(--ease-out-expo), 
              background 0.6s var(--ease-out-expo), 
              box-shadow 0.6s var(--ease-out-expo);
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform, filter, opacity;
}

.collabs-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: radial-gradient(
    circle 150px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    var(--brass-light),
    rgba(163, 130, 89, 0.1) 50%,
    transparent 100%
  );
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box, 
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 6;
}

.collabs-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle 100px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.08),
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
  z-index: 5;
}

/* Sibling focus & blur on hover */
.collabs-logos:hover .collabs-card {
  filter: blur(4px);
  opacity: 0.45;
  transform: scale(0.94);
}

.collabs-logos:hover .collabs-card:hover {
  filter: blur(0);
  opacity: 1;
  transform: scale(1.5) translateY(-10px);
  border-color: rgba(163, 130, 89, 0.4);
  background: rgba(163, 130, 89, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.collabs-card:hover::before,
.collabs-card:hover::after {
  opacity: 1;
}

.collabs-brand {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.3s ease;
  z-index: 2;
}

.collabs-country {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  color: var(--grey-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.3s ease;
  z-index: 2;
}

.collabs-card:hover .collabs-brand,
.collabs-card:hover .collabs-country {
  opacity: 0;
  transform: translateY(-8px);
}

.collabs-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(0.9) translateY(8px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  z-index: 1;
  pointer-events: none;
}

.collabs-card:hover .collabs-card-bg {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* CTA Bottom Section */
.bottom-cta {
  background: radial-gradient(circle at 30% 70%, hsl(0, 0%, 10%) 0%, var(--black-pure) 80%);
  color: var(--white);
}

.bottom-cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.bottom-cta-info h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.bottom-cta-info .body-large {
  color: var(--grey-300);
  margin-bottom: 40px;
}

.bottom-cta-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bottom-cta-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--brass-light);
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 15px;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.step-content p {
  font-size: 13px;
  color: var(--grey-400);
}

/* Thank You Page Styling */
.thank-you-body {
  background: var(--black-pure);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.thank-you-card {
  max-width: 600px;
  text-align: center;
  padding: 60px 48px;
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: elementReveal 1s var(--ease-out-expo) forwards 0.2s;
}

.thank-you-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brass);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--brass-soft);
  border: 1px solid var(--brass);
  color: var(--brass-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-card h1 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.thank-you-card p {
  font-size: 15px;
  color: var(--grey-300);
  margin-bottom: 40px;
}

.download-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  margin-bottom: 40px;
}

.download-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--brass-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.download-filename {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 20px;
}

.thank-you-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}



.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col-brand .logo-img {
  height: 28px;
  margin-bottom: 16px;
}

.footer-col-brand p {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--grey-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--grey-500);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brass-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--grey-900);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--grey-500);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* Hero Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  animation: heroScrollReveal 1s var(--ease-out-expo) forwards 1.2s;
  transition: var(--transition-smooth);
}

.hero-scroll-indicator:hover {
  transform: translate(-50%, -4px);
}

.hero-scroll-indicator:hover .scroll-text {
  color: var(--brass-light);
  letter-spacing: 0.25em;
}

.hero-scroll-indicator:hover .scroll-indicator-line::after {
  background: var(--brass-light);
}

.scroll-text {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: var(--brass);
  animation: scrollLineAnim 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), visibility 0.4s var(--ease-out-expo), background-color 0.3s, border-color 0.3s;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s var(--ease-out-expo);
}

.back-to-top-btn:hover {
  background: var(--brass);
  border-color: var(--brass-light);
  box-shadow: 0 10px 25px var(--brass-glow);
}

.back-to-top-btn:hover svg {
  transform: translateY(-3px);
}

/* Adjust position on mobile because of sticky bar */
@media (max-width: 991px) {
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@keyframes scrollLineAnim {
  0% {
    transform: translateY(-16px);
  }
  50% {
    transform: translateY(48px);
  }
  100% {
    transform: translateY(48px);
  }
}

@keyframes heroScrollReveal {
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Animations Reveal on Scroll class */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }



/* HoneyPot CSS */
.bv-hp {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


/* Magazine Deep Details Section */
.magazine-deep {
  background-color: var(--black-pure);
  border-top: 1px solid var(--grey-900);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-bottom: 1px solid var(--grey-800);
  margin-bottom: 48px;
  padding-bottom: 16px;
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--grey-500);
  cursor: pointer;
  padding: 8px 16px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.4s var(--ease-out-expo);
}

.tab-btn .tab-num {
  color: var(--brass);
  margin-right: 8px;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  color: var(--white);
}

.tab-btn.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tabs-content {
  position: relative;
  min-height: 380px;
  width: 100%;
}

.tab-panel {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.tab-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Tab 1: Editor Note Grid */
.editor-note-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.9fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.editor-img-col {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.editor-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.editor-img-col:hover .editor-portrait {
  filter: grayscale(0) contrast(1);
  transform: scale(1.05);
}

.editor-quote-col {
  position: relative;
  border-right: 1px solid var(--grey-800);
  padding-right: 48px;
}

.quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 80px;
  color: var(--brass-glow);
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
  z-index: 0;
}

.quote-text {
  font-size: 20px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.editor-author strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--brass-light);
}

.editor-author span {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.editor-text-col .editor-paragraph {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-300);
  margin-bottom: 20px;
}

.editor-text-col .editor-paragraph:last-child {
  margin-bottom: 0;
}

/* Tab 2: Inside the Issue Grid */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.inside-card {
  background: var(--black-soft);
  border: 1px solid var(--grey-800);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.inside-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass-light), var(--brass-glow));
  transition: width 0.5s var(--ease-out-expo);
}

.inside-card:hover {
  transform: translateY(-6px);
  border-color: rgba(163, 130, 89, 0.3);
  background: rgba(163, 130, 89, 0.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
}

.inside-card:hover::before {
  width: 100%;
}

.card-num-watermark {
  position: absolute;
  bottom: -15px;
  right: 15px;
  font-family: 'Cinzel', serif;
  font-size: 110px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.015;
  pointer-events: none;
  line-height: 1;
  transition: all 0.5s var(--ease-out-expo);
  z-index: 0;
}

.inside-card:hover .card-num-watermark {
  opacity: 0.05;
  transform: scale(1.08) translateY(-8px);
  color: var(--brass-light);
}

.card-chapter {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--brass-light);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.inside-card h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.inside-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--grey-400);
  position: relative;
  z-index: 1;
}

/* Tab 3: FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--grey-900);
  background: rgba(255, 255, 255, 0.01);
  transition: border-color 0.4s var(--ease-out-expo), background-color 0.4s var(--ease-out-expo);
}

.faq-item:hover {
  border-color: rgba(163, 130, 89, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active {
  border-color: var(--brass-light);
  background: rgba(163, 130, 89, 0.02);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo);
}

.faq-trigger:hover {
  color: var(--brass-light);
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 1;
}

.faq-trigger:hover .faq-q-text {
  transform: translateX(6px);
}

.faq-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--brass-light);
  opacity: 0.8;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--brass-light);
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  transition: all 0.4s var(--ease-out-expo);
}

.faq-trigger:hover .faq-icon {
  border-color: var(--brass-light);
  box-shadow: 0 0 10px rgba(163, 130, 89, 0.2);
}

.faq-item.active .faq-icon {
  background: var(--brass-light);
  border-color: var(--brass-light);
  color: var(--black-pure);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body p {
  padding: 0 24px 20px 60px; /* Aligns body text with question text */
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-400);
}

/* Magazine Deep Responsive Overrides */
@media (max-width: 991px) {
  .editor-note-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editor-quote-col {
    border-right: none;
    border-bottom: 1px solid var(--grey-800);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .inside-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tabs-nav {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .inside-grid {
    grid-template-columns: 1fr;
  }
  .tabs-nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .tab-btn::after {
    display: none;
  }
  .faq-trigger {
    padding: 16px;
    font-size: 14px;
  }
  .faq-body p {
    padding: 0 16px 16px;
    font-size: 13px;
  }
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .hero-grid {
    gap: 40px;
  }
  
  .magazine-grid,
  .bottom-cta-grid {
    gap: 40px;
  }
  
  .audiences-grid {
    gap: 20px;
  }
}@media (max-width: 991px) {
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
  }
  
  .fullpage-container {
    height: auto !important;
    width: 100% !important;
    transform: none !important;
    transition: none !important;
  }

  section {
    min-height: 100dvh !important;
    height: auto !important;
    padding: 80px 0 !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  section .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  header {
    background: rgba(10, 10, 10, 0.65) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
  }

  header.nav-theme-light {
    background: rgba(255, 255, 255, 0.65) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .magazine-bg-decor {
    display: none !important;
  }

  .thank-you-body {
    overflow-y: auto !important;
    height: auto !important;
    padding: 40px 0;
  }

  /* Tap active state for audience cards */
  .audience-card.active .audience-hover-content {
    max-height: 350px;
    opacity: 1;
    transform: translateY(0);
  }
  
  .audience-card.active h3 {
    margin-bottom: 20px;
  }
  
  .audience-card.active .audience-bg-img {
    transform: scale(1.08);
    filter: brightness(0.35) blur(2px);
  }
  
  .audience-card.active .audience-overlay {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .audience-card.active .audience-bullet {
    opacity: 1;
    transform: translateY(0);
  }
  
  .audience-card.active .audience-bullet:nth-child(1) { transition-delay: 0.1s; }
  .audience-card.active .audience-bullet:nth-child(2) { transition-delay: 0.2s; }
  .audience-card.active .audience-bullet:nth-child(3) { transition-delay: 0.3s; }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-links .nav-link {
    display: none;
  }
  
  .nav-links .btn {
    padding: 12px 24px;
    font-size: 11px;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100dvh !important;
  }
  
  .hero-grid,
  .magazine-grid,
  .bottom-cta-grid {
    grid-template-columns: 1fr !important;
    gap: 60px !important;
    justify-content: center !important;
    justify-items: center !important;
  }
  
  .hero-content .sub {
    margin-left: 0;
    margin-right: auto;
  }
  
  .hero-tag {
    margin-bottom: 16px;
  }
  
  .hero-features {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
  }
  
  .form-card {
    max-width: 550px;
    margin: 0 auto;
    padding: 28px 24px;
  }
  
  .magazine-visual {
    height: 460px;
    margin-bottom: 40px;
  }
  
  .magazine-details ul {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
  }
  
  .audiences-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .bottom-cta-steps {
    max-width: 600px;
    margin: 40px 0 0;
  }

  .collabs-logos {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .collabs-card {
    height: 110px !important;
    width: 100% !important;
  }

  /* Sibling focus & blur on mobile touch/active */
  .collabs-logos.active-grid .collabs-card {
    filter: blur(2px) !important;
    opacity: 0.5 !important;
    transform: scale(0.95) !important;
  }

  .collabs-logos.active-grid .collabs-card.active {
    filter: blur(0) !important;
    opacity: 1 !important;
    transform: scale(1.1) translateY(-4px) !important;
    border-color: rgba(163, 130, 89, 0.4) !important;
    background: rgba(163, 130, 89, 0.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45) !important;
    z-index: 10 !important;
  }

  .collabs-card.active .collabs-brand,
  .collabs-card.active .collabs-country {
    opacity: 0 !important;
    transform: translateY(-8px) !important;
  }

  .collabs-card.active .collabs-card-bg {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-col-brand p {
    margin: 0 auto;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  
  .thank-you-card {
    padding: 40px 20px;
  }
  
  .preloader-logo {
    height: 32px;
  }
}

/* ==========================================================================
   Magazine Features Section (New 2nd Section)
   ========================================================================== */
.magazine-features {
  background-color: var(--black-pure);
  border-top: 1px solid var(--grey-900);
}

.magazine-features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.features-content {
  max-width: 500px;
}

.features-content h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.features-content .sub {
  color: var(--grey-300);
  line-height: 1.7;
}

.features-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.features-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.features-list .magazine-icon-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--brass-light);
  border: 1px solid var(--brass);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.4s ease;
}

.features-list li:hover .magazine-icon-num {
  background: var(--brass);
  color: var(--white);
  border-color: var(--brass-light);
}

.features-list h4 {
  font-size: 18px;
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 0;
}

.features-list p {
  color: var(--grey-400);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .magazine-features-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  
  .features-content {
    max-width: 100%;
  }
}



