
/* 
  GARD EYEWEAR - OFFICIAL STYLESHEET
  Struttura: Variabili -> Reset -> Componenti Base -> Media Queries (in fondo)
  --color-dark: #231F20;     
  --color-light: #dfd6c7;    
  --color-beige: #907163;    
  --color-extra: #514c4e;
*/

:root {
  --color-dark: #353536;
  --color-light: #dfd6c7;
  --color-beige: #907163;
  --color-extra: #545454;
  --font-main: 'Manrope', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --spacing-lg: 2rem;
}

html {
  scroll-behavior: smooth;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
  font-family: var(--font-main); 
  background-color: var(--color-dark); 
  color: var(--color-light); 
  overflow-x: hidden; 
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-lg); }

/* --- ANIMATIONS & UTILS --- */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.spin-slow { animation: spin 12s linear infinite; }

.marquee-wrapper { overflow: hidden; white-space: nowrap; display: flex; }
.marquee-track { display: flex; gap: 0rem; min-width: 100%; animation: marquee linear infinite; }
.marquee-text-lg { font-size: 4rem; font-weight: 700; text-transform: uppercase; color: var(--color-extra); }
.marquee-text-md { 
  font-family: var(--font-display);
  font-size: 2.2rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  color: var(--color-extra);
  opacity: 1; 
  letter-spacing: 0.05em;
  transform: scaleY(1.3); 
  display: inline-block;
}

/* --- HERO SECTION --- */
.hero-section { display: flex; flex-direction: column; min-height: 100vh; position: relative; background-color: var(--color-dark); }
.hero-image-wrapper { width: 100%; height: 50vh; position: relative; overflow: hidden; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-content-wrapper { width: 100%; background-color: var(--color-dark); padding: var(--spacing-lg); display: flex; flex-direction: column; position: relative; z-index: 20; color: var(--color-light); }

.hero-text { margin-top: 1rem; max-width: 400px; z-index: 40; }
.hero-title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-transform: uppercase; color: inherit; }
.hero-desc { font-size: 0.9rem; opacity: 0.8; font-weight: 300; line-height: 1.6; color: inherit; }

.big-overlay-title { position: absolute; bottom: 1rem; left: 0; width: 100%; z-index: 30; pointer-events: none; line-height: 0.8; }
.big-overlay-title h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 13vw; color: var(--color-light); opacity: 0.95; margin-left: -0.05em; white-space: nowrap; }

.scroll-indicator { position: absolute; bottom: 8rem; right: 2rem; display: flex; align-items: center; gap: 0.75rem; transition: opacity 0.3s, transform 0.3s; color: var(--color-light); z-index: 50; }
.scroll-indicator:hover { opacity: 0.7; transform: translateY(-3px); }
.scroll-text { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.9; }
.scroll-circle { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(224, 205, 169, 0.3); display: flex; align-items: center; justify-content: center; transition: transform 0.3s; }

.bordeaux-circle-indicator { color: inherit; }
.bordeaux-circle-indicator .scroll-circle { background-color: var(--color-dark); border: 1px solid var(--color-light); color: var(--color-light); }
.bordeaux-circle-indicator:hover .scroll-circle { transform: translateY(5px); background-color: var(--color-light); color: var(--color-dark); }

.hero-badge-desktop { position: absolute; top: 40%; left: -6rem; z-index: 30; mix-blend-mode: difference; display: none; }
.hero-badge-mobile { position: absolute; top: 10%; right: 2rem; pointer-events: none; z-index: 30; }

.circular-badge { position: relative; display: flex; align-items: center; justify-content: center; }
.badge-text { font-family: var(--font-display); font-size: 8.5px; font-weight: 700; text-transform: uppercase; fill: var(--color-light); }

/* --- COLLECTION SECTION --- */
.collection-section { position: relative; width: 100%; min-height: 100vh; background-color: var(--color-dark); }
.collection-content-wrapper { position: relative; z-index: 10; width: 100%; display: flex; flex-direction: column; }
.collection-text-panel { display: flex; flex-direction: column; position: relative; color: var(--color-light); }
.panel-half { flex: 1; display: flex; flex-direction: column; padding: 3rem 1.5rem; }
.panel-top { justify-content: flex-start; }
.panel-bottom { justify-content: flex-end; }
.collection-main-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 3.5rem; line-height: 0.9; color: var(--color-beige); }
.collection-desc-text { font-size: 1rem; line-height: 1.6; opacity: 0.8; max-width: 400px; }
.line-horizontal { width: 100%; height: 1px; background-color: var(--color-light); opacity: 0.3; }
.line-vertical { display: none; position: absolute; top: 0; right: 0; height: 100%; width: 1px; background-color: var(--color-light); opacity: 0.3; }

.collection-gallery-grid { display: flex; flex-direction: column; }
.gallery-stack { display: flex; flex-direction: column; }
.gallery-item { position: relative; overflow: hidden; height: 300px; border-top: 1px solid rgba(255,255,255,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.item-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.item-text h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-light); text-transform: uppercase; margin-bottom: 0.25rem; }
.item-text span { font-size: 0.75rem; color: var(--color-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* --- MISSION & STORY SECTIONS --- */
.story-section { background-color: var(--color-dark); border-top: 1px solid rgba(224, 205, 169, 0.1); }
.story-grid { display: grid; grid-template-columns: 1fr; }
.story-content { padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(224, 205, 169, 0.1); }
.story-subtitle { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.9; }
.story-headline { font-family: var(--font-display); font-size: 1.75rem; text-transform: uppercase; color: var(--color-beige); line-height: 1.2; margin-top: 2rem; }
.story-desc { margin-top: 2rem; font-size: 1rem; line-height: 1.6; opacity: 0.8; max-width: 450px; }
.story-image { height: 500px; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- PROMO SECTION --- */
.promo-section { position: relative; width: 100%; height: 600px; overflow: hidden; background-color: var(--color-dark); }
.promo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.promo-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: 1; }
.promo-content { position: absolute; bottom: 4rem; left: 0; right: 0; z-index: 10; }
.promo-subtitle { font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.promo-title { font-family: var(--font-display); font-size: 3rem; line-height: 1; text-transform: uppercase; margin-bottom: 2rem; }
.promo-desc { max-width: 350px; opacity: 0.9; line-height: 1.6; }

/* --- PRODUCT & FOUNDERS SECTION --- */
.product-section { background-color: var(--color-dark); color: var(--color-dark); }
.product-marquee-wrapper { border-bottom: 1px solid rgba(58, 38, 38, 0.1); padding: 0.75rem 0; overflow: hidden; }

.founders-grid { display: grid; grid-template-columns: 1fr; width: 100%; background-color: var(--color-beige)}
.founders-col-left, .founders-col-right { position: relative; overflow: hidden; min-height: 400px; }
.founders-col-left img { width: 100%; height: 100%; object-fit: contain; }
.founders-col-right video { width: 100%; height: 80vh; object-fit: cover; display: block}   
.founders-col-text { padding: 4rem 2rem; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid rgba(58, 38, 38, 0.1); }
.founders-text-top h3 { font-size: 1rem; text-transform: uppercase; opacity: 0.9; line-height: 1.5; margin-bottom: 4rem; max-width: 300px; }
.founders-text-bottom h2 { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; line-height: 1.1; font-weight: 500; }
.border-right { border-right: none; } /* Default for mobile */

/* --- FORMA & COLOR SECTION --- */
.color-section { background-color: var(--color-beige); border-top: 1px solid rgba(58, 38, 38, 0.1); }
.color-grid { display: grid; grid-template-columns: 1fr; }
.color-text-panel { padding: 4rem 1.5rem; color: var(--color-dark); border-bottom: 1px solid rgba(58, 38, 38, 0.1); display: flex; flex-direction: column; justify-content: center; background-color: var(--color-beige); }
.color-content-wrapper { max-width: 500px; margin: 0 auto; }
.color-subtitle { font-size: 0.875rem; text-transform: uppercase; opacity: 0.7; margin-bottom: 3rem; }
.color-main-title { font-family: var(--font-display); font-size: 4rem; text-transform: uppercase; line-height: 0.9; margin-bottom: 3rem; }
.color-desc { max-width: 300px; font-size: 0.9rem; line-height: 1.6; opacity: 0.8; }

/* Forma Icons Styling */
.forma-icons-container { margin-top: 3rem; width: 100%; max-width: 300px; overflow: hidden; }
.forma-icons-img { width: 100%; height: auto; filter: brightness(0) opacity(0.85); transition: opacity 0.3s; }

.color-slider-panel { height: 500px; position: relative; overflow: hidden; background-color: var(--color-beige); }
.slider-container-full { width: 100%; height: 100%; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: var(--color-beige); }
.slider-image-full { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slider-nav { position: absolute; bottom: 3rem; left: 2rem; display: flex; gap: 1.5rem; z-index: 20; }
.slider-btn { width: 3.5rem; height: 3.5rem; border-radius: 50%; background-color: var(--color-dark); color: var(--color-light); display: flex; align-items: center; justify-content: center; transition: 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 1px solid rgba(229, 218, 199, 0.1); }
.slider-btn:hover { transform: scale(1.1); background-color: var(--color-light); color: var(--color-dark); }

.slider-counter { position: absolute; top: 3rem; right: 3rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--color-light); letter-spacing: 0.1em; text-shadow: 0 2px 4px rgba(0,0,0,0.3); z-index: 20; }

/* --- GALLERY SECTION --- */
.gallery-section { position: relative; height: 600px; background-color: var(--color-dark); overflow: hidden; }
.gallery-bg { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.gallery-title { position: absolute; top: 3rem; left: 1.5rem; z-index: 10; font-size: 2.5rem; font-family: var(--font-display); color: var(--color-beige); text-transform: uppercase; line-height: 1.2; }
.testimonial-box { position: absolute; bottom: 3rem; left: 1.5rem; max-width: 350px; background-color: var(--color-beige); padding: 2rem; color: var(--color-dark); z-index: 10; }
.testimonial-text { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; line-height: 1.4; margin-bottom: 2rem; opacity: 0.9; }
.testimonial-user { display: flex; align-items: center; gap: 1rem; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.user-info { display: flex; flex-direction: column; }
.user-name { font-size: 0.875rem; font-weight: 500; }

/* --- JOURNAL SECTION (MAIN TOP NOW) --- */
.journal-section-full { width: 100%; background-color: var(--color-beige); color: var(--color-dark); }
.journal-container { display: flex; flex-direction: column; min-height: 100vh; }
.journal-left-hero { width: 100%; position: relative; overflow: hidden; min-height: 50vh; }
.journal-hero-img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.journal-right-content { width: 100%; padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.journal-text-wrapper { max-width: 700px; margin: 0 auto; }
.journal-title-main { font-family: var(--font-display); font-size: 3.5rem; text-transform: uppercase; line-height: 1; margin-bottom: 2.5rem; font-weight: 500; }
.journal-paragraph { font-size: 1.1rem; line-height: 1.6; opacity: 0.9; margin-bottom: 3rem; }
.btn-outline-dark-large { padding: 16px 48px; border: 1px solid rgba(51, 51, 51, 0.4); border-radius: 999px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; display: inline-block; color: var(--color-dark); transition: all 0.3s; text-align: center; }
.btn-outline-dark-large:hover { background-color: var(--color-dark); color: var(--color-beige); }


/* --- FOOTER SECTIONS --- */
.footer-section { width: 100%; background-color: var(--color-dark); color: var(--color-light); display: flex; flex-direction: column; }
.footer-marquee { width: 100%; padding: 2rem 0; border-bottom: 1px solid rgba(224, 205, 169, 0.1); }
.footer-content { display: flex; flex-direction: column; min-height: 600px; }
.footer-left { width: 100%; padding: 4rem 1.5rem; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid rgba(224, 205, 169, 0.1); }
.footer-left h2{ font-family: var(--font-display); font-size: 3rem; margin-bottom: 2rem; text-transform: uppercase; font-weight: 500; line-height: 1.1; color: var(--color-light);}
.footer-desc{max-width: 600px; font-size: 1.1rem; line-height: 1.6;}
.footer-right-hero { position: relative; width: 100%; background-color: var(--color-dark); overflow: hidden; min-height: 500px; }
.footer-hero-img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.btn-outline { padding: 14px 36px; border: 1px solid rgba(224, 205, 169, 0.4); border-radius: 999px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; transition: 0.3s; }
.btn-outline:hover { background-color: var(--color-light); color: var(--color-dark); }

.main-footer { background-color: var(--color-extra); color: var(--color-dark); padding: 5rem 0 2rem; }
.footer-big-text { font-family: var(--font-display); font-size: 12vw; text-transform: uppercase; opacity: 0.9; line-height: 0.8; margin-bottom: 5rem; letter-spacing: -0.02em; color: var(--color-dark);}
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; opacity: 0.7; letter-spacing: 0.12em; color: var(--color-dark); }
.footer-col-desc p { font-size: 1rem; opacity: 0.9; line-height: 1.6; max-width: 400px; }
.scroll-top-btn { width: 3.5rem; height: 3.5rem; border: 1px solid rgba(51, 51, 51, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-dark); transition: 0.3s; }
.scroll-top-btn:hover { background-color: var(--color-dark); color: var(--color-light); }

.footer-bottom-legal { border-top: 1px solid rgba(51, 51, 51, 0.1); margin-top: 5rem; padding-top: 2.5rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; font-size: 0.75rem; opacity: 0.8; text-transform: uppercase; color: var(--color-dark); }


/* 
================================================================================
MEDIA QUERIES 
================================================================================
*/


/* --- 1. DESKTOP / LARGE SCREENS (min-width: 1201px) --- */
@media (min-width: 1024px) {
  .hero-section { flex-direction: row; min-height: auto; }
  .hero-image-wrapper { width: 65%; height: 100vh; }
  .hero-content-wrapper { width: 35%; padding: 4rem; background-color: var(--color-dark); color: var(--color-light); }
  .hero-badge-desktop { display: block; }
  .hero-badge-mobile { display: none; }
  .scroll-indicator { bottom: 3rem; right: 4rem; color: var(--color-light); }
  .big-overlay-title { bottom: 0.4rem; top: auto; transform: none; }
  .big-overlay-title h1 { font-size: 9.5vw; color: var(--color-light); }
  .hero-title { font-size: 1.5rem; } 

  .collection-section { min-height: auto; }
  .collection-content-wrapper { flex-direction: row; height: auto; }
  .collection-text-panel { width: 30%; height: 100vh; }
  .panel-half { padding: 6rem 4rem; }
  .line-vertical { display: block; }
  .collection-gallery-grid { width: 70%; flex-direction: row; height: auto; }
  .tall-item { width: 50%; height: 100%; border-top: none; border-right: 1px solid rgba(255,255,255,0.1); }
  .gallery-section { height: 100vh; }
  .gallery-title { font-size: 4rem; left: 3rem; }
  .testimonial-box { left: 3rem; max-width: 450px; }
  .gallery-stack { width: 50%; height: 100%; }
  .wide-item { height: 50%; border-top: none; }
  .gallery-stack .wide-item:first-child { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .story-grid { grid-template-columns: 4fr 6fr; min-height: auto; }
  .story-content { padding: 6rem 4rem; }
  .story-headline { font-size: 3.5rem; }
  .story-image { height: 100vh; }

  .promo-section { height: 50rem; }
  .promo-title { font-size: 6rem; }

  .founders-grid { grid-template-columns: 0.8fr 1.5fr 1.2fr; min-height: auto; }
  .founders-col-left { padding: 3rem; display: flex; align-items: flex-start; justify-content: flex-start; min-height: auto; }
  .founders-col-left img { width: 100%; height: auto; max-height: 100%; object-fit: contain; object-position: top center; margin: 1rem 0; }
  .founders-col-text { padding: 3rem; border-bottom: none; border-top: none; }
  .founders-col-right { min-height: auto; padding: 3rem; display: flex; align-items: center; justify-content: center; }
  .border-right { border-right: 1px solid rgba(58, 38, 38, 0.1); }
  .founders-text-bottom h2 { font-size: 3rem; }
  .marquee-text-md { font-size: 3.2rem; }

  .color-grid { grid-template-columns: 4fr 6fr; height: auto; }
  .color-text-panel { padding: 4rem; border-bottom: none; border-right: 1px solid rgba(58, 38, 38, 0.1); }
  .color-slider-panel { height: 100%; }
  .slider-nav { left: 4rem; }

  

  /* Journal Layout (Image Left, Text Right) */
  .journal-container { flex-direction: row; min-height: auto; }
  .journal-left-hero { width: 50%; border-right: 1px solid rgba(51, 51, 51, 0.1); min-height: 100vh; }
  .journal-right-content { width: 50%; padding: 4rem; }
  .journal-title-main { font-size: 3rem; }

  /* Footer Layout (Text Left, Image Right) */
  .footer-content { flex-direction: row; min-height: auto; }
  .footer-left { width: 50%; padding: 4rem; border-right: 1px solid rgba(224, 205, 169, 0.1); border-bottom: none; }
  .footer-right-hero { width: 50%; min-height: 100vh; }

  .footer-cols { grid-template-columns: repeat(3, 1fr) auto; gap: 5rem; }
  .footer-big-text { font-size: 9vw; }
  .footer-bottom-legal { grid-template-columns: 1.5fr 1fr 1.5fr; }
  .legal-col.center { text-align: center; }
  .legal-col.right { text-align: right; }
  .marquee-text-lg { font-size: 6rem; }
}


/* --- 4. LAPTOP / SMALL DESKTOP (min-width: 1024px and max-width: 1200px) --- */
@media (min-width: 1024px) and (max-width: 1200px) {
    .collection-content-wrapper { flex-direction: row; height: auto; }
    .collection-main-title {font-size: 2.5rem;}
    .founders-text-bottom h2 {font-size: 2rem !important;}
    .slider-image-full {object-fit: contain;}
}


/* --- 3. TABLET (min-width: 768px and max-width: 1023.98px) --- */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .hero-section { min-height: 100vh; height: 100vh; }
  .hero-image-wrapper { height: 70vh !important; }
  .big-overlay-title { bottom: auto; top: 69vh; transform: translateY(-100%); z-index: 45; }
  .hero-content-wrapper { padding: 1rem 0 50px 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; flex: 1; }
  .hero-text { grid-column: 1; padding-left: 2rem; width: 50vw !important; max-width: none !important; margin-top: 0; }
  .scroll-indicator { grid-column: 2; position: static; justify-self: end; margin-top: 0; margin-right: 2rem; }
  
  .collection-content-wrapper { display: flex !important; flex-wrap: wrap !important; flex-direction: row !important; height: auto !important; }
  .collection-text-panel { width: 40% !important; }
  .collection-gallery-grid { display: contents !important; }
    .story-content { padding: 4rem 2rem !important;}
  .gallery-item.tall-item { width: 60% !important; height: auto !important; max-height: 70vh !important; border-top: none; }
  .gallery-stack { display: flex !important; flex-direction: column !important; width: 100vw !important; border-top: 1px solid rgba(0,0,0,0.05); }
  .gallery-item.wide-item { width: 100vw !important; height: 50vh !important; max-height: 50vh !important; border-top: 1px solid rgba(0,0,0,0.05); }
  .line-vertical { display: block !important; background-color: var(--color-dark) !important; opacity: 0.15 !important; }
  .panel-half { padding: 3rem 2rem !important; }


  .founders-grid { grid-template-columns: 30vw 70vw !important; display: grid !important; }
  .founders-col-left { grid-column: 1; padding: 2rem; border-right: 1px solid rgba(58, 38, 38, 0.1) !important; display: flex; align-items: flex-start; justify-content: flex-start; max-width: 30vw !important; }
  .founders-col-left img { margin-top: 0; max-height: 250px; object-fit: cover; }
  .founders-col-text { grid-column: 2; padding: 2rem !important; border-bottom: none !important; max-width: 70vw !important; }
  .founders-col-right { grid-column: span 2; width: 100vw !important; padding: 0 !important; min-height: 50vh !important; background-color: var(--color-beige); max-width: none !important; }

  .color-grid { grid-template-columns: 4fr 6fr !important; }
  .color-text-panel { border-right: 1px solid rgba(58, 38, 38, 0.1) !important; padding: 4rem 2rem; }
    .color-slider-panel { height: 78vh;}
    .slider-image-full {object-fit: contain;}
    
    /* Journal Section: 2 Columns */
  .journal-container { flex-direction: row; min-height: 60vh; }
  .journal-left-hero { width: 50%; border-right: 1px solid rgba(51, 51, 51, 0.1); min-height: 60vh; }
  .journal-right-content { width: 50%; padding: 4rem 2rem; }
  .journal-title-main { font-size: 3rem; }
     /* Footer Section: 2 Columns */
  .footer-content { flex-direction: row; min-height: 60vh; }
  .footer-left { width: 50%; padding: 4rem 2rem; border-right: 1px solid rgba(224, 205, 169, 0.1); border-bottom: none; }
  .footer-right-hero { width: 50%; min-height: 60vh; }

  .footer-cols { grid-template-columns: 1fr 1fr !important; gap: 4rem 3rem !important; }
  .footer-col:nth-child(3) { grid-column: 1; }
  .scroll-top-btn { grid-column: 2; justify-self: end; align-self: center; }
  .footer-bottom-legal { grid-template-columns: 1fr !important; text-align: left !important; align-items: flex-start !important; gap: 1rem !important; }
  .legal-col { text-align: left !important; }

  .collection-main-title, .story-headline, .promo-title, .founders-text-bottom h2, .gallery-title { font-size: 2.5rem !important; line-height: 1.1; }
  
}






/* --- 1. MOBILE ONLY (max-width: 767.98px) --- */
@media (max-width: 767.98px) {
  .hero-content-wrapper { padding-top: 1rem; }
    .hero-image-wrapper { height: 55vh !important; }
  .big-overlay-title { top: 54.4vh; bottom: auto; transform: translateY(-100%); z-index: 100; }
  .big-overlay-title h1 { font-size: 14vw !important; padding-left: 0.5rem; line-height: 0.7; margin-left: 0; }
  .hero-title { font-size: 1.5rem !important; line-height: 1.4; position: static; }
    .collection-desc-text {font-size: 1.1rem;}
  .story-headline { font-size: 3.5rem !important; line-height: 1; }
    .story-content { padding: 4rem 2rem !important;}
    .story-desc {font-size: 1.1rem;}
    .promo-section {  height: 100vh;  }
    .promo-desc {font-size: 1.1rem;}
  .scroll-indicator { position: relative; bottom: auto; right: auto; margin-top: 50px; justify-content: flex-start; }
  .hero-badge-mobile { top: 5%; right: 1rem; width: 100px; height: 100px; }
    
    .gallery-item.tall-item {height: 500px;}
    .slider-image-full {object-fit: contain;}
    .founders-col-left img { object-fit: cover; }
    .founders-col-left, .founders-col-right {min-height: auto;}
    .founders-col-right video { height: 100vh;}
    
    .color-desc { font-size: 1.1rem;}

  .journal-title-main { font-size: 2.5rem; }
    .journal-left-hero { min-height: 70vh; }
    .journal-right-content { padding: 4rem 2rem;}
    .footer-left { padding: 4rem 2rem;}
    .footer-right-hero {min-height: 70vh;}
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(1), .footer-col:nth-child(2) { grid-column: span 2; }
  .footer-bottom-legal { grid-template-columns: 1fr !important; text-align: left !important; }
  .scroll-top-btn { grid-column: span 1; justify-self: end; align-self: center; margin-top: 0; }
  .legal-col { text-align: left !important; }
}






