/* ============================================================
   ARROWHEAD PAINTING LLC — Main Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --gold:        #C8973A;
  --gold-light:  #DBA94E;
  --gold-dark:   #A37828;
  --dark:        #1A1A1A;
  --dark2:       #252525;
  --white:       #FFFFFF;
  --off-white:   #F7F4EF;
  --gray-light:  #EBEBEB;
  --gray-mid:    #999999;
  --text:        #2C2C2C;
  --text-light:  #666666;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --nav-h:       80px;
  --max-w:       1200px;
  --sec-pad:     100px;
  --rad:         6px;
  --rad-lg:      14px;

  --sh-sm:  0 2px 10px rgba(0,0,0,.07);
  --sh-md:  0 6px 24px rgba(0,0,0,.12);
  --sh-lg:  0 12px 48px rgba(0,0,0,.18);

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .3s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--t); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

/* ---- Utility ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--text-light); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-head.light h2,
.section-head.light p { color: var(--white); }
.section-head.light p { opacity: .75; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px;
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  border-radius: var(--rad); border: 2px solid transparent;
  cursor: pointer; transition: var(--t); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,58,.4); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled {
  background: rgba(26,26,26,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 54px; width: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { color: rgba(255,255,255,.88); font-family: var(--font-head); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 9px 22px; border-radius: var(--rad); }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--t); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
#heroVideo { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.65) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; color: white; padding: 0 24px; max-width: 860px; }
.hero-logo { height: 130px; width: auto; margin: 0 auto 28px; filter: drop-shadow(0 4px 20px rgba(0,0,0,.5)); }
.hero-tagline {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.hero-sub { font-size: .9rem; color: rgba(255,255,255,.75); letter-spacing: .04em; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-phones { font-family: var(--font-head); font-size: 1rem; font-weight: 600; letter-spacing: .04em; }
.hero-phones a { color: white; }
.hero-phones a:hover { color: var(--gold); }
.hero-phones span { margin: 0 12px; color: rgba(255,255,255,.35); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-family: var(--font-head); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-chevron {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: chevronBounce 2s infinite;
}
@keyframes chevronBounce {
  0%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40%           { transform: rotate(45deg) translateY(5px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats { background: var(--dark); padding: 52px 0; }
.stats-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.stat { text-align: center; padding: 0 12px; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border-right: none; }
.stat-n { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-l { display: block; font-size: .76rem; color: rgba(255,255,255,.55); font-family: var(--font-head); letter-spacing: .07em; text-transform: uppercase; }

/* ============================================================
   REVIEW TICKER
   ============================================================ */
#reviews-ticker {
  background: #111111;
  border-top: 1px solid rgba(200,151,58,.2);
  border-bottom: 1px solid rgba(200,151,58,.2);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.1);
  min-width: 140px;
  text-align: center;
}
.ticker-label .ticker-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.ticker-label span:last-child { font-family: var(--font-head); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); line-height: 1.3; }

.ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
#reviews-ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-card {
  flex-shrink: 0;
  width: 340px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ticker-card-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; line-height: 1; }
.ticker-card-quote {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ticker-card-meta {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@media (max-width: 720px) {
  .ticker-label { display: none; }
  .ticker-card { width: 270px; padding: 10px 20px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: var(--sec-pad) 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 40px; }
.service-card { background: var(--white); border-radius: var(--rad-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform var(--t), box-shadow var(--t); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.service-img-wrap { overflow: hidden; }
.service-img-wrap img { width: 100%; height: 230px; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-body h3 { margin-bottom: 12px; }
.service-body p { color: var(--text-light); font-size: .92rem; margin-bottom: 18px; }
.check-list li {
  position: relative; padding-left: 18px;
  color: var(--text-light); font-size: .88rem; margin-bottom: 6px;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}

.financing-bar {
  background: var(--dark); border-radius: var(--rad-lg);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.financing-left { display: flex; align-items: center; gap: 20px; }
.financing-icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.financing-left strong { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.financing-left p { color: rgba(255,255,255,.55); font-size: .88rem; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: var(--sec-pad) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-imgs { position: relative; }
.about-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--rad-lg); box-shadow: var(--sh-lg); }
.about-secondary {
  position: absolute; bottom: -36px; right: -36px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--rad-lg); border: 6px solid var(--white); box-shadow: var(--sh-md);
}
.about-badge {
  position: absolute; top: 28px; left: -28px;
  background: var(--gold); color: var(--dark);
  padding: 14px 20px; border-radius: var(--rad-lg);
  text-align: center; box-shadow: var(--sh-md);
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.about-badge span { font-family: var(--font-head); font-size: .7rem; font-weight: 600; }

.about-text { padding-bottom: 36px; }
.about-text h2 { margin-bottom: 20px; }
.about-lead { font-size: 1.08rem; font-weight: 600; color: var(--dark); margin-bottom: 16px; line-height: 1.75; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.85; }
.about-values { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--gray-light); }
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon { background: var(--gold); color: var(--dark); font-size: .9rem; font-weight: 700; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: var(--gold-dark); margin-bottom: 4px; }
.value-item p { font-size: .82rem; color: var(--text-light); margin: 0; }

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
#portfolio { padding: var(--sec-pad) 0; background: var(--off-white); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px; margin-bottom: 44px;
}
.preview-item { overflow: hidden; border-radius: var(--rad); aspect-ratio: 1; cursor: pointer; }
.preview-item.preview-wide { grid-column: span 2; aspect-ratio: 2/1; }
.preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.preview-item:hover img { transform: scale(1.06); }
.preview-cta { text-align: center; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-wrap { background: linear-gradient(140deg, #1a1a1a 0%, #202020 100%); padding: var(--sec-pad) 0; position: relative; overflow: hidden; }
.areas-wrap::after { content: ''; position: absolute; inset: 0; background: url('../Arrowhead Images/portfolio-050.jpg') center/cover no-repeat; opacity: .07; pointer-events: none; }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; z-index: 1; }
.area-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--rad-lg); padding: 32px 24px; transition: var(--t); }
.area-card:hover { background: rgba(200,151,58,.1); border-color: var(--gold); transform: translateY(-4px); }
.area-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--gold); opacity: .4; line-height: 1; margin-bottom: 12px; }
.area-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.area-card p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.75; }
.areas-note { text-align: center; color: rgba(255,255,255,.45); font-size: .88rem; margin-top: 36px; position: relative; z-index: 1; }
.areas-note a { color: var(--gold); text-decoration: underline; }
.areas-note a:hover { color: var(--gold-light); }
.section-head.light { position: relative; z-index: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { padding: var(--sec-pad) 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact-info .tag { margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-light); font-size: 1rem; margin-bottom: 36px; line-height: 1.8; }
.contact-details { margin-bottom: 32px; }
.contact-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon-wrap { width: 42px; height: 42px; background: var(--off-white); border-radius: var(--rad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrap svg { width: 18px; height: 18px; stroke: var(--gold); }
.contact-row-text strong { display: block; font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-dark); margin-bottom: 4px; }
.contact-row-text a, .contact-row-text span { display: block; font-size: .95rem; color: var(--text); line-height: 1.6; }
.contact-row-text a:hover { color: var(--gold); }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); transform: translateY(-3px); box-shadow: 0 4px 14px rgba(200,151,58,.4); }

/* Form */
.form-wrap { background: var(--off-white); border-radius: var(--rad-lg); padding: 42px; box-shadow: var(--sh-sm); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: var(--dark); margin-bottom: 7px; }
.field label span { color: var(--gold-dark); }
.field input, .field textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-light); border-radius: var(--rad); background: var(--white); font-family: var(--font-body); font-size: .95rem; color: var(--text); transition: var(--t); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,58,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; padding: 12px 42px 12px 16px; border: 2px solid var(--gray-light); border-radius: var(--rad); background: var(--white); font-family: var(--font-body); font-size: .95rem; color: var(--text); appearance: none; cursor: pointer; transition: var(--t); }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; pointer-events: none; stroke: var(--gray-mid); }
.form-note { text-align: center; font-size: .8rem; color: var(--text-light); margin-top: 10px; }
.form-success { text-align: center; padding: 40px 20px; }
.success-check { width: 64px; height: 64px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); margin: 0 auto 20px; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { height: 60px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.footer-sub { font-family: var(--font-head); font-size: .7rem !important; color: var(--gold) !important; text-transform: uppercase; letter-spacing: .09em; margin-top: 8px !important; }
.footer-col h4 { font-family: var(--font-head); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col span { display: block; font-size: .88rem; color: rgba(255,255,255,.55); margin-bottom: 8px; line-height: 1.55; }
.footer-col a:hover { color: var(--gold); padding-left: 3px; }
.footer-bottom { padding: 22px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.28); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page { background: var(--off-white); }
.gallery-hero {
  height: 340px; display: flex; align-items: center; justify-content: center;
  text-align: center; margin-top: var(--nav-h); position: relative; overflow: hidden;
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.55)), url('../Arrowhead Images/portfolio-045.jpg') center/cover no-repeat;
}
.gallery-hero-content { position: relative; z-index: 1; color: var(--white); padding: 0 24px; }
.gallery-hero-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 10px; }
.gallery-hero-content p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.gallery-hero-content .tag { margin-bottom: 14px; }

.gallery-section { padding: var(--sec-pad) 0; }
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  padding: 9px 26px; font-family: var(--font-head); font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid var(--gray-light); border-radius: 3px; background: var(--white);
  cursor: pointer; transition: var(--t); color: var(--text-light);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gallery-item { overflow: hidden; border-radius: var(--rad); aspect-ratio: 1; cursor: zoom-in; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .g-overlay {
  position: absolute; inset: 0; background: rgba(200,151,58,.78);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--t);
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-overlay svg { width: 36px; height: 36px; stroke: var(--white); stroke-width: 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: var(--rad); box-shadow: 0 0 80px rgba(0,0,0,.6); user-select: none; }
.lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12);
  border: none; color: white; font-size: 1.6rem; cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center;
}
.lb-close:hover { background: var(--gold); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1);
  border: none; color: white; font-size: 2rem; cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.lb-nav:hover { background: var(--gold); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.45); font-family: var(--font-head); font-size: .82rem; letter-spacing: .1em;
}

/* Gallery CTA bar */
.gallery-cta-bar { background: var(--dark2); padding: 64px 0; text-align: center; }
.gallery-cta-bar h2 { color: var(--white); margin-bottom: 14px; }
.gallery-cta-bar p { color: rgba(255,255,255,.6); font-size: 1.02rem; margin-bottom: 32px; }

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.in { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --sec-pad: 72px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-imgs { max-width: 560px; margin: 0 auto; }
  .about-badge { left: -14px; }
  .about-secondary { right: -14px; bottom: -20px; width: 160px; height: 160px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .preview-grid { grid-template-columns: repeat(3,1fr); }
  .preview-item.preview-wide { grid-column: span 3; aspect-ratio: 3/1; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; --sec-pad: 56px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(26,26,26,.97); flex-direction: column; gap: 0;
    padding: 16px 0; transform: translateY(-110%); transition: transform .3s var(--ease);
    box-shadow: var(--sh-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 13px 24px; }
  .nav-cta { margin: 8px 28px; border-radius: var(--rad); }
  .nav-toggle { display: flex; }
  .hero-logo { height: 90px; }
  .services-grid { grid-template-columns: 1fr; }
  .financing-bar { flex-direction: column; text-align: center; }
  .about-secondary { display: none; }
  .about-badge { left: 14px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .preview-grid { grid-template-columns: repeat(2,1fr); }
  .preview-item.preview-wide { grid-column: span 2; aspect-ratio: 2/1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .lb-nav { width: 40px; height: 40px; font-size: 1.4rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}
