/* =============================================
   THE CRANE COMPANY — styles.css
   Mobile-first, industrial, clean, professional
   ============================================= */

/* --- TOKENS --- */
:root {
  --yellow: #F5A623;
  --yellow-dark: #D4891A;
  --black: #111111;
  --charcoal: #1E1E1E;
  --dark-gray: #2C2C2C;
  --mid-gray: #555555;
  --light-gray: #F0F0F0;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --border: #E0E0E0;

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --radius: 3px;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
  --transition: 0.2s ease;

  --max-width: 1200px;
  --section-pad: 72px 20px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- TYPOGRAPHY SCALE --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- UTILITY --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.text-yellow { color: var(--yellow); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 var(--yellow-dark);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  box-shadow: 0 2px 0 #a96d12;
  transform: translateY(2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 0 #000;
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(2px);
  box-shadow: 0 2px 0 #000;
}
.btn-lg { padding: 18px 36px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* --- SECTION LABEL --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 12px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 52px;
  width: auto;
}
.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 16px 0;
  border-bottom: 2px solid var(--yellow);
  z-index: 999;
}
.nav-menu.open { display: flex; }
.nav-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--yellow); }
.nav-cta {
  display: none;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.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 (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: 4px;
    align-items: center;
  }
  .nav-menu a {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-phone:hover { color: var(--yellow); }

/* Diagonal yellow accent bar */
.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--black);
  padding: 64px 20px 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(245,166,35,0.04) 10px,
    rgba(245,166,35,0.04) 20px
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0;
}
.page-hero-bar {
  height: 4px;
  background: var(--yellow);
}

/* =============================================
   INTRO / INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--yellow);
  padding: 20px;
}
.intro-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.intro-strip p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}
.intro-strip a:not(.btn) { color: var(--black); }
.intro-strip .btn-dark { color: var(--white); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: var(--section-pad); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--gray { background: var(--light-gray); }
.section--black { background: var(--black); color: var(--white); }

.section-head { margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 640px;
}
.section--dark .section-head p,
.section--black .section-head p { color: rgba(255,255,255,0.7); }

/* =============================================
   SERVICE CARDS (homepage grid)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 540px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--yellow);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--black);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   WHY CHOOSE US — stat boxes
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--yellow);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item {
  background: var(--black);
  padding: 36px 28px;
  text-align: center;
}
.why-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.why-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* =============================================
   PHOTO GRID — landscape images (fixed height, cover crop is fine)
   ============================================= */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (min-width: 768px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: opacity var(--transition);
}
.photo-grid img:hover { opacity: 0.85; }

/* =============================================
   PORTRAIT GALLERY — shows full portrait images
   in a masonry-style row without cropping
   ============================================= */
.portrait-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-start;
}
.portrait-gallery img {
  /* Each image shrinks/grows to fill available row space
     but always shows its full height */
  flex: 1 1 160px;
  max-width: calc(50% - 2px);
  width: auto;
  height: auto;
  display: block;
  transition: opacity var(--transition);
}
@media (min-width: 600px) {
  .portrait-gallery img {
    flex: 1 1 200px;
    max-width: calc(33.333% - 4px);
  }
}
@media (min-width: 900px) {
  .portrait-gallery img {
    flex: 1 1 220px;
    max-width: calc(25% - 4px);
  }
}
.portrait-gallery img:hover { opacity: 0.85; }

/* =============================================
   MIXED GALLERY — landscape strip + portrait row
   used on homepage for visual variety
   ============================================= */
.photo-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media (min-width: 900px) {
  .photo-feature {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
  }
  .photo-feature img:first-child {
    grid-row: 1 / 3;
    height: 100%;
  }
}
.photo-feature img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* =============================================
   MIXED ROW — one landscape + portraits side by side
   ============================================= */
.mixed-gallery {
  display: flex;
  gap: 4px;
  align-items: stretch;
}
.mixed-gallery__landscape {
  flex: 2;
  min-width: 0;
}
.mixed-gallery__landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  display: block;
}
.mixed-gallery__portraits {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.mixed-gallery__portraits img {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
  object-fit: cover;
}
@media (max-width: 599px) {
  .mixed-gallery {
    flex-direction: column;
  }
  .mixed-gallery__landscape img { min-height: 200px; }
}

/* =============================================
   CREDIBILITY SECTION
   ============================================= */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .cred-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.cred-image { border-radius: var(--radius); overflow: hidden; }
.cred-image img { width: 100%; height: auto; display: block; object-fit: cover; }

.cred-text .section-label { display: block; margin-bottom: 12px; }
.cred-list { margin: 20px 0 28px; }
.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.cred-list li:last-child { border: none; }
.cred-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.cred-list__icon svg { width: 11px; height: 11px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px;
  border-top: 4px solid var(--yellow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 600px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-note {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 12px;
}

/* =============================================
   CONTACT PAGE LAYOUT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--black);
}
.contact-info p {
  color: var(--mid-gray);
  margin-bottom: 32px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-method__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method__icon svg { width: 20px; height: 20px; color: var(--black); }
.contact-method__text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); margin-bottom: 2px; }
.contact-method__text a, .contact-method__text span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}
.contact-method__text a:hover { color: var(--yellow-dark); }

/* Response time badge */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  margin-top: 24px;
}
.response-badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.service-section {
  padding: 56px 20px;
  border-bottom: 1px solid var(--border);
}
.service-section:nth-child(even) { background: var(--light-gray); }
.service-section:last-child { border: none; }

.service-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .service-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .service-section:nth-child(even) .service-inner { direction: rtl; }
  .service-section:nth-child(even) .service-inner > * { direction: ltr; }
}
.service-img { border-radius: var(--radius); overflow: hidden; }
.service-img img {
  width: 100%;
  height: auto;
  display: block;
  /* For landscape: cap height so it doesn't get too tall */
  max-height: 420px;
  object-fit: cover;
}
/* Portrait images in service sections should show fully */
.service-img img.portrait {
  max-height: none;
  object-fit: contain;
  background: var(--light-gray);
}
.service-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.service-text p { color: var(--mid-gray); margin-bottom: 16px; }
.service-text ul { list-style: none; }
.service-text ul li {
  padding: 7px 0;
  padding-left: 18px;
  position: relative;
  color: var(--mid-gray);
  font-size: 0.95rem;
}
.service-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

/* =============================================
   SERVICE AREAS PAGE
   ============================================= */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }

.area-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.area-card__head {
  background: var(--black);
  padding: 20px 24px;
  border-left: 4px solid var(--yellow);
}
.area-card__head h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.area-card__head span {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.area-card__body {
  padding: 20px 24px;
  background: var(--white);
}
.area-card__body p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 16px;
}
.area-municipalities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-municipalities span {
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .about-lead { grid-template-columns: 1fr 1fr; gap: 72px; } }

.about-photo { border-radius: var(--radius); overflow: hidden; }
.about-photo img { width: 100%; height: auto; display: block; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-item {
  text-align: center;
  padding: 28px 16px;
}
.value-item__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-item__icon svg { width: 24px; height: 24px; color: var(--black); }
.value-item h4 { font-size: 0.9rem; margin-bottom: 8px; color: var(--black); }
.value-item p { font-size: 0.85rem; color: var(--mid-gray); margin: 0; }
.section--dark .value-item h4 { color: var(--white); }
.section--dark .value-item p { color: rgba(255,255,255,0.7); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--yellow);
  padding: 56px 20px;
}
.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-banner h2 {
  color: var(--black);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}
.cta-banner p { color: rgba(0,0,0,0.7); margin: 0; font-size: 1rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 56px 20px 32px;
  border-top: 3px solid var(--yellow);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.6);
}
.footer-nap p {
  font-size: 0.88rem;
  margin-bottom: 4px;
  color: rgba(255,255,255,0.65);
}
.footer-nap a { color: rgba(255,255,255,0.65); }
.footer-nap a:hover { color: var(--yellow); }

.footer-nav h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--white); }

.footer-contact h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-contact p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =============================================
   FORM SUCCESS STATE
   ============================================= */
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 16px;
}

/* =============================================
   RESPONSIVE HELPERS
   ============================================= */
@media (min-width: 768px) {
  :root { --section-pad: 96px 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* =============================================
   MOBILE CALL STRIP
   ============================================= */
.mobile-call-strip {
  display: block;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-call-strip:hover { background: var(--yellow-dark); }
@media (min-width: 768px) { .mobile-call-strip { display: none; } }

/* =============================================
   QUOTE HIGHLIGHT BLOCK
   ============================================= */
.highlight-block {
  background: var(--yellow);
  padding: 32px 36px;
  border-radius: var(--radius);
  margin: 32px 0;
}
.highlight-block p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: 12px 20px;
  background: var(--light-gray);
  font-size: 0.8rem;
  color: var(--mid-gray);
}
.breadcrumb a { color: var(--mid-gray); }
.breadcrumb a:hover { color: var(--yellow-dark); }
.breadcrumb span { margin: 0 6px; }
