@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg-light: #07150C;
  /* Deep Forest Jade Canvas */
  --color-bg-card: rgba(255, 255, 255, 0.02);
  /* Translucent Glass Panels */
  --color-primary-pine: #F3F4F3;
  /* Warm Alabaster Ivory */
  --color-accent-gold: #E2C067;
  /* Metallic Saffron Gold */
  --color-accent-gold-dark: #C59B27;
  --color-vibrant-moss: #10B981;
  /* Vibrant Moss Green */
  --color-text-dark: #F3F4F3;
  /* Crisp Ivory Text */
  --color-text-muted: #94A79A;
  /* Muted Sage Body Copy */
  --color-white: #FFFFFF;

  --font-sans: 'Plus Jakarta Sans', sans-serif;
  /* Clean Spacious Geometric Font */

  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  --header-height: 95px;
  --border-radius-lg: 16px;
  --border-radius-sm: 6px;
  --border-arch: 140px 140px 16px 16px;
  /* Elegant Cathedral Conservatory Arch */

  --border-luxury: 1px solid rgba(226, 192, 103, 0.15);
  /* Thin Saffron Gold Frame */
  --border-luxury-active: 1px solid rgba(226, 192, 103, 0.4);
  --box-shadow-minimal: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Global Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-muted);
  line-height: 1.8;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--color-primary-pine);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  /* No tight squishing or congestion */
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background: rgba(226, 192, 103, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-gold);
}

/* Luxury Gold Grid Lines */
.grid-lines-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  display: flex;
  justify-content: space-between;
  padding: 0 5rem;
}

.grid-line {
  width: 1px;
  height: 100%;
  background-color: rgba(226, 192, 103, 0.03);
}

/* Floating Canopy Glows */
.glow-blob-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  animation: slowFloat 20s ease-in-out infinite alternate;
}

.glow-blob-1 {
  background-color: var(--color-accent-gold);
  top: -15%;
  left: 10%;
}

.glow-blob-2 {
  background-color: var(--color-vibrant-moss);
  bottom: -15%;
  right: 10%;
}

@keyframes slowFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(40px) scale(1.1);
  }
}

/* Visual Utilities */
.subtitle-futuristic {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 10rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(7, 21, 12, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: var(--border-luxury);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(7, 21, 12, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition-smooth);
}

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

.logo-text {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-pine);
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary-pine);
  padding: 0.5rem 0;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #0b2214;
  border: var(--border-luxury);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-sm);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  padding: 1rem 0;
  z-index: 1100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-pine);
  opacity: 0.7;
}

.dropdown-item a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-accent-gold);
  opacity: 1;
  padding-left: 2.1rem;
}

/* Mobile Burger */
.burger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-primary-pine);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Conservatory Arched Spotlight Card */
.spotlight-card {
  position: relative;
  background-color: var(--color-bg-card);
  border: var(--border-luxury);
  border-radius: var(--border-arch);
  /* Cathedral conservatory arch frame shape */
  box-shadow: var(--box-shadow-minimal);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.spotlight-card:hover {
  border-color: var(--border-luxury-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.04);
}

/* Interactive cursor spotlight trail */
.spotlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(350px circle at var(--mx, 50%) var(--my, 50%), rgba(226, 192, 103, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.spotlight-card:hover::after {
  opacity: 1;
}

/* Elegant Arched Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1.1rem 2.8rem;
  border-radius: 40px 4px;
  /* Arched asymmetrical button curves */
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent-gold);
  color: var(--color-bg-light);
}

.btn-primary:hover {
  background-color: var(--color-primary-pine);
  color: var(--color-bg-light);
  box-shadow: 0 12px 25px rgba(226, 192, 103, 0.2);
  transform: translateY(-3px);
  border-color: rgba(226, 192, 103, 0.4);
}

.btn-outline {
  border: 1px solid rgba(226, 192, 103, 0.25);
  color: var(--color-primary-pine);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-accent-gold);
  background-color: var(--color-accent-gold);
  color: var(--color-bg-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(226, 192, 103, 0.1);
}

/* Reveal Hooks */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
  opacity: 1;
  transform: translate(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.05s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.15s;
}

/* Luxury Hero Split Section with Background Image */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background-image: linear-gradient(rgba(7, 21, 12, 0.85), rgba(7, 21, 12, 0.95)), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  border-bottom: var(--border-luxury);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-left {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  letter-spacing: -2px;
}

.hero-title span {
  display: block;
  color: var(--color-accent-gold);
  font-weight: 700;
  font-size: 2.6rem;
  margin-top: 0.8rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 580px;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Medallion frame (pure white circle to make the logo fully contrast and stand out) */
.logo-medallion-frame {
  position: relative;
  width: 400px;
  height: 400px;
  background: var(--color-white);
  border: var(--border-luxury);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  animation: floatingMedallion 6s ease-in-out infinite;
  overflow: hidden;
}

.logo-medallion-large {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.28) translateY(-1.5%);
  /* Scale logo up and translate upward to correct top-heavy spacing alignment */
}

@keyframes floatingMedallion {
  0% {
    transform: translateY(0px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  }

  50% {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  }

  100% {
    transform: translateY(0px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  }
}

/* Universal Conservatory Arch Image Frame */
.arch-frame {
  position: relative;
  border: var(--border-luxury);
  padding: 0px;
  /* Zero padding to match clean Sourced Treasures cards */
  background-color: rgba(255, 255, 255, 0.01);
  border-radius: var(--border-arch);
  /* Conservatory Cathedral Arch */
  overflow: hidden;
  box-shadow: var(--box-shadow-minimal);
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-arch);
}

/* Conservatory Arch Split layout */
.intro-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
}

.intro-split-img {
  height: 480px;
  object-fit: cover;
}

.intro-split-text h2 {
  font-size: 3.2rem;
  margin-bottom: 1.8rem;
}

.intro-split-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
}

/* Quality Pillars with Background Images and Dark Green Opacity Overlay */
.features-grid-futuristic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-pill-card {
  position: relative;
  padding: 4.5rem 3rem 4rem;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-arch);
  overflow: hidden;
}

.feature-pill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(7, 21, 12, 0.88) 0%, rgba(7, 21, 12, 0.96) 100%);
  z-index: 1;
}

.feature-pill-card * {
  position: relative;
  z-index: 2;
}

.feature-pill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-pill-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Products Showcase (Conservatory Arch layout) */
.products-editorial-section {
  border-top: var(--border-luxury);
  border-bottom: var(--border-luxury);
  background-color: rgba(255, 255, 255, 0.01);
}

.products-grid-futuristic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.prod-showcase-img-box {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-bottom: var(--border-luxury);
  border-radius: var(--border-arch) var(--border-arch) 0 0;
}

.prod-showcase-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-showcase-card:hover .prod-showcase-img-box img {
  transform: scale(1.05);
}

.prod-showcase-tag {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background-color: var(--color-bg-light);
  color: var(--color-primary-pine);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-accent-gold);
  border-radius: var(--border-radius-sm);
}

.prod-showcase-details {
  padding: 3rem 2.2rem;
}

.prod-showcase-details h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.prod-showcase-details p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  min-height: 4.8rem;
}

.prod-showcase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: var(--border-luxury);
  padding-top: 1.2rem;
}

.prod-showcase-price {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-pine);
}

.prod-showcase-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-gold);
  position: relative;
  padding-bottom: 3px;
}

.prod-showcase-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.product-showcase-card:hover .prod-showcase-link::after {
  width: 100%;
}

/* Process Timeline Section */
.process-split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.steps-list-futuristic {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}

.step-card-row {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}

.step-card-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-gold);
  line-height: 1;
}

.step-card-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.step-card-text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Luxury Quote Banner */
.immersive-quote-section {
  background-color: rgba(255, 255, 255, 0.01);
  border-top: var(--border-luxury);
  border-bottom: var(--border-luxury);
  position: relative;
  text-align: center;
}

.quote-container-futuristic {
  max-width: 900px;
  margin: 0 auto;
}

.quote-futuristic-text {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.35;
  margin-bottom: 3rem;
  color: var(--color-primary-pine);
}

.quote-futuristic-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  font-weight: 700;
}

.quote-futuristic-author span {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.4rem;
  text-transform: none;
  letter-spacing: 0px;
}

/* Product Detail Page Layouts */
.product-detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

.prod-sticky-gallery {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.prod-main-img-fit {
  height: 500px;
  object-fit: cover;
}

.badge-row-futuristic {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.badge-futuristic-item {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  border-radius: 4px;
}

.badge-organic-futuristic {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--color-primary-pine);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-rare-futuristic {
  background-color: rgba(226, 192, 103, 0.06);
  color: var(--color-accent-gold);
  border: 1px solid rgba(226, 192, 103, 0.2);
}

.prod-title-futuristic {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.prod-origin-tag {
  font-family: var(--font-sans);
  color: var(--color-accent-gold);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prod-origin-tag::before {
  content: '';
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: var(--color-accent-gold);
}

.prod-intro-text-large {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.prod-specs-grid {
  border-top: var(--border-luxury);
  border-bottom: var(--border-luxury);
  padding: 2.5rem 0;
  margin-bottom: 3.5rem;
}

.spec-item-split {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.spec-item-split:last-child {
  margin-bottom: 0;
}

.spec-item-lbl {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-pine);
}

.spec-item-val {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Purchase Box */
.cta-box-glass {
  padding: 3rem;
  position: relative;
  background-color: rgba(255, 255, 255, 0.01);
  border: var(--border-luxury);
  border-radius: var(--border-arch);
}

.cta-box-glass::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px dashed rgba(226, 192, 103, 0.15);
  pointer-events: none;
  border-radius: calc(var(--border-arch) - 4px);
}

.cta-box-header-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cta-price-large {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--color-primary-pine);
  font-weight: 800;
}

.cta-availability-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #10B981;
}

/* Tabs System */
.tab-section-futuristic {
  background-color: rgba(255, 255, 255, 0.01);
  border-top: var(--border-luxury);
}

.tab-buttons-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  border-bottom: var(--border-luxury);
  margin-bottom: 5rem;
}

.tab-nav-btn-futuristic {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.tab-nav-btn-futuristic:hover,
.tab-nav-btn-futuristic.active {
  color: var(--color-primary-pine);
}

.tab-nav-btn-futuristic::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.tab-nav-btn-futuristic.active::after {
  width: 100%;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-pane.tab-pane-layout {
  display: none;
}

.tab-pane.tab-pane-layout.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  animation: fadeIn 0.5s ease;
}

.tab-pane-img-fit {
  height: 380px;
  object-fit: cover;
}

.tab-pane-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.tab-pane-info p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.tab-pane-info ul {
  padding-left: 1.2rem;
  list-style-type: square;
}

.tab-pane-info li {
  margin-bottom: 0.6rem;
  color: var(--color-text-muted);
}

/* About Page Banner */
.about-peaks-banner-frame {
  height: 500px;
  background-image: linear-gradient(rgba(7, 21, 12, 0.4), rgba(7, 21, 12, 0.8)), url('assets/about-peaks-banner.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
  position: relative;
  border-bottom: var(--border-luxury);
}

.about-peaks-banner-frame::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid rgba(226, 192, 103, 0.15);
}

.about-peaks-banner-frame h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-primary-pine);
  letter-spacing: -2px;
}

/* Contact Grid */
.contact-split-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-details-emerald-panel {
  background-color: rgba(255, 255, 255, 0.01);
  border: var(--border-luxury);
  padding: 5rem 3.5rem;
  position: relative;
  border-radius: var(--border-arch);
}

.contact-details-emerald-panel h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.contact-details-emerald-panel p {
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.contact-icon-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-icon-card-val {
  font-size: 1.6rem;
  color: var(--color-accent-gold);
}

.contact-card-text h3 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary-pine);
  margin-bottom: 0.4rem;
}

.contact-card-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Form Panel */
.contact-form-glass-panel {
  padding: 5rem;
  background-color: rgba(255, 255, 255, 0.01);
  border: var(--border-luxury);
}

.contact-form-glass-panel h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-form-glass-panel>p {
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.futuristic-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group-lbl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-lbl.span-col-2 {
  grid-column: span 2;
}

.form-group-lbl label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-pine);
}

.form-group-lbl input,
.form-group-lbl textarea,
.form-group-lbl select {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(226, 192, 103, 0.15);
  background-color: rgba(7, 21, 12, 0.4);
  color: var(--color-primary-pine);
  outline: none;
  transition: var(--transition-fast);
}

.form-group-lbl input:focus,
.form-group-lbl textarea:focus,
.form-group-lbl select:focus {
  border-color: var(--color-accent-gold);
  background-color: rgba(7, 21, 12, 0.8);
  box-shadow: 0 0 0 3px rgba(226, 192, 103, 0.15);
}

.form-group-lbl textarea {
  resize: vertical;
  min-height: 140px;
}

.futuristic-form button {
  grid-column: span 2;
  justify-self: start;
}

/* FAQ accordion style (Bento/Spotlight Glass) */
.faq-accordion-panel {
  border: var(--border-luxury);
  padding: 2.5rem 3rem;
  border-radius: var(--border-arch);
  margin-bottom: 2rem;
  background-color: var(--color-bg-card);
  transition: var(--transition-smooth);
}

.faq-accordion-panel h3 {
  font-size: 1.3rem;
  color: var(--color-primary-pine);
}

.faq-accordion-panel p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

/* Footer Section */
footer {
  background-color: #040e08;
  color: #EDF0EC;
  border-top: var(--border-luxury);
  padding: 8rem 0 3.5rem;
}

.footer-columns-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 4.5rem;
  margin-bottom: 6rem;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-logo-medallion {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-medallion-img {
  height: 60px;
  width: auto;
  border-radius: 50%;
  background: white;
  padding: 2px;
}

.footer-logo-medallion-text {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer-brand-column p {
  font-size: 0.85rem;
  color: #94A79A;
  line-height: 1.7;
}

.social-links-bar {
  display: flex;
  gap: 1rem;
}

/* Premium footer social icons with their official colors and frames */
.social-circle-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-circle-item.fb {
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.05);
}

.social-circle-item.ig {
  color: #E1306C;
  border: 1px solid rgba(225, 48, 108, 0.3);
  background: rgba(225, 48, 108, 0.05);
}

.social-circle-item.tw {
  color: #1DA1F2;
  border: 1px solid rgba(29, 161, 242, 0.3);
  background: rgba(29, 161, 242, 0.05);
}

.social-circle-item.yt {
  color: #FF0000;
  border: 1px solid rgba(255, 0, 0, 0.3);
  background: rgba(255, 0, 0, 0.05);
}

.social-circle-item.fb:hover {
  background: #1877F2;
  color: var(--color-white);
  border-color: #1877F2;
  transform: translateY(-3px);
}

.social-circle-item.ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--color-white);
  border-color: #E1306C;
  transform: translateY(-3px);
}

.social-circle-item.tw:hover {
  background: #1DA1F2;
  color: var(--color-white);
  border-color: #1DA1F2;
  transform: translateY(-3px);
}

.social-circle-item.yt:hover {
  background: #FF0000;
  color: var(--color-white);
  border-color: #FF0000;
  transform: translateY(-3px);
}

.footer-col-header h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-gold);
  margin-bottom: 2rem;
}

.footer-col-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-links-list a {
  font-size: 0.85rem;
  color: #94A79A;
}

.footer-col-links-list a:hover {
  color: var(--color-white);
  padding-left: 5px;
}

.newsletter-subscribe-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-subscribe-box input {
  padding: 1rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  font-family: var(--font-sans);
  outline: none;
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.newsletter-subscribe-box input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.newsletter-subscribe-box input:focus {
  border-color: var(--color-accent-gold);
  background-color: rgba(255, 255, 255, 0.03);
}

.footer-bottom-info {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #94A79A;
}

.footer-legals-list {
  display: flex;
  gap: 2rem;
}

.footer-legals-list a:hover {
  color: var(--color-white);
}

/* Floating Actions */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-white);
  color: #07150C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: var(--border-luxury);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
  z-index: 999;
}

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

.back-to-top:hover {
  background-color: var(--color-accent-gold);
  color: #07150C;
  border-color: var(--color-accent-gold);
  transform: translateY(-4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-title span {
    font-size: 2.2rem;
  }

  .logo-medallion-frame {
    width: 320px;
    height: 320px;
  }

  .features-grid-futuristic,
  .products-grid-futuristic {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .intro-split,
  .process-split-layout,
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-columns-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }

  /* Mobile Menu */
  .burger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 260px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.8rem;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.3);
    border-left: var(--border-luxury);
    transition: var(--transition-smooth);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0.4rem 0 0 1rem;
    min-width: unset;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  .dropdown-item a {
    padding: 0.4rem 0;
    color: var(--color-text-muted);
  }

  .dropdown-item a:hover {
    padding-left: 0.4rem;
    background: transparent;
  }

  .product-detail-split,
  .tab-pane.tab-pane-layout.active {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .prod-sticky-gallery {
    position: static;
  }

  .prod-title-futuristic {
    font-size: 3rem;
  }

  .tab-buttons-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  .tab-nav-btn-futuristic {
    padding: 0.4rem 0;
    width: 100%;
    text-align: center;
  }

  .contact-form-glass-panel {
    padding: 2.5rem;
  }

  .futuristic-form {
    grid-template-columns: 1fr;
  }

  .form-group-lbl.span-col-2,
  .futuristic-form button {
    grid-column: span 1;
  }
}

@media (max-width: 580px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 0.8rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title span {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .features-grid-futuristic,
  .products-grid-futuristic,
  .footer-columns-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom-info {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
  }
}