/* ==========================================
   OSMO Boutique En Ligne - Global Styles
   ========================================== */

:root {
  --bg-light: #f5f3f0;
  --bg-dark: #111111;
  --bg-accent: #c97817;
  --text-on-light: #1a1a1a;
  --text-on-dark: #f0ede8;
  --font-display: 'Cormorant Garamond', serif; /* Premium Serif for headings */
  --font-body: 'Inter', sans-serif; /* Clean Sans-Serif for body text */
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #f4f4f5;
  background-color: #0b0b0b;
}

/* ==========================================
   LOADER
   ========================================== */

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

#loader-bar {
  width: 200px;
  height: 3px;
  background-color: var(--bg-dark);
  border-radius: 2px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

#loader-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--bg-accent);
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 100%; }
  100% { width: 0%; }
}

#loader-percent {
  font-size: 0.9rem;
  color: var(--text-on-light);
  font-family: var(--font-display);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 200;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 5vw;
  overflow: hidden;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-on-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text-on-light);
  transition: color var(--transition);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--bg-accent);
}

.cart-icon {
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition);
}

.cart-icon:hover {
  transform: scale(1.1);
}

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
}

.age-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.age-modal {
  width: min(620px, 100%);
  background: rgba(15, 17, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 2rem;
  color: #f7f5f1;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.age-modal-overlay.active .age-modal {
  transform: translateY(0);
  opacity: 1;
}

.age-modal h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.15;
}

.age-modal p,
.age-modal label {
  color: #d8d4ce;
}

.age-checkbox {
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.age-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
}

.age-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.age-modal button {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-modal button:hover:not(:disabled),
.cookie-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.age-modal button:focus-visible,
.cookie-actions button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 4px;
}

.age-modal button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.age-modal .btn-primary {
  background: var(--bg-accent);
  color: #fff;
}

.age-modal .btn-secondary {
  background: transparent;
  color: #f7f5f1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 90%;
  max-width: 600px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(18, 20, 24, 0.96);
  color: #f3f1ec;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1100;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ebe8e1;
  flex: 1 1 52%;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-actions .btn-primary {
  background: var(--bg-accent);
  color: #fff;
}

.cookie-actions .btn-secondary {
  background: transparent;
  color: #f3f1ec;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.age-locked > *:not(.age-modal-overlay) {
  filter: blur(12px);
  user-select: none;
  pointer-events: none;
}

body.age-locked .age-modal-overlay {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .age-modal {
    padding: 1.5rem;
  }
  .age-modal h2 {
    font-size: 1.6rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 1rem;
    padding: 1rem;
  }
  .cookie-banner p {
    flex: 1 1 auto;
  }
}

@media (max-width: 520px) {
  .age-checkbox {
    flex-direction: column;
    align-items: flex-start;
  }
  .age-buttons {
    width: 100%;
  }
  .age-buttons button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 3vw;
  }
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
}

/* ==========================================
   PRODUCT GRID & CARDS
   ========================================== */

.page-content {
  padding: 9rem 5vw 6rem;
  max-width: 1500px;
  margin: 0 auto;
}

.page-hero {
  margin-bottom: 4rem;
}

.section-copy {
  max-width: 760px;
  padding: 0 0 0.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 5rem);
  line-height: 1.02;
  color: #ffffff;
  margin: 1rem 0 1rem;
}

.page-description {
  max-width: 720px;
  color: rgba(212, 212, 218, 0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.012em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: stretch;
  margin: 0 auto;
}

@media (min-width: 1700px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(300px, 1fr));
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.product-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease;
}

.product-image--alt {
  opacity: 0;
}

.product-card:hover .product-image--alt {
  opacity: 1;
}

.product-card:hover .product-image--main {
  opacity: 0;
}

.product-flag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f4f5;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-body {
  padding: 2.2rem;
  display: grid;
  gap: 1.4rem;
}

.product-meta {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: #86868b;
}

.product-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3rem);
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.product-subtitle {
  margin: 0;
  color: #b0b0b8;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.product-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #86868b;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.product-attributes span {
  display: inline-flex;
  align-items: center;
}

.product-attributes span + span::before {
  content: '•';
  display: inline-block;
  margin: 0 0.65rem;
  color: rgba(134, 134, 139, 0.9);
}

.price-block {
  display: grid;
  gap: 0.35rem;
}

.price-primary {
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
}

.price-primary small {
  font-size: 1rem;
  font-weight: 500;
  color: #b0b0b8;
  margin-left: 0.4rem;
}

.price-note {
  margin: 0;
  color: #8adc9c;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.grams-selector {
  display: grid;
  gap: 0.75rem;
}

.selector-label {
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
}

.selector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #c7c7cc;
  border-radius: 999px;
  padding: 0.88rem 1.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.pill--active {
  background: #ffffff;
  color: #0b0b0b;
  border-color: #ffffff;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.product-actions {
  display: grid;
  gap: 1rem;
}

.btn-add {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 1.15rem 1.4rem;
  background: #ffffff;
  color: #0b0b0b;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  background: #f6f6f6;
}

.btn-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(199, 199, 204, 0.85);
  font-size: 0.96rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 199, 204, 0.18);
  padding-bottom: 0.1rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn-info:hover {
  color: #ffffff;
  border-color: rgba(138, 220, 156, 0.9);
}

@media (max-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .page-content {
    padding-top: 7rem;
  }

  .product-body {
    padding: 1.8rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .selector-pills {
    gap: 0.6rem;
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-standalone {
  height: 100vh;
  background: linear-gradient(135deg, rgba(245, 243, 240, 0.95) 0%, rgba(237, 233, 228, 0.95) 100%);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw;
  position: relative;
  z-index: 100;
  margin-top: 100vh;
  overflow: hidden;
  width: 100vw;
  box-sizing: border-box;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 243, 240, 0.65);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 14rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--text-on-light);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-heading span {
  display: inline-block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(26, 26, 26, 0.8);
  max-width: 60%;
  margin-bottom: 3rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 5vw;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ==========================================
   CANVAS & DARK OVERLAY
   ========================================== */

.canvas-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  clip-path: circle(150% at 50% 50%);
  overflow: hidden;
  pointer-events: none;
  background-color: #f5f3f0;
  max-width: 100vw;
  transition: opacity 0.25s ease-out;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100vw;
}

.quality-badge {
  position: absolute;
  bottom: 15px;
  right: 150px;
  width: 110px;
  height: 110px;
  z-index: 60;
  pointer-events: none;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

#dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}

/* ==========================================
   MARQUEE
   ========================================== */

.marquee-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100vw;
  z-index: 60;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  height: 20vh;
  visibility: hidden;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 15vw);
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(26, 26, 26, 0.08);
  will-change: transform;
  display: inline-block;
  overflow: hidden;
}

/* ==========================================
   SCROLL CONTAINER & SECTIONS
   ========================================== */

#scroll-container {
  position: relative;
  height: 360vh;
  z-index: 20;
  background-color: transparent;
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
}

.scroll-section {
  position: absolute;
  width: 100%;
  left: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

.section-inner {
  padding: 5vw;
  overflow: hidden;
}

/* Side Alignment Zones */
.align-left {
  padding-left: 5vw;
  padding-right: 5vw;
}

.align-right {
  padding-left: 5vw;
  padding-right: 5vw;
}

.align-left .section-inner,
.align-right .section-inner {
  max-width: 50vw;
}

/* Content Sections */
.section-content {
  background: transparent;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-on-light);
  margin: 1rem 0;
  letter-spacing: -0.01em;
}

.section-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.75);
  margin: 1.5rem 0;
  max-width: 90%;
}

.section-note {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
}

/* Stats Section */
.section-stats {
  background: transparent;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  width: 100%;
  max-width: 100%;
  padding: 0 5vw;
  text-align: center;
  overflow: hidden;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--text-on-dark);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  color: var(--text-on-dark);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(240, 237, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Gallery Section */
.gallery-section {
  background-color: #f5f3f0;
  padding: 10vh 0 12vh;
  position: relative;
  z-index: 60;
  overflow: hidden;
  width: 100vw;
  box-sizing: border-box;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  padding: 0 5vw;
  overflow: hidden;
}

.gallery-slide {
  min-height: 80vh;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  background: #111;
  transform: translateY(40px);
  opacity: 0;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-slide.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.85s ease-out, opacity 0.85s ease-out;
}

.faq-section {
  background-color: #fff;
  padding: 10vh 0 12vh;
  position: relative;
  z-index: 60;
  overflow: hidden;
  width: 100vw;
  box-sizing: border-box;
}
.legal-note-section {
  background: #fff;
  padding: 8rem 0 10rem;
}

.legal-note-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
}

.legal-note-box {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 30px;
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 70px rgba(17,17,17,0.05);
}

.legal-note-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  margin: 0 0 1rem;
  color: #111;
  font-weight: 800;
}

.legal-note-text {
  color: #333;
  line-height: 1.9;
  font-size: 1rem;
  white-space: pre-wrap;
}
.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  gap: 2.5rem;
}

.faq-header {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.faq-header .section-label {
  color: rgba(17, 17, 17, 0.6);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.faq-header .section-heading {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.02;
  margin: 0;
  color: #111;
}

.faq-header .section-body {
  max-width: 60ch;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item:hover {
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.06);
  transform: translateY(-1px);
}

.faq-question {
  width: 100%;
  padding: 1.9rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  color: #111;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.faq-question:focus {
  outline: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.4rem;
  color: #111;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2.4rem;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  opacity: 1;
  padding: 0 2rem 1.5rem;
  max-height: 1200px;
}

.faq-answer p {
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.9;
}

.faq-answer p + p {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 8vh 0 10vh;
  }

  .gallery-slide {
    min-height: 60vh;
    border-radius: 24px;
  }
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */

@media (max-width: 768px) {
  :root {
    --font-display: 'Courier New', monospace;
    --font-body: 'Georgia', serif;
  }

  .hero-heading {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .hero-tagline {
    max-width: 100%;
    font-size: 1.2rem;
  }

  .align-left,
  .align-right {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 90vw;
  }

  .section-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .marquee-text {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #scroll-container {
    height: 550vh;
  }
}
