/* ============================================================
   HENRY PLANT – styles.css
   TradesVisible | tradesvisible.com
   ============================================================ */

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:    #4A8C5C;
  --yellow-dk: #366644;
  --dark:      #111413;
  --dark-2:    #181C1B;
  --dark-3:    #1F2422;
  --mid:       #2B3330;
  --steel:     #48554F;
  --light:     #E6EDEA;
  --muted:     #7D9188;
  --white:     #FFFFFF;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.2);

  --max-w:     1200px;
  --section-y: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.hide-mobile { display: inline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,140,92,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.btn-lg { font-size: 1.25rem; padding: 18px 40px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}
.section-label--light { color: var(--yellow); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(17,20,19,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--light);
  transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--dark) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--yellow-dk) !important;
  color: var(--dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,20,19,.85) 0%,
    rgba(17,20,19,.6) 60%,
    rgba(17,20,19,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(74,140,92,.4);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-content h1 span { color: var(--yellow); display: block; }

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%  { top: 6px; opacity: 1; }
  100%{ top: 18px; opacity: 0; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--yellow);
  padding: 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  flex: 1;
  justify-content: center;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  background: rgba(0,0,0,.15);
  margin: 12px 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--dark-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,140,92,.2);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.service-card--featured {
  background: linear-gradient(135deg, var(--dark-3), var(--mid));
  border-color: rgba(74,140,92,.2);
}
.service-card--featured::before { transform: scaleX(1); }

.service-card--groundworks {
  background: linear-gradient(135deg, var(--dark-3) 0%, #1c2920 100%);
  border-color: rgba(74,140,92,.15);
}

.service-card-icon {
  width: 60px; height: 60px;
  background: rgba(74,140,92,.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--yellow);
}
.service-card-icon svg { width: 34px; height: 34px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow);
  transition: gap .2s;
  display: inline-block;
}
.service-link:hover { letter-spacing: .1em; }

/* ============================================================
   GROUNDWORKS FEATURE
   ============================================================ */
.groundworks-feature {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}
.gw-backdrop {
  position: absolute;
  inset: 0;
}
.gw-backdrop img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.gw-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17,20,19,.97) 0%,
    rgba(17,20,19,.92) 50%,
    rgba(17,20,19,.5) 100%
  );
}

.gw-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.gw-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .95;
  color: var(--white);
  margin-bottom: 24px;
}
.gw-content h2 span { color: var(--yellow); }

.gw-content > p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.gw-list {
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.gw-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light);
}
.gw-list svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }

.gw-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.gw-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid rgba(74,140,92,.12);
  transition: transform .3s, border-color .3s;
}
.gw-img:hover { transform: scale(1.03); border-color: rgba(74,140,92,.4); }
.gw-img--tall {
  grid-row: span 2;
  height: 100%;
  min-height: 250px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: var(--section-y) 0;
  background: var(--dark);
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}
.gf-btn {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,.1);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.gf-btn:hover, .gf-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
  transition: opacity .3s, transform .3s;
}
.gallery-item.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(.95);
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,20,19,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
}
.gallery-zoom {
  background: var(--yellow);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s, background .2s;
  color: var(--dark);
}
.gallery-zoom svg { width: 18px; height: 18px; }
.gallery-zoom:hover { transform: scale(1.1); background: var(--yellow-dk); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(8px);
}
.lightbox-backdrop.active { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  max-width: min(90vw, 1000px);
  max-height: 80vh;
  animation: lbIn .3s ease;
}
@keyframes lbIn {
  from { transform: scale(.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
#lightboxImg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(17,20,19,.7);
  padding: 8px 20px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  background: var(--dark-2);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .04em;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--yellow);
  color: var(--dark);
  padding: 16px 22px;
  border-radius: var(--radius);
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}
.about-img-badge span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dk) 100%);
  /* green gradient retained via --yellow variable */ 
  padding: 60px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.cta-strip p {
  color: rgba(17,20,19,.7);
  font-size: 1rem;
}
.cta-strip .btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  font-size: 1.2rem;
}
.cta-strip .btn-primary:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-y) 0;
  background: var(--dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-card:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(74,140,92,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.contact-card a { color: var(--yellow); font-size: 1.15rem; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card span { color: var(--muted); font-size: .95rem; }

.services-quick { margin-top: 24px; }
.services-quick strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
}
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.services-tags span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(74,140,92,.1);
  color: var(--yellow);
  border: 1px solid rgba(74,140,92,.2);
  padding: 5px 14px;
  border-radius: 100px;
}

/* Form */
.contact-form {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(255,255,255,.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(74,140,92,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--steel); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 12px;
}

/* Form toast */
.form-toast {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: .95rem;
  text-align: center;
}
.form-toast.success {
  display: block;
  background: rgba(34,197,94,.15);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow);
}
.footer-brand p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-phone {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .04em;
}
.footer-phone:hover { text-decoration: underline; }

.footer-links strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--muted);
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--yellow); }

.footer-area strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-area p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  color: var(--steel);
  font-size: .85rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--yellow); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 14px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(74,140,92,.45);
  transition: transform .2s, box-shadow .2s;
}
.float-call svg { width: 20px; height: 20px; }
.float-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74,140,92,.5);
}

/* ============================================================
   SCROLL REVEAL (JS adds .revealed)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gw-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .gw-images { order: -1; }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 190px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-wrap img { height: 380px; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-y: 70px; }
  .hide-mobile { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(17,20,19,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    border-left: 1px solid rgba(255,255,255,.07);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav-cta {
    display: inline-block !important;
    padding: 12px 22px !important;
    margin-top: 16px;
    width: auto !important;
  }
  .nav-toggle { display: flex; }

  .trust-bar-inner {
    flex-wrap: wrap;
    padding: 0 16px;
  }
  .trust-item { padding: 14px 16px; flex: 1 1 45%; justify-content: flex-start; }
  .trust-sep:nth-child(4) { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  .gw-list { grid-template-columns: 1fr; }
  .gw-img-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gw-img--tall { height: 200px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }

  .about-stats { gap: 24px; }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-call span { display: none; }
  .float-call {
    width: 58px; height: 58px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  .float-call svg { width: 24px; height: 24px; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}


