/* ============================================
   TGFC - Third Generation Food Company
   Bold & Industrial Design System
   ============================================ */

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

:root {
  --navy: #1A1F4B;
  --charcoal: #232850;
  --steel: #2E3460;
  --slate: #4A5568;
  --silver: #A0AEC0;
  --light: #E2E8F0;
  --white: #F7FAFC;
  --pure-white: #FFFFFF;
  --rust: #2A9D8F;
  --rust-dark: #21867A;
  --teal: #2A9D8F;
  --gold: #D4A843;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--pure-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--slate);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary {
  background: var(--rust);
  color: var(--pure-white);
}

.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 75, 49, 0.4);
}

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

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

.btn-dark {
  background: var(--navy);
  color: var(--pure-white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-img {
  height: 55px;
  width: auto;
  background: var(--pure-white);
  padding: 4px;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.gen-strike {
  text-decoration: line-through;
  text-decoration-thickness: 6px;
  text-decoration-color: var(--slate);
  color: var(--slate);
  opacity: 0.6;
}

.gen-new {
  color: var(--rust);
  font-weight: 700;
}

.nav-logo-text .subtitle {
  display: block;
  font-size: 0.65rem;
  color: var(--silver);
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pure-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--rust);
}

.nav-cta {
  background: var(--rust) !important;
  color: var(--pure-white) !important;
  padding: 10px 24px !important;
}

.nav-cta:hover {
  background: var(--rust-dark) !important;
}

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

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--pure-white);
  transition: all 0.3s ease;
}

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

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 16px;
    display: block;
    border-bottom: 1px solid var(--steel);
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 50%, var(--steel) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="none"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  background-size: 20px 20px;
}

.hero-accent {
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: var(--rust);
  opacity: 0.06;
  transform: rotate(45deg);
}

.hero .container {
  margin-left: clamp(60px, 12vw, 200px);
  margin-right: auto;
}

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

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 24px;
  padding-left: 60px;
  position: relative;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 45px;
  height: 2px;
  background: var(--rust);
}

.hero h1 {
  color: var(--pure-white);
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--rust);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--silver);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--steel);
}

.hero-stat h3 {
  color: var(--rust);
  font-size: 2.5rem;
  margin-bottom: 4px;
}

.hero-stat p {
  color: var(--silver);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--font-heading);
}

/* Hero image */
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  z-index: 3;
}

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

.hero-image::after {
  display: none;
}

/* Hero mural - animated montage */
.hero-mural {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
}

.hero-mural .montage-row {
  display: flex;
  gap: 4px;
}

.hero-mural .montage-row img {
  width: 150px;
  height: 125px;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.hero-mural img:nth-child(1) { animation-delay: 0s; }
.hero-mural img:nth-child(2) { animation-delay: 1.3s; }
.hero-mural img:nth-child(3) { animation-delay: 2.6s; }
.hero-mural img:nth-child(4) { animation-delay: 3.9s; }
.hero-mural img:nth-child(5) { animation-delay: 5.2s; }
.hero-mural img:nth-child(6) { animation-delay: 6.5s; }
.hero-mural img:nth-child(7) { animation-delay: 7.8s; }
.hero-mural img:nth-child(8) { animation-delay: 9.1s; }
.hero-mural img:nth-child(9) { animation-delay: 10.4s; }

@keyframes muralPulse {
  0%, 100% { filter: brightness(0.85); }
  15% { filter: brightness(1.1); }
  30% { filter: brightness(0.85); }
}

/* Product Montage */
.product-montage {
  background: var(--navy);
  padding: 0;
}

.montage-row {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.montage-row img {
  flex: 1;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
  .montage-row img {
    height: 120px;
  }
  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
}

/* --- Section Styles --- */
.section {
  padding: var(--section-pad);
}

.section-dark {
  background: var(--navy);
  color: var(--pure-white);
}

.section-dark p {
  color: var(--silver);
}

.section-charcoal {
  background: var(--charcoal);
  color: var(--pure-white);
}

.section-charcoal p {
  color: var(--silver);
}

.section-light {
  background: #F1F5F9;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 800px;
  font-size: 1.1rem;
}

.section-header.center p {
  margin: 0 auto;
}

/* --- Pillars (Quality, Service, Value) --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pillar {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid var(--steel);
  transition: all 0.3s ease;
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: rgba(200, 75, 49, 0.05);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: var(--rust);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.pillar h3 {
  color: var(--pure-white);
  margin-bottom: 16px;
}

.pillar p {
  color: var(--silver);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--steel);
  }
}

/* --- Product Cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--pure-white);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--light) 0%, #CBD5E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img .placeholder {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.product-card-body p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.product-card-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.product-card-link:hover {
  gap: 14px;
}

/* --- About / History --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  height: 500px;
  background: linear-gradient(135deg, var(--light) 0%, #CBD5E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.about-image .placeholder {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 300px;
  }
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rust);
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--rust);
  border: 3px solid var(--navy);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  text-transform: none;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* --- Offers --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--pure-white);
  border: 2px solid var(--light);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.offer-card:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rust);
}

.offer-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  background: var(--navy);
  color: var(--pure-white);
  margin-bottom: 20px;
}

.offer-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.offer-card p {
  margin-bottom: 24px;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--pure-white);
  border: 1px solid var(--light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--light) 0%, #CBD5E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-img .placeholder {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.blog-card-body {
  padding: 28px;
}

.blog-meta {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rust);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: none;
}

.blog-card-body h3 a:hover {
  color: var(--rust);
}

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

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.85rem;
}

.price-table th {
  text-align: left;
  padding: 6px 8px;
  background: var(--light);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-table td {
  padding: 6px 8px;
  border-bottom: 1px solid var(--light);
}

.price-table .up { color: #e53e3e; }
.price-table .down { color: #38a169; }

.blog-updated {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--slate);
  font-style: italic;
}

.usda-logo-bg {
  background: #fff;
  height: 140px;
}

.usda-logo-bg img {
  object-fit: contain;
  padding: 15px;
}

.stcroix-logo-bg {
  background: var(--navy);
}

.stcroix-logo-bg img {
  object-fit: contain;
  padding: 20px;
}

.report-links {
  margin-top: 16px;
}

.report-links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--slate);
}

.report-link {
  display: block;
  padding: 8px 12px;
  margin-bottom: 4px;
  background: var(--light);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
}

.report-link:hover {
  background: var(--rust);
  color: #fff;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--light);
  background: var(--pure-white);
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rust);
}

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

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pure-white);
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--rust);
  transition: opacity 0.3s ease;
}

.contact-detail a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.form-contact-details {
  margin-top: 40px;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: var(--rust);
  text-align: center;
}

.cta-banner h2 {
  color: var(--pure-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-outline {
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.cta-banner .btn-outline:hover {
  background: var(--pure-white);
  color: var(--rust);
}

/* --- Newsletter --- */
.newsletter {
  padding: 60px 0;
  background: var(--charcoal);
  text-align: center;
}

.newsletter h3 {
  color: var(--pure-white);
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.newsletter p {
  color: var(--silver);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--steel);
  background: var(--navy);
  color: var(--pure-white);
  font-family: var(--font-body);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: var(--slate);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--rust);
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--rust);
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--rust-dark);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer h4 {
  color: var(--pure-white);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--slate);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--pure-white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--rust);
  color: var(--pure-white);
}

.footer-bottom {
  border-top: 1px solid var(--steel);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--slate);
  font-size: 0.85rem;
}

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: 160px 0 80px;
  background: var(--navy);
  text-align: center;
}

.page-header h1 {
  color: var(--pure-white);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--silver);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate);
  margin-bottom: 16px;
}

.page-header .breadcrumb a {
  color: var(--rust);
  transition: opacity 0.3s ease;
}

.page-header .breadcrumb a:hover {
  opacity: 0.8;
}

/* --- What We Do Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 40px;
  border: 1px solid var(--light);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--rust);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-rust { color: var(--rust); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
