:root {
  --orange:   #F26522;
  --red:      #E03C31;
  --teal:     #3DBFBF;
  --navy:     #2B3A4A;
  --cream:    #F5F0E8;
  --white:    #FFFFFF;
  --dark:     #1A252F;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(27, 37, 47, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--teal);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .3s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 100px;
  background: var(--dark);
}

/* Retro stripe bands */
.hero-bands {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.hero-bands span {
  flex: 1;
}
.hero-bands span:nth-child(1) { background: #F26522; }
.hero-bands span:nth-child(2) { background: #E85A2A; }
.hero-bands span:nth-child(3) { background: #E03C31; }
.hero-bands span:nth-child(4) { background: #3DBFBF; }
.hero-bands span:nth-child(5) { background: #2b8b8b; }
.hero-bands span:nth-child(6) { background: #1A252F; }
.hero-bands span:nth-child(7) { background: #1A252F; }

/* dark overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,37,47,0.45) 0%, rgba(26,37,47,0.85) 100%);
  z-index: 1;
}

/* grain texture */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.25;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-logo {
  width: clamp(180px, 28vw, 320px);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.hero-tagline em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.hero-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 48px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .25s, transform .2s;
}
.hero-cta:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
}
.scroll-hint .chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
  animation: bounce 1.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ─── SECTION SHARED ──────────────────────────────────── */
section {
  position: relative;
  padding: 120px 48px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 28px;
}

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
  background: var(--cream);
  overflow: hidden;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5c6a;
  margin-bottom: 20px;
}

.about-visual {
  position: relative;
}

.about-card {
  position: relative;
  background: var(--navy);
  padding: 48px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* decorative mountain */
.about-mountain {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  opacity: 0.08;
}

/* ─── PRODUCTS ────────────────────────────────────────── */
#products {
  background: var(--navy);
  overflow: hidden;
}

#products .section-title { color: var(--white); }

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

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}

.products-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  cursor: default;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  border-color: rgba(61,191,191,0.3);
  transform: translateY(-6px);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.product-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 14px;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.4);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* big number decorative */
.product-card .bg-num {
  position: absolute;
  right: 16px;
  bottom: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* angled divider top */
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5c6a;
  margin-bottom: 40px;
}

.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.perk {
  display: flex;
  align-items: center;
  gap: 16px;
}
.perk-dot {
  width: 12px; height: 12px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
}
.perk span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
}

/* ─── FORM ────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  padding: 48px 40px;
  box-shadow: 0 16px 48px rgba(27,37,47,0.12);
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full { grid-column: 1 / -1; }

label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0d8cc;
  background: #faf8f4;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  background: var(--white);
}
textarea { min-height: 120px; }

.btn-submit {
  display: inline-block;
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background .25s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--orange); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-success .check {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 8px;
}
.form-success p {
  color: #4a5c6a;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-logo span { color: var(--teal); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-line {
  width: 40px;
  height: 2px;
  background: var(--orange);
}
footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}
footer a {
  color: var(--teal);
  text-decoration: none;
}

/* reveal classes — initial state set by GSAP, not CSS */
.reveal, .reveal-left, .reveal-right, .reveal-scale { }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  section { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
