/* ============================================
   COACH SAYNA — "Champagne Empire"
   Dark luxury + champagne/gold aesthetic
   ============================================ */

   :root {
    /* Base - Warm Dark Luxury */
    --bg:            #0A0908;
    --bg-elevated:   #16120F;
    --bg-card:       #1A1512;
    --bg-card-hover: #221B16;
  
    /* Primary - Champagne & Gold */
    --champagne:     #E8D5B7;
    --gold:          #C8A97E;
    --rose-gold:     #D4AF8E;
    --gold-light:    #F4E4CD;
    --gold-dark:     #A8864E;
    --gold-glow:     rgba(200, 169, 126, 0.25);
    --champagne-glow: rgba(232, 213, 183, 0.15);
  
    /* Accent */
    --blush:         #D4A59A;
    --copper:        #B87C5D;
  
    /* Text */
    --white:         #FFFFFF;
    --text:          #E8E6E3;
    --text-muted:    #A8A4A0;
    --text-dim:      #6B6762;
  
    /* Borders */
    --border:        rgba(255, 255, 255, 0.06);
    --border-gold:   rgba(200, 169, 126, 0.2);
  
    /* Typography */
    --font-heading:  'Clash Display', 'Inter', sans-serif;
    --font-body:     'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
    /* Easing */
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  
    /* Radius */
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-full:   9999px;
  }
  
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
  }
  
  body.loading { overflow: hidden; }
  
  ::selection { background: var(--gold); color: var(--bg); }
  
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  
  /* ---------- Loader ---------- */
  .loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
  }
  .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .loader__icon { font-size: clamp(32px, 6vw, 56px); animation: loaderPulse 1.5s ease-in-out infinite; }
  .loader__text {
    font-family: var(--font-heading); font-size: clamp(14px, 3vw, 20px); font-weight: 600;
    letter-spacing: 0.3em; color: var(--champagne);
  }
  .loader__bar { width: 120px; height: 2px; background: var(--border); border-radius: var(--radius-full); overflow: hidden; }
  .loader__fill { width: 0; height: 100%; background: var(--gold); border-radius: var(--radius-full); animation: loaderFill 1.8s var(--ease-out) forwards; }
  
  @keyframes loaderPulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
  @keyframes loaderFill { to { width: 100%; } }
  
  /* ---------- Mute Button ---------- */
  .mute-btn {
    position: fixed; top: 20px; right: 20px; z-index: 9998;
    background: var(--gold); border: none; border-radius: 50%;
    width: 52px; height: 52px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--bg);
    transition: transform 0.3s var(--ease-out), background 0.3s, opacity 0.4s;
    box-shadow: 0 4px 24px var(--gold-glow);
    animation: mutePulse 2.5s ease-in-out infinite;
    opacity: 0; visibility: hidden;
  }
  .mute-btn.active { opacity: 1; visibility: visible; }
  .mute-btn:hover { transform: scale(1.15) rotate(8deg); background: var(--gold-light); animation: none; }
  .mute-btn.muted { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim); box-shadow: none; animation: none; }
  @keyframes mutePulse {
    0%, 100% { box-shadow: 0 4px 24px var(--gold-glow); }
    50% { box-shadow: 0 4px 40px rgba(200, 169, 126, 0.45); }
  }
  
  /* ---------- Music Prompt ---------- */
  .music-prompt {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(10, 9, 8, 0.96);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  }
  .music-prompt.hidden { display: none; }
  .music-prompt-content {
    text-align: center; padding: 48px;
    animation: musicPromptIn 0.6s var(--ease-out);
  }
  .music-prompt-icon {
    font-size: 56px; margin-bottom: 24px;
    animation: loaderPulse 1.5s ease-in-out infinite;
  }
  .music-prompt p {
    font-family: var(--font-heading); font-size: clamp(16px, 3vw, 22px);
    font-weight: 400; letter-spacing: 0.15em; text-transform: lowercase;
    color: var(--text-muted); margin-bottom: 32px;
  }
  .enable-music-btn {
    background: var(--gold); color: var(--bg); border: none;
    padding: 16px 48px; font-family: var(--font-heading);
    font-size: 15px; font-weight: 600; letter-spacing: 0.12em;
    border-radius: var(--radius-full); cursor: pointer;
    transition: all 0.4s var(--ease-out);
  }
  .enable-music-btn:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--gold-glow);
  }
  @keyframes musicPromptIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }
  
  @media (max-width: 767px) {
    .mute-btn { width: 44px; height: 44px; font-size: 18px; top: 16px; right: 16px; }
  }
  
  /* ---------- Custom Cursor ---------- */
  .cursor, .cursor-follower { display: none; }
  @media (hover: hover) and (pointer: fine) {
    .cursor {
      display: block; position: fixed; top: 0; left: 0;
      width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
      pointer-events: none; z-index: 9999; mix-blend-mode: difference;
      transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
    }
    .cursor-follower {
      display: block; position: fixed; top: 0; left: 0;
      width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%;
      pointer-events: none; z-index: 9998; opacity: 0.5;
      transform: translate(-50%, -50%);
      transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.4s;
    }
    body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 14px; height: 14px; }
    body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 56px; height: 56px; opacity: 0.3; }
  }
  
  /* ---------- Navigation ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 48px;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }
  .nav.scrolled {
    background: rgba(10, 9, 8, 0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
  }
  .nav__inner { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative;
  }
  
  
  .nav__logo {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-weight: 600; font-size: 20px;
    letter-spacing: 0.05em; color: var(--white); transition: opacity 0.3s;
  }
  .nav__logo:hover { opacity: 0.8; }
  .nav__icon { font-size: 24px; }
  .nav__links { display: none; gap: 48px; }
  .nav__link {
    font-family: var(--font-heading); font-size: 14px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
    transition: color 0.3s; position: relative;
  }
  .nav__link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.4s var(--ease-out);
  }
  .nav__link:hover { color: var(--gold); }
  .nav__link:hover::after { width: 100%; }
  
  /* HAMBURGER ALWAYS VISIBLE */
  .nav__toggle {
    width: 32px;
    height: 24px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    z-index: 1001;
    left: 0;
    top: 1rem;
  }
  .nav__toggle span {
    display: block; width: 100%; height: 1.5px; background: var(--white);
    transition: transform 0.4s var(--ease-out), opacity 0.3s; transform-origin: center;
  }
  .nav__toggle.active span:first-child { transform: translateY(4.75px) rotate(45deg); }
  .nav__toggle.active span:last-child { transform: translateY(-4.75px) rotate(-45deg); }
  
  /* ---------- Mobile Menu ---------- */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 999; background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease-out), visibility 0.5s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu__inner { text-align: center; display: flex; flex-direction: column; gap: 40px; }
  .mobile-menu__link {
    font-family: var(--font-heading); font-size: clamp(36px, 10vw, 64px); font-weight: 600;
    color: var(--white); display: block; transition: color 0.3s, transform 0.4s var(--ease-out);
    opacity: 0; transform: translateY(30px);
  }
  .mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateY(0); }
  .mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
  .mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
  .mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
  .mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
  .mobile-menu__link::before {
    content: attr(data-index); font-size: 12px; color: var(--gold);
    letter-spacing: 0.1em; display: block; margin-bottom: 4px;
  }
  .mobile-menu__link:hover { color: var(--gold); }
  .mobile-menu__socials {
    display: flex; justify-content: center; gap: 24px; margin-top: 16px;
    opacity: 0; transition: opacity 0.5s 0.3s;
  }
  .mobile-menu.open .mobile-menu__socials { opacity: 1; }
  .mobile-menu__socials a { font-size: 20px; color: var(--text-muted); transition: color 0.3s, transform 0.3s; }
  .mobile-menu__socials a:hover { color: var(--gold); transform: translateY(-2px); }
  
  /* ---------- Hero Section ---------- */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 48px 80px;
  }
  .hero__bg { position: absolute; inset: 0; z-index: 0; }
  .hero__orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite alternate;
  }
  .hero__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 126, 0.3), transparent 70%);
    top: -10%; right: -10%; animation-duration: 25s;
  }
  .hero__orb--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 142, 0.2), transparent 70%);
    bottom: -15%; left: -10%; animation-duration: 30s; animation-delay: -5s;
  }
  .hero__orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 213, 183, 0.15), transparent 70%);
    top: 40%; left: 50%; animation-duration: 22s; animation-delay: -10s;
  }
  @keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
    100% { transform: translate(10px, -20px) scale(1.02); }
  }
  .hero__grain {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px; pointer-events: none;
  }
  
  .hero__content { position: relative; z-index: 1; width: 100%; max-width: 1400px; }
  
  .hero__split {
    display: flex; flex-direction: column; align-items: center;
    gap: 40px; text-align: center;
  }
  
  @media (min-width: 900px) {
    .hero__split {
      flex-direction: row; justify-content: space-between;
      text-align: left; gap: 0;
    }
    .hero__text { order: 2; }
    .hero__image { order: 1; margin-left: -48px; }
  }
  
  .hero__text { flex: 1; max-width: 700px; }
  
  .hero__label {
    font-family: var(--font-heading); font-size: clamp(12px, 2vw, 15px);
    font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }
  
  .hero__title { display: flex; flex-direction: column; gap: 0; }
  
  .hero__line {
    font-family: var(--font-heading); font-weight: 700;
    font-size: clamp(48px, 12vw, 120px); line-height: 0.95;
    letter-spacing: -0.02em; color: var(--white);
  }
  .hero__line--accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px var(--gold-glow));
  }
  
  .hero__tagline {
    font-size: clamp(16px, 2.5vw, 20px); color: var(--text-muted);
    margin-top: 24px; max-width: 480px; line-height: 1.6;
  }
  
  @media (max-width: 899px) {
    .hero__tagline { margin-left: auto; margin-right: auto; }
  }
  
  .hero__cta {
    display: flex; gap: 16px; margin-top: 40px;
    flex-wrap: wrap; justify-content: center;
  }
  
  @media (min-width: 900px) {
    .hero__cta { justify-content: flex-start; }
  }
  
  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 36px; font-family: var(--font-heading);
    font-size: 14px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out); white-space: nowrap;
  }
  .btn--primary {
    background: var(--gold); color: var(--bg);
    box-shadow: 0 4px 24px var(--gold-glow);
  }
  .btn--primary:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 12px 40px var(--gold-glow);
  }
  .btn--ghost {
    background: transparent; color: var(--champagne);
    border: 1px solid var(--border-gold);
  }
  .btn--ghost:hover {
    background: rgba(200, 169, 126, 0.1); border-color: var(--gold);
    transform: translateY(-2px);
  }
  
  /* Hero Image */
  .hero__image {
    position: relative; flex-shrink: 0;
    width: clamp(280px, 40vw, 500px);
  }
  .hero__image-glow {
    position: absolute; inset: -20%; border-radius: 50%;
    background: radial-gradient(circle, var(--champagne-glow) 0%, transparent 70%);
    filter: blur(40px); z-index: 0;
    animation: heroGlow 4s ease-in-out infinite alternate;
  }
  @keyframes heroGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
  }
  .hero__portrait {
    position: relative; z-index: 1;
    width: 100%; height: auto;
    object-fit: cover;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5)) contrast(1.05) brightness(1.02);
    animation: heroFloat 6s ease-in-out infinite alternate;
  }
  @keyframes heroFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
  }
  
  @media (max-width: 899px) {
    .hero__image { width: clamp(240px, 70vw, 380px); order: -1; }
    .hero__portrait {
      border-radius: var(--radius-lg);
      -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
      mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
  }
  
  /* Hero Stats */
  .hero__stats {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; margin-top: 60px; padding-top: 40px;
    border-top: 1px solid var(--border);
  }
  .hero__stat {text-align: center;/* position: absolute; */}
  .hero__stat-number {
    font-family: var(--font-heading); font-size: clamp(28px, 5vw, 44px);
    font-weight: 700; color: var(--champagne); display: inline;
  }
  .hero__stat-suffix {
    font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px);
    font-weight: 600; color: var(--gold);
  }
  .hero__stat-label {
    display: block; font-size: 13px; color: var(--text-dim);
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
  }
  .hero__stat-icon { font-size: clamp(28px, 5vw, 40px); }
  .hero__stat-divider {
    width: 1px; height: 40px; background: var(--border);
  }
  
  @media (max-width: 600px) {
    .hero__stats { gap: 24px; flex-wrap: wrap; }
    .hero__stat-divider { height: 30px; }
  }
  
  /* Hero Scroll Indicator */
  .hero__scroll {
    position: absolute;
    bottom: 0;
    /* left: 50%; */
    transform: translateX(-50%);
    text-align: center;
  }
  .hero__scroll span {
    font-family: var(--font-heading); font-size: 11px; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim);
  }
  .hero__scroll-line {
    width: 1px; height: 40px; background: var(--border-gold);
    margin: 8px auto 0; position: relative; overflow: hidden;
  }
  .hero__scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%; background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
  }
  @keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
  }
  
  /* ---------- Sections Common ---------- */
  .section__container { max-width: 1200px; margin: 0 auto; padding: 120px 48px; }
  .section__header { margin-bottom: 64px; }
  .section__header--center { text-align: center; }
  .section__number {
    font-family: var(--font-heading); font-size: 13px; font-weight: 500;
    letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 12px;
  }
  .section__title {
    font-family: var(--font-heading); font-size: clamp(36px, 8vw, 64px);
    font-weight: 700; color: var(--white); letter-spacing: -0.02em;
  }
  .section__title--large { font-size: clamp(48px, 12vw, 96px); line-height: 1; }
  .section__subtitle {
    font-size: clamp(16px, 2vw, 18px); color: var(--text-muted);
    margin-top: 16px; max-width: 500px;
  }
  .section__header--center .section__subtitle { margin-left: auto; margin-right: auto; }
  
  /* ---------- Explore / Link Cards ---------- */
  .explore__grid {
    display: flex; flex-direction: column; gap: 16px;
  }
  
  .link-card {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 28px; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out); position: relative; overflow: hidden;
  }
  .link-card:hover {
    background: var(--bg-card-hover); border-color: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(200, 169, 126, 0.1);
  }
  .link-card__glow {
    position: absolute; inset: 0; opacity: 0;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.08), transparent 60%);
    transition: opacity 0.4s;
  }
  .link-card:hover .link-card__glow { opacity: 1; }
  .link-card__icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: rgba(200, 169, 126, 0.1); display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gold); flex-shrink: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .link-card:hover .link-card__icon { background: rgba(200, 169, 126, 0.2); transform: scale(1.05); }
  .link-card__content { flex: 1; min-width: 0; }
  .link-card__title {
    font-family: var(--font-heading); font-size: 17px; font-weight: 600;
    color: var(--white); margin-bottom: 4px;
  }
  .link-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
  .link-card__arrow {
    color: var(--text-dim); font-size: 14px; flex-shrink: 0;
    transition: color 0.3s, transform 0.3s;
  }
  .link-card:hover .link-card__arrow { color: var(--gold); transform: translateX(4px); }
  
  /* Featured Card */
  .link-card--featured {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(200, 169, 126, 0.08) 100%);
    border-color: var(--border-gold); padding: 28px 32px;
  }
  .link-card--featured .link-card__icon {
    background: var(--gold); color: var(--bg);
    width: 56px; height: 56px; font-size: 24px; border-radius: 12px;
  }
  .link-card--featured .link-card__title { font-size: 19px; }
  .link-card--featured:hover {
    box-shadow: 0 12px 60px rgba(200, 169, 126, 0.2), 0 0 80px rgba(200, 169, 126, 0.08);
  }
  
  /* ---------- About Section ---------- */
  .about__layout {
    display: grid; grid-template-columns: 1fr;
    gap: 64px; align-items: center;
  }
  
  @media (min-width: 900px) {
    .about__layout { grid-template-columns: 1fr 1fr; gap: 80px; }
  }
  
  .about__image-frame { position: relative; }
  .about__photo {
    width: 100%; border-radius: var(--radius-lg);
    aspect-ratio: 3/4; object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
  }
  .about__image-border {
    position: absolute; inset: -8px; border-radius: calc(var(--radius-lg) + 8px);
    border: 1px solid var(--border-gold); pointer-events: none;
  }
  
  .about__bio p {
    font-size: clamp(16px, 2vw, 18px); color: var(--text-muted);
    margin-bottom: 20px; line-height: 1.8;
  }
  
  .about__quote {
    font-family: var(--font-heading); font-size: clamp(20px, 3vw, 28px);
    font-weight: 500; font-style: italic; color: var(--champagne);
    margin: 32px 0; padding-left: 24px;
    border-left: 3px solid var(--gold);
    line-height: 1.4;
  }
  
  .about__cta {
    display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
  }
  
  /* ---------- Gallery ---------- */
  .gallery__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; grid-auto-rows: 240px;
  }
  .gallery__item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-out), filter 0.6s;
  }
  .gallery__item:hover img { transform: scale(1.05); filter: brightness(1.1); }
  .gallery__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10, 9, 8, 0.3), transparent 50%);
    pointer-events: none;
  }
  
  @media (max-width: 767px) {
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  }
  
  /* ---------- Image Break ---------- */
  .image-break {
    position: relative; height: 60vh; min-height: 400px; overflow: hidden;
  }
  .image-break img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
  }
  .image-break__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
  }
  .image-break__text {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 16px; z-index: 1;
  }
  .image-break__text span { font-size: 48px; }
  .image-break__text p {
    font-family: var(--font-heading); font-size: clamp(18px, 4vw, 32px);
    font-weight: 400; letter-spacing: 0.1em; text-transform: lowercase;
    color: var(--champagne);
  }
  
  /* ---------- Connect Section ---------- */
  .connect__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px; max-width: 800px; margin: 0 auto;
  }
  .connect-card {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 40px 24px; border-radius: var(--radius-md);
    background: var(--bg-card); border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out); text-align: center;
  }
  .connect-card:hover {
    background: var(--bg-card-hover); border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(200, 169, 126, 0.15);
  }
  .connect-card__icon {
    font-size: 32px; color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
  }
  .connect-card:hover .connect-card__icon { color: var(--gold); transform: scale(1.2); }
  .connect-card__name {
    font-family: var(--font-heading); font-size: 16px; font-weight: 600;
    color: var(--white);
  }
  .connect-card__handle { font-size: 13px; color: var(--text-dim); }
  
  /* ---------- Marquee ---------- */
  .marquee {
    overflow: hidden; padding: 32px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .marquee__track {
    display: flex; gap: 48px; white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
    font-family: var(--font-heading); font-size: clamp(24px, 5vw, 48px);
    font-weight: 700; color: var(--bg-elevated);
    -webkit-text-stroke: 1px var(--border-gold);
  }
  .marquee__track span { flex-shrink: 0; }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  /* ---------- Footer ---------- */
  .footer {
    position: relative; padding: 64px 48px 32px;
    border-top: 1px solid var(--border);
  }
  .footer__inner { max-width: 1200px; margin: 0 auto; }
  .footer__top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
  }
  .footer__brand {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-heading); font-weight: 600;
    font-size: 20px; letter-spacing: 0.05em; color: var(--white);
  }
  .footer__icon { font-size: 28px; }
  .footer__socials { display: flex; gap: 20px; }
  .footer__socials a {
    font-size: 18px; color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
  }
  .footer__socials a:hover { color: var(--gold); transform: translateY(-2px); }
  .footer__bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 24px; border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 16px;
  }
  .footer__copy { font-size: 14px; color: var(--text-dim); }
  .footer__credit { font-size: 14px; color: var(--text-dim); }
  .footer__credit a {
    color: var(--gold); transition: color 0.3s;
  }
  .footer__credit a:hover { color: var(--gold-light); }
  
  /* Back to Top */
  .back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 900;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted);
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: all 0.4s var(--ease-out);
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .back-to-top:hover {
    background: var(--gold); color: var(--bg); border-color: var(--gold);
    transform: translateY(-2px);
  }
  
  /* ---------- Reveal Animations ---------- */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 767px) {
    .hero { padding: 100px 24px 60px; }
    .section__container { padding: 80px 24px; }
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    .footer { padding: 48px 24px 24px; }
    .footer__top, .footer__bottom { flex-direction: column; text-align: center; }
    .hero__stats { gap: 20px; }
    .gallery__grid { grid-auto-rows: 180px; gap: 8px; }
    .connect__grid { grid-template-columns: repeat(2, 1fr); }
    .image-break { height: 50vh; min-height: 300px; }
  }
  
  @media (max-width: 480px) {
    .hero__line { font-size: clamp(40px, 15vw, 80px); }
    .connect__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .connect-card { padding: 28px 16px; }
    .link-card { padding: 20px; gap: 16px; }
    .link-card__desc { display: none; }
  }
  