/* ==========================================================================
   Timber Imports USA — brand tokens (colors sampled directly from the logo)
   ========================================================================== */
:root {
  --ti-green: #104721;
  --ti-green-light: #1c6533;
  --ti-green-dark: #0b3018;
  --ti-navy: #0b2952;
  --ti-gold: #b28c30;
  --ti-gold-light: #d4ac4f;
  --ti-red: #94191d;
  --ti-cream: #f7f4ee;
  --ti-ink: #22261f;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ti-ink);
  background-color: #fff;
  font-weight: 400;
}

h1, h2, h3, .section-title {
  font-family: var(--font-display);
}

a { text-decoration: none; }

/* ============ Utility ============ */
.bg-cream { background-color: var(--ti-cream); }
.text-gold { color: var(--ti-gold-light); }
.text-light-70 { color: rgba(255,255,255,.75); }

.section-py { padding-top: 6.5rem; padding-bottom: 6.5rem; }
@media (max-width: 767.98px) {
  .section-py { padding-top: 4rem; padding-bottom: 4rem; }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ti-gold-light);
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--ti-gold-light);
  display: inline-block;
}
.eyebrow-dark { color: var(--ti-green); }
.eyebrow-dark::before { background: var(--ti-gold); }
.eyebrow-light { color: var(--ti-gold-light); }
.eyebrow-light::before { background: var(--ti-gold-light); }

.section-title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--ti-green);
  margin-bottom: 1.1rem;
}
.section-subtitle {
  color: #6b6f63;
  max-width: 640px;
  font-size: 1.05rem;
}
.lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ti-ink);
}

.btn-gold {
  background-color: var(--ti-gold);
  border-color: var(--ti-gold);
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
}
.btn-gold:hover, .btn-gold:focus {
  background-color: var(--ti-gold-light);
  border-color: var(--ti-gold-light);
  color: #fff;
}
.btn-outline-light:hover { color: var(--ti-green); }

.border-gold { border-color: var(--ti-gold) !important; }

/* ============ Navbar ============ */
#mainNav {
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 1rem 0;
  background-color: transparent;
}
#mainNav.scrolled {
  background-color: rgba(11, 48, 24, .96);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  padding: .55rem 0;
}
#mainNav .nav-link {
  color: #fff;
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .02em;
  padding: .5rem 1rem;
}
#mainNav .nav-link:hover { color: var(--ti-gold-light); }

.navbar-toggler {
  border-color: rgba(255,255,255,.5);
}
.navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(2);
}
@media (max-width: 991.98px) {
  #navMenu {
    background-color: rgba(11, 48, 24, .98);
    margin-top: 1rem;
    padding: 1rem 1.25rem 1.5rem;
    border-radius: .75rem;
  }
  #mainNav .nav-link { padding: .65rem 0; }
  #mainNav .navbar-nav li:not(:last-child) .nav-link {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  color: #fff;
}
.brand-word .brand-timber { color: #fff; }
.brand-word .brand-imports { color: #fff; margin-left: .3rem; }
.brand-word .brand-usa {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--ti-gold-light);
  margin-top: 2px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('../img/hero-wood-dark.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,41,24,.78) 0%, rgba(11,41,24,.68) 45%, rgba(11,30,20,.9) 100%);
}
.hero .eyebrow {
  justify-content: center;
  color: var(--ti-gold-light);
}
.hero-title {
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.2rem;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
  opacity: .85;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============ Stats strip ============ */
.stats-strip {
  background-color: var(--ti-navy);
}
.stat-icon { font-size: 1.8rem; color: var(--ti-gold-light); margin-bottom: .5rem; display: block; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
}
.stat-label {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  letter-spacing: .03em;
}

/* ============ About collage ============ */
.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}
.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(16,71,33,.18);
}
.collage-1 { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: 3/4; }
.collage-2 { grid-column: 2 / 3; grid-row: 1 / 2; aspect-ratio: 1/1; margin-top: 2rem; }
.collage-3 { grid-column: 2 / 3; grid-row: 2 / 3; aspect-ratio: 4/3; }

/* ============ Species cards ============ */
.species-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(16,71,33,.07);
  border: 1px solid rgba(16,71,33,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.species-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(16,71,33,.14);
}
.species-swatch {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--ti-gold), 0 10px 22px rgba(0,0,0,.18);
}
.species-swatch img { width: 100%; height: 100%; object-fit: cover; }
.species-card h3 {
  font-size: 1.35rem;
  color: var(--ti-green);
  font-weight: 700;
  margin-bottom: .25rem;
}
.species-latin {
  font-style: italic;
  color: var(--ti-red);
  font-size: .92rem;
  margin-bottom: .9rem;
}
.species-nick { color: #8a7a55; font-style: normal; font-weight: 500; }
.species-card p:last-child {
  color: #55594d;
  font-size: .93rem;
  margin-bottom: 0;
}

/* ============ Process ============ */
.process-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.process-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(16,71,33,.15);
}
.process-images img:nth-child(2) { margin-top: 2.5rem; }

.process-step {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ti-gold);
  min-width: 46px;
}
.process-step h5 { color: var(--ti-green); font-weight: 700; margin-bottom: .3rem; }
.process-step p { color: #55594d; margin-bottom: 0; font-size: .95rem; }

/* ============ Sustainability ============ */
.sustainability-section {
  background: linear-gradient(160deg, var(--ti-green-dark) 0%, var(--ti-green) 100%);
  position: relative;
}
.commitment-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.commitment-list li {
  color: rgba(255,255,255,.85);
  padding: .4rem 0 .4rem 1.8rem;
  position: relative;
  font-size: .95rem;
}
.commitment-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--ti-gold-light);
}
.tagline-gold {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ti-gold-light);
}
.sustainability-img {
  border: 4px solid rgba(255,255,255,.15);
}

/* ============ CTA banner ============ */
.cta-banner {
  background: linear-gradient(120deg, var(--ti-navy), var(--ti-green-dark));
}

/* ============ Contact ============ */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-info-item i {
  font-size: 1.3rem;
  color: var(--ti-gold);
  background: rgba(178,140,48,.12);
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h6 { color: var(--ti-green); font-weight: 700; margin-bottom: .15rem; }
.contact-info-item p { margin-bottom: 0; color: #55594d; }
.contact-info-item a { color: #55594d; }
.contact-info-item a:hover { color: var(--ti-green); }

.contact-form {
  background: #fff;
  border-radius: 1rem;
  padding: 2.25rem;
  box-shadow: 0 10px 30px rgba(16,71,33,.08);
}
.contact-form .form-label { font-weight: 500; font-size: .88rem; color: var(--ti-ink); }
.contact-form .form-control,
.contact-form .form-select {
  border-radius: .55rem;
  border-color: #dedad0;
  padding: .65rem .9rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--ti-gold);
  box-shadow: 0 0 0 .2rem rgba(178,140,48,.18);
}
.form-note { font-size: .8rem; color: #8a8d80; }

/* ============ Footer ============ */
.site-footer {
  background-color: var(--ti-green-dark);
  color: rgba(255,255,255,.8);
  padding: 2.2rem 0;
}
.footer-link { color: rgba(255,255,255,.85); font-size: .92rem; }
.footer-link:hover { color: var(--ti-gold-light); }

/* ============ Floating contact button ============ */
.float-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ti-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  z-index: 1000;
  transition: transform .25s ease, background .25s ease;
}
.float-contact:hover {
  background: var(--ti-gold-light);
  color: #fff;
  transform: scale(1.08);
}
