/* =========================================
   LIGHTHOLDER LAND SOLUTIONS LLC
   styles.css — Main Stylesheet
   ========================================= */

/* --- CSS VARIABLES --- */
:root {
  --orange:       #E86A1A;
  --orange-dark:  #c45a12;
  --orange-light: #f0864a;
  --charcoal:     #1A1A1A;
  --charcoal-2:   #222222;
  --charcoal-3:   #2e2e2e;
  --green-deep:   #2D4A1E;
  --tan:          #C4A882;
  --tan-light:    #EDE0CC;
  --tan-bg:       #F4EDE0;
  --sand:         #D9C5A3;
  --white:        #FFFFFF;
  --off-white:    #F8F5F0;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #888;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-height: 72px;
  --radius:     4px;
  --radius-md:  8px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.28);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

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

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

a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65em 1.6em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn-lg { font-size: 1.1rem; padding: 0.75em 2em; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-sm {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  color: var(--charcoal);
  background: transparent;
  white-space: nowrap;
}
.btn-orange-sm {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5em 1.1em;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  white-space: nowrap;
}
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   SECTION UTILITIES
   ========================================= */
.section-light    { background: var(--off-white); }
.section-tan      { background: var(--tan-bg); }
.section-dark     { background: var(--charcoal); }
.section-charcoal { background: var(--charcoal-2); }

.section-label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-label.light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* Section padding defaults */
section { position: relative; }

.services, .trust-strip, .about, .contact {
  padding: 5rem 0;
}
.transformation, .process, .projects, .service-areas {
  padding: 5rem 0;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(22, 22, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(22, 22, 22, 0.99);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  flex-shrink: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.4em 0.75em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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); }

/* Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 14, 8, 0.88) 0%,
    rgba(26, 18, 8, 0.78) 45%,
    rgba(30, 25, 15, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 4rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(232, 106, 26, 0.15);
  border: 1px solid rgba(232, 106, 26, 0.35);
  padding: 0.35em 1em;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s ease 0.35s both;
}
.hero-headline .accent { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.7s ease 0.5s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s ease 0.65s both;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 0.7s ease 0.8s both;
}
.chip {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.3em 0.85em;
  border-radius: 2px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
  background: var(--charcoal-3);
  padding: 2rem 0;
  border-bottom: 3px solid var(--orange);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--white);
}
.trust-icon {
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.trust-item strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.trust-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-img-wrap {
  height: 180px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.service-body h3 {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--orange);
  padding-left: 0.65rem;
}
.service-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =========================================
   TRANSFORMATION
   ========================================= */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transform-text .section-title { color: var(--white); }

.transform-copy {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.transform-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.transform-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.list-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: 0.45rem;
}
.transform-list strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.transform-list span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.transform-image {
  position: relative;
}
.transform-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid rgba(232, 106, 26, 0.3);
  box-shadow: var(--shadow-lg);
}
.transform-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: rgba(255,255,255,0.7);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.75rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* =========================================
   PROJECTS / GALLERY
   ========================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0;
}
.gallery-card--tall { grid-row: span 2; }
.gallery-card--wide { grid-column: span 2; }

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.08); }

.gallery-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15, 10, 5, 0.88));
  padding: 2rem 1rem 0.85rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-card:hover figcaption { transform: translateY(0); }

.gallery-tag {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.2rem;
}
.gallery-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-cta {
  text-align: center;
  padding-top: 1rem;
}
.gallery-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

/* =========================================
   PROCESS
   ========================================= */
.process .container { position: relative; z-index: 2; }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.step-body h3 {
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(232, 106, 26, 0.3));
  margin-top: 2rem;
  flex-shrink: 0;
}

.process-image-strip {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(232, 106, 26, 0.2);
}
.process-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-col { position: relative; }
.about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-col .section-title { margin-bottom: 1.2rem; }
.about-text-col p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.about-tags span {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--tan-light);
  border: 1px solid var(--sand);
  padding: 0.3em 0.85em;
  border-radius: 2px;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.service-areas { overflow: hidden; }
.service-areas .container { position: relative; z-index: 2; }

.areas-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.areas-intro {
  max-width: 640px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.area-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(232, 106, 26, 0.3);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.area-item:hover {
  background: rgba(232, 106, 26, 0.12);
  border-color: var(--orange);
}
.area-item span {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.areas-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
}
.areas-note a {
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================
   CONTACT / QUOTE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--tan-bg);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-link:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.contact-link-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-link span { font-weight: 600; color: var(--charcoal); display: block; }
.contact-link small { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 0.1rem; }

.contact-social { margin-top: 0.5rem; }
.social-link {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2rem 2.4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.07);
}

.quote-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 0.65em 0.9em;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 106, 26, 0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-photo-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--tan-bg);
  border: 1px dashed var(--sand);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.photo-note-icon { font-size: 1.3rem; flex-shrink: 0; }
.form-photo-note p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }
.form-photo-note strong { color: var(--charcoal); }

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-mid); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--charcoal);
  color: var(--white);
}

.footer-top { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-contact-info a {
  font-size: 0.9rem;
  color: var(--orange-light);
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--white); }

.footer-links-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.2rem 0;
  background: rgba(0,0,0,0.3);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-credit a {
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer-credit a:hover { color: rgba(255,255,255,0.6); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE — TABLET (max 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .transform-image img { height: 360px; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { height: 320px; }
  .about-badge { bottom: -1rem; right: 0.5rem; width: 90px; height: 90px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card--tall { grid-row: span 1; }
  .gallery-card--wide { grid-column: span 2; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .process-connector { display: none; }
  .process-step { text-align: left; display: flex; gap: 1.5rem; align-items: flex-start; }
  .step-number { font-size: 3rem; flex-shrink: 0; margin-bottom: 0; }
}

/* =========================================
   RESPONSIVE — MOBILE (max 768px)
   ========================================= */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .nav-links { display: none; flex-direction: column; gap: 0.25rem;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(20,20,20,0.98); backdrop-filter: blur(10px);
    padding: 1.5rem 1.5rem 2rem; border-bottom: 2px solid var(--orange);
    z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; padding: 0.6em 0.5em; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 64px; }

  .hero-headline { font-size: clamp(2.5rem, 11vw, 4.5rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-chips .chip { font-size: 0.72rem; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .trust-item { flex-direction: column; gap: 0.4rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-img-wrap { height: 200px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-card--wide { grid-column: span 2; }
  .gallery-card--tall { grid-row: span 1; }
  .gallery-card figcaption { transform: translateY(0); }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.4rem 1.2rem 1.8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .transform-image img { height: 280px; }
  .transform-image-caption { position: relative; background: var(--charcoal-3); border-radius: 0 0 var(--radius-md) var(--radius-md); }

  .process-steps { margin-bottom: 2.5rem; }
  .process-image-strip { height: 200px; }

  .about-img { height: 260px; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ========================================= */
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-card--wide { grid-column: span 1; }
  .hero-badge { font-size: 0.7rem; }
}
