/* Fieri LLC shared styles — Copyright 2026 Fieri LLC. All rights reserved. */

:root {
  --green:  #1A3D35;
  --sage:   #245E48;
  --black:  #111111;
  --gold:   #C8A84B;
  --cream:  #F5F0E6;
  --linen:  #E8E4DC;
  --gray:   #8A8880;
  --white:  #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Verdana, Tahoma, 'Trebuchet MS', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}
.btn:hover { opacity: 0.88; }
.btn-gold  { background: var(--gold);  color: var(--black); }
.btn-white { background: var(--white); color: var(--green); }
.btn-green { background: var(--green); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-green { background: transparent; color: var(--green); border: 2px solid var(--green); }

section { padding: 80px 0; }

.section-label {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h1, h2, h3, h4 { font-family: inherit; font-weight: bold; }

h2 {
  font-size: 36px;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}
h2.light { color: var(--white); }

h3 {
  font-size: 22px;
  color: var(--green);
  line-height: 1.3;
  margin-bottom: 12px;
}

.subhead {
  font-size: 18px;
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.subhead.light { color: rgba(255,255,255,0.8); }

/* NAV (shared metallic green) */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(160deg, #2A6B50 0%, #1E5240 20%, #1A3D35 45%, #245E48 70%, #1A3D35 100%);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
}
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand-fieri {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-brand-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 4px;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, #2A6B50 0%, #1E5240 20%, #1A3D35 45%, #245E48 70%, #1A3D35 100%);
  padding: 140px 0 100px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 52px;
  font-weight: bold;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 760px;
}
.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* PRODUCT CARDS */
.products { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(28,74,47,0.1);
  transform: translateY(-2px);
}
.product-card.live { border-top: 4px solid var(--gold); }
.product-card.coming { border-top: 4px solid var(--sage); }

.product-status {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.status-live { background: var(--gold); color: var(--black); }
.status-coming { background: var(--linen); color: var(--sage); }

.product-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 6px;
}
.product-tagline {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.product-desc {
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.product-price {
  font-size: 14px;
  color: var(--green);
  font-weight: bold;
  margin-bottom: 20px;
}
.product-cta { align-self: flex-start; }

/* WHO WE SERVE */
.who-serve { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.who-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.who-icon-big {
  font-size: 32px;
  margin-bottom: 12px;
}
.who-card-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 8px;
}
.who-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ABOUT */
.about { background: var(--green); color: var(--white); }
.about h2 { color: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.about-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-col h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

/* CTA */
.contact-cta {
  background: linear-gradient(160deg, #2A6B50 0%, #1E5240 20%, #1A3D35 45%, #245E48 70%, #1A3D35 100%);
  text-align: center;
  padding: 100px 0;
}
.contact-cta h2 { color: var(--white); margin-bottom: 16px; }
.contact-cta .subhead {
  color: rgba(255,255,255,0.85);
  margin: 0 auto 40px;
  max-width: 600px;
}
.cta-pair { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* TRAINING PAGE SPECIFIC */
.module-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.module-item {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 4px;
}
.module-num {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.module-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--green);
  line-height: 1.4;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.approach-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 8px;
}
.approach-card h3 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 8px;
}
.approach-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* WAITLIST FORM */
.waitlist-section { background: var(--cream); }
.waitlist-form-wrap {
  background: var(--white);
  border: 1px solid var(--linen);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 40px;
  max-width: 720px;
  margin: 32px auto 0;
}
.waitlist-form label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 6px;
  margin-top: 16px;
}
.waitlist-form label:first-of-type { margin-top: 0; }
.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--linen);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
}
.waitlist-form input:focus,
.waitlist-form textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.waitlist-form textarea { min-height: 100px; resize: vertical; }
.waitlist-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.waitlist-submit-wrap { margin-top: 24px; }
.waitlist-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.waitlist-message.success {
  background: #eef6f1;
  color: var(--green);
  border: 1px solid var(--sage);
  display: block;
}
.waitlist-message.error {
  background: #fbeeea;
  color: #8B1A1A;
  border: 1px solid #8B1A1A;
  display: block;
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-product-name {
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-address {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

/* HAMBURGER (hidden on desktop) */
.hamburger { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h1 { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .module-list { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-address { text-align: center; }
  .waitlist-form .row { grid-template-columns: 1fr; }

  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: linear-gradient(160deg, #2A6B50 0%, #1A3D35 50%, #245E48 100%);
    padding: 16px 32px 24px; gap: 0;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links .nav-cta a { display: inline-block; margin-top: 4px; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 600px) {
  h2 { font-size: 28px; }
  .hero h1 { font-size: 30px; }
  section { padding: 60px 0; }
  .who-grid { grid-template-columns: 1fr; }
  .waitlist-form-wrap { padding: 24px; }
}
