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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fbfd;
  --bg-tertiary: #f0f4f8;
  --accent-gold: #cc1f26;         /* Crimson Red (Primary) */
  --accent-gold-dark: #9e1418;    /* Deeper Red */
  --accent-gold-light: #f26522;   /* Saffron Orange (Accent) */
  --accent-green: #2b823e;        /* Organic Green (Freshness) */
  --text-primary: #191c21;        /* High-contrast charcoal text */
  --text-secondary: #4a5462;      /* Slate secondary text */
  --text-muted: #7e8a9c;          /* Muted text */
  --border-color: rgba(204, 31, 38, 0.08); /* Subtle crimson tint */
  --border-glow: rgba(204, 31, 38, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(0, 0, 0, 0.05);
  --card-shadow: 0 10px 30px rgba(25, 28, 33, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --font-heading: 'Marcellus', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max-width: 1400px;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Layout Elements --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--accent-gold-light);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 1.05rem;
}

.gold-text {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Navigation Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .group-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.logo svg {
  height: 2.8rem;
  width: auto;
}

.logo .gold-o {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

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

.nav-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  box-shadow: 0 0 15px var(--border-glow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* --- Common UI Components --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: var(--bg-primary);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  box-shadow: 0 8px 25px rgba(204, 31, 38, 0.25);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: rgba(204, 31, 38, 0.04);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 50% 30%, #fff5f5 0%, var(--bg-primary) 80%);
  padding-top: 6rem;
  overflow: hidden;
}

.hero-bg-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(204, 31, 38, 0.02) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  color: var(--text-secondary);
}

/* --- Cards Grid & Glass Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25, 28, 33, 0.06), 0 0 15px rgba(204, 31, 38, 0.05);
}

.card-icon {
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

.card-icon svg {
  width: 3.5rem;
  height: 3.5rem;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --- Statistics Section --- */
.stats {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item h2 {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Timeline Section (About Us) --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 2.5rem;
  width: 16px;
  height: 16px;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -8px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.timeline-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 6px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: var(--accent-gold);
}

/* --- Team Section (About Us) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.team-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.team-image {
  aspect-ratio: 4/5;
  background-color: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info p {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Interactive Filters (Products) --- */
.filter-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background-color: rgba(204, 31, 38, 0.06);
}

/* --- Subsidiary / Product Cards --- */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  margin-bottom: 4rem;
}

.product-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(25, 28, 33, 0.06), 0 0 25px rgba(204, 31, 38, 0.04);
}

.product-image {
  background-color: var(--bg-tertiary);
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-details h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-details p {
  margin-bottom: 2rem;
}

.product-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.product-meta-item span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.product-meta-item p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 0;
}

/* --- Partners Showcase --- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.partner-logo-card {
  height: 150px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: var(--transition-smooth);
}

.partner-logo-card svg,
.partner-logo-img {
  max-width: 85%;
  max-height: 75px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.75) opacity(0.55);
  transition: var(--transition-smooth);
}

.partner-logo-card:hover {
  border-color: var(--accent-gold);
  background-color: var(--bg-tertiary);
  box-shadow: 0 10px 30px rgba(204, 31, 38, 0.05);
}

.partner-logo-card:hover svg,
.partner-logo-card:hover .partner-logo-img {
  filter: grayscale(0) brightness(1) opacity(1);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Testimonials --- */
.testimonials {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Contact Us & Forms --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
}

.contact-method h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-method p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.contact-form-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 4rem;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.form-control {
  width: 100%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(204, 31, 38, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Feedback/Validation Styles */
.form-control.error {
  border-color: #ff6b6b;
}

.error-text {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.success-message {
  display: none;
  text-align: center;
  background-color: rgba(204, 31, 38, 0.03);
  border: 1px solid var(--accent-gold);
  padding: 3rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.success-message svg {
  width: 4rem;
  height: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

/* --- Footer --- */
footer {
  background-color: #f5f8f6; /* Premium soft organic alabaster/light-green background */
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
}

.social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background-color: rgba(204, 31, 38, 0.04);
  transform: translateY(-3px);
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.footer-nav h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-newsletter h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.footer-newsletter p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  padding: 0.75rem 1rem;
}

.newsletter-form .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(204, 31, 38, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--accent-gold);
}

/* --- Scroll Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
  .product-details {
    padding: 2.5rem;
  }
  .contact-layout {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-card {
    grid-template-columns: 1fr;
  }
  .product-image {
    min-height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  header.scrolled .nav-menu {
    background-color: var(--bg-secondary);
  }

  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-badge {
    left: 32px !important;
    right: auto !important;
  }

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

  .contact-form-container {
    padding: 2.5rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .btn {
    width: 100%;
  }
}

/* ==========================================
   9. Gated Preview & Coming Soon Splash Page
   ========================================== */
html.gated-active body {
  overflow: hidden !important;
}

html.gated-active header,
html.gated-active main,
html.gated-active section,
html.gated-active footer {
  display: none !important;
}

.gated-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 50% 30%, #fff3f3 0%, #f4f6fa 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 2rem;
  overflow-y: auto;
}

.gated-card {
  background-color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(204, 31, 38, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 4rem 3.5rem;
  max-width: 650px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(25, 28, 33, 0.06), 0 0 40px rgba(204, 31, 38, 0.02);
  animation: gateCardReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gateCardReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.gated-logo {
  height: 6rem;
  width: auto;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(204, 31, 38, 0.1);
}

.gated-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.gated-brand-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.gated-brand-title .gold-o {
  color: var(--accent-gold);
}

.gated-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--accent-green);
  margin-top: 0.4rem;
}

.gated-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gated-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.gated-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 450px;
  margin: 0 auto;
}

.gate-input {
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-color: rgba(204, 31, 38, 0.25) !important;
  background-color: #ffffff !important;
  color: #191c21 !important;
  height: 3.5rem;
  border-radius: 4px;
}

.gate-input:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 15px rgba(204, 31, 38, 0.1) !important;
}

.gate-btn {
  height: 3.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.gate-error {
  display: none;
  color: #ff4a4a;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
  animation: gateShake 0.4s ease;
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

.gated-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.gated-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
