/* ============================================================
   SHERMAN LUMBER — Main Stylesheet
   Dark industrial theme with Sherman Red accent
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-bg: #0a0a1a;
  --color-bg-light: #111122;
  --color-bg-card: #1a1a2e;
  --color-bg-card-hover: #222240;
  --color-red: #cc2200;
  --color-red-light: #ff3300;
  --color-red-dark: #991a00;
  --color-white: #ffffff;
  --color-gray: #999999;
  --color-gray-light: #cccccc;
  --color-gray-dark: #666666;
  --color-divider: rgba(255,255,255,0.08);

  /* Typography */
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale (fluid) */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-max: 1400px;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 20px rgba(204,34,0,0.3);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

::selection {
  background: rgba(204, 34, 0, 0.35);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow { max-width: var(--content-default); }
.container--full { max-width: var(--content-max); }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform var(--transition-base), background var(--transition-base);
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header--scrolled {
  background: rgba(10, 10, 26, 0.97);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.logo img {
  height: 2.25rem;
  width: auto;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-desktop a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-light);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.06);
}

.nav-desktop a.nav-cta {
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  margin-left: var(--space-2);
}

.nav-desktop a.nav-cta:hover {
  background: var(--color-red-light);
  box-shadow: var(--shadow-red);
}

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none !important; }
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 26, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.nav-mobile a {
  display: block;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--color-red-light);
}

.nav-mobile a.nav-cta {
  display: inline-block;
  background: var(--color-red);
  color: var(--color-white);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: calc(4.5rem + var(--space-16));
  padding-bottom: var(--space-16);
  overflow: hidden;
}

.hero--full { min-height: 90vh; }
.hero--short { min-height: 50vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 26, 0.92) 0%,
    rgba(10, 10, 26, 0.75) 50%,
    rgba(10, 10, 26, 0.6) 100%
  );
  z-index: 1;
}

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

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red-light);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(204,34,0,0.3);
  border-radius: var(--radius-sm);
  background: rgba(204,34,0,0.08);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero__title .highlight {
  color: var(--color-red-light);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-gray-light);
  line-height: 1.5;
  margin-bottom: var(--space-8);
  max-width: 600px;
  text-transform: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--primary:hover {
  background: var(--color-red-light);
  border-color: var(--color-red-light);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.25);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-red-light);
  border-color: transparent;
  padding-inline: var(--space-4);
}

.btn--ghost:hover {
  color: var(--color-white);
  background: rgba(204,34,0,0.1);
}

.btn--large {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Sections --- */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--alt { background: var(--color-bg-light); }
.section--dark { background: var(--color-bg); }

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-red-light);
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.section__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray);
  max-width: 640px;
  margin-inline: auto;
  text-transform: none;
  line-height: 1.6;
}

/* --- Cards --- */
.card-grid {
  display: grid;
  gap: var(--space-6);
}

.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204,34,0,0.2);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,34,0,0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-5);
  color: var(--color-red-light);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.card__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.7;
  text-transform: none;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
}

.testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
}

.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-red);
  opacity: 0.4;
  line-height: 1;
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
}

.testimonial__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
  padding-top: var(--space-6);
  text-transform: none;
}

.testimonial__author {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial__role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-gray);
  text-transform: none;
}

/* --- Stats / Counters --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6);
  padding-block: var(--space-10);
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-red-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(204,34,0,0.08) 100%);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.cta-section__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-light);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  text-transform: none;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-light);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(204,34,0,0.15);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-dark);
}

/* --- Partner Cards (Work With Us) --- */
.partner-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.partner-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204,34,0,0.2);
}

.partner-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-white);
}

.partner-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
  text-transform: none;
  flex: 1;
}

/* --- Features List --- */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-base);
  color: var(--color-gray-light);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .two-col__content { order: -1; }
}

.two-col__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.two-col__image img {
  width: 100%;
  height: auto;
  display: block;
}

.two-col__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  pointer-events: none;
}

.two-col__content h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-5);
}

.two-col__content p {
  font-size: var(--text-base);
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* --- Page Content (general) --- */
.page-content {
  padding-top: 4.5rem;
}

.page-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-10);
  margin-bottom: var(--space-5);
}

.page-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}

.page-content p {
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.page-content ul {
  list-style: disc;
  padding-left: var(--space-6);
  color: var(--color-gray-light);
  margin-bottom: var(--space-5);
}

.page-content ul li {
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.page-content a {
  color: var(--color-red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand img {
  height: 2rem;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
}

.footer-col__title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-gray-dark);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover { color: var(--color-red-light); }

/* --- Red Accent Line --- */
.red-line {
  width: 60px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
}

.red-line--center { margin-inline: auto; }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* --- Contact Info Styles --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,34,0,0.1);
  border-radius: var(--radius-md);
  color: var(--color-red-light);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: var(--space-1);
}

.contact-item__value {
  font-size: var(--text-base);
  color: var(--color-white);
}

.contact-item__value a {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.contact-item__value a:hover {
  color: var(--color-red-light);
}

/* --- Image with overlay gradient --- */
.image-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-bg) 0%, transparent 60%);
}

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
  margin-block: var(--space-10);
}

/* --- Responsive adjustments --- */
@media (max-width: 767px) {
  .hero { min-height: 60vh; }
  .hero--full { min-height: 75vh; }
  .hero__title { font-size: var(--text-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .section__title { font-size: var(--text-xl); }
  .card { padding: var(--space-6); }
  .partner-grid { grid-template-columns: 1fr; }
}
/* --- Download Cards --- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-10) var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.download-card__icon {
  color: var(--color-red);
  margin-bottom: var(--space-6);
}

.download-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-3);
}

.download-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.download-card__link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
  transition: color 0.2s ease;
}

.download-card:hover .download-card__link {
  color: var(--color-white);
}

@media (max-width: 600px) {
  .download-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}
/* build: 1728633600 */
