/* ============================================
   NEOTSENTLE — Styles
   ============================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Neotsentle';
  src: url('web%20assets/Fonts/Neotsentle_Heading.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterText-Regular-BF64891cba384f3.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterText-Medium-BF64891cb9e8a75.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterText-Bold-BF64891cba00f5b.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterText-SemiBold-BF64891cba09cfc.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter Display';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterDisplay-Bold-BF64891cba5ae6f.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TASA Orbiter Display';
  src: url('web%20assets/Fonts/tasa-orbiter-display-cdnfonts/TASAOrbiterDisplay-Black-BF64891cba23c21.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --black: #000000;
  --gold: #d0ac21;
  --taupe: #ccc2b7;
  --white: #ffffff;
  --cream: #f5f0e3;
  --dark-bg: #0a0a0a;
  --section-bg: #111111;
  --font-heading: 'Neotsentle', 'TASA Orbiter Display', sans-serif;
  --font-body: 'TASA Orbiter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--taupe);
  background-color: var(--black);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--white);
}

ul {
  list-style: none;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* --- Geometric Border Strips --- */
.geo-border {
  width: 100%;
  height: 28px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 8px,
      var(--gold) 8px,
      var(--gold) 10px
    ),
    linear-gradient(
      135deg,
      var(--gold) 25%,
      transparent 25%,
      transparent 50%,
      var(--gold) 50%,
      var(--gold) 75%,
      transparent 75%
    );
  background-size: 10px 28px, 20px 20px;
  opacity: 0.7;
}

/* --- Eye Icon (SVG) --- */
.eye-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Section Icons (non-eye, contextual) --- */
.sec-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.sec-icon-lg {
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Gold Diamond Bullet --- */
.bullet {
  color: var(--gold);
  margin-right: 0.4rem;
  font-size: 0.7em;
  vertical-align: middle;
}

/* --- Tag / Label --- */
.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

/* --- Highlight Text --- */
.highlight {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(208, 172, 33, 0.2);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

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

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--taupe);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.nav-cta {
  padding: 0.55rem 1.5rem;
  font-size: 0.82rem;
  margin-left: 0.5rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('web%20assets/Grey%20Background.png') center/cover no-repeat;
  padding: 8rem 1.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.hero .geo-border {
  position: absolute;
  left: 0;
  z-index: 1;
}

.hero .geo-border-top {
  top: 0;
}

.hero .geo-border-bottom {
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--taupe);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PILLARS STRIP
   ============================================ */
.pillars-strip {
  background: var(--gold);
  padding: 1rem 1.5rem;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.pillar {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.pillar-bullet {
  color: var(--black);
  margin-right: 0.3rem;
  font-size: 0.8em;
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
  position: relative;
  padding: 5rem 1.5rem;
  background: var(--dark-bg);
}

.section:nth-child(even) {
  background: var(--section-bg);
}

.section .geo-border {
  position: absolute;
  left: 0;
}

.section .geo-border-top {
  top: 0;
}

.section .geo-border-bottom {
  bottom: 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section .btn {
  margin-top: 1rem;
}

/* --- Split Layout --- */
.section-split .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-reverse .section-inner {
  direction: rtl;
}

.section-reverse .section-inner > * {
  direction: ltr;
}

.section-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.section-image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(208, 172, 33, 0.15));
}

/* --- Icon List --- */
.icon-list {
  margin: 1rem 0;
}

.icon-list li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  color: var(--taupe);
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
}

.icon-list-detailed li {
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(208, 172, 33, 0.15);
}

.icon-list-detailed li:last-child {
  border-bottom: none;
}

.icon-list-detailed strong {
  color: var(--gold);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}

.icon-list-detailed p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Pillars List (inline) --- */
.pillars-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.pillar-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Why Grid --- */
.section-center .section-inner {
  max-width: 1000px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 1.5rem;
  text-align: left;
}

.why-card {
  background: rgba(208, 172, 33, 0.06);
  border: 1px solid rgba(208, 172, 33, 0.18);
  padding: 2rem 1.5rem;
}

.why-card .sec-icon-lg {
  width: 36px;
  height: 36px;
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
}

/* --- Product Table --- */
.product-table {
  width: 100%;
  margin: 1.25rem 0;
  border-collapse: collapse;
}

.product-table td {
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(208, 172, 33, 0.3);
  font-size: 1.05rem;
}

.product-table .price {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.coming-soon {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  padding: 0.5rem 0;
  border: 1px dashed var(--gold);
  margin: 0.5rem 0 1rem;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(208, 172, 33, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(208, 172, 33, 0.06);
}

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

.contact-form .btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: relative;
  background: var(--black);
  border-top: 1px solid rgba(208, 172, 33, 0.2);
}

.site-footer .geo-border-top {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col li,
.footer-col a {
  font-size: 0.88rem;
  color: var(--taupe);
}

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

.footer-col .socials {
  margin-top: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(208, 172, 33, 0.15);
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #666;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  font-size: 0.82rem;
  color: #666;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
/* JS adds .js-ready to <html> — only then do we hide elements for reveal */
html.js-ready .fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js-ready .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left (text side in split sections) */
html.js-ready .slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js-ready .slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right (image side in split sections) */
html.js-ready .slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

html.js-ready .slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up (for cards) */
html.js-ready .scale-up {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js-ready .scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for child items */
html.js-ready .stagger-1 { transition-delay: 0.1s; }
html.js-ready .stagger-2 { transition-delay: 0.2s; }
html.js-ready .stagger-3 { transition-delay: 0.3s; }
html.js-ready .stagger-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .section-split .section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-reverse .section-inner {
    direction: ltr;
  }

  .section-image {
    order: -1;
  }

  .section-image img {
    max-height: 350px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    z-index: 999;
  }

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

  .main-nav ul {
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero {
    padding: 7rem 1.25rem 3rem;
    min-height: 85vh;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Pillars */
  .pillars-inner {
    gap: 1rem;
  }

  .pillar {
    font-size: 0.85rem;
  }

  /* Sections */
  .section {
    padding: 3.5rem 1.25rem;
  }

  .pillars-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}
