/* =====================================================
   TenStateBuilds — styles.css
   Apple-inspired minimal design
   ===================================================== */

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

:root {
  --bg:            #ffffff;
  --bg-alt:        #f5f5f7;
  --bg-dark:       #1d1d1f;
  --text:          #1d1d1f;
  --text-2:        #6e6e73;
  --text-3:        #86868b;
  --accent:        #1d1d1f;
  --gold:          #c8a96e;
  --gold-light:    #e8c98e;
  --border:        #d2d2d7;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 24px 64px rgba(0,0,0,.14);
  --ease:          cubic-bezier(.25,.46,.45,.94);
  --nav-h:         72px;
  --section-pad:   120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -.025em; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
h4 { font-size: .95rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-2); }
p  { line-height: 1.7; color: var(--text-2); }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header h2 { margin-bottom: 16px; color: var(--text); }
.section-sub { font-size: 1.05rem; color: var(--text-2); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .2s, color .2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}
.btn:active { transform: scale(.97) !important; }

/* Shimmer sweep */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .55s var(--ease);
}
.btn:hover::after { transform: translateX(100%); }

/* Primary */
.btn-primary {
  background: var(--bg-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
.btn-primary:hover {
  background: #000;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transform: translateY(-2px);
}

/* Ghost (hero) */
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-lg   { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: rippleAnim .55s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
#navbar.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
}
#navbar.hidden { transform: translateY(-100%); }

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

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  flex-shrink: 0;
  color: var(--text);
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .7; }
.logo-ten    { color: var(--text); }
.logo-builds { color: var(--gold); }

#navbar:not(.scrolled) .nav-logo { color: #fff; }
#navbar:not(.scrolled) .logo-builds { color: var(--gold-light); }
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
#navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
#navbar:not(.scrolled) .nav-cta { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
#navbar:not(.scrolled) .nav-cta:hover { background: rgba(255,255,255,.25); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
#navbar.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--bg);
  z-index: 1000;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: right .4s var(--ease);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav ul a {
  display: block;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--text-2);
  line-height: 1;
}
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  margin-top: calc(var(--nav-h) / 2);
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.hero-headline {
  color: #fff;
  margin-bottom: 24px;
}
.headline-accent { color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hide-mobile { display: inline; }

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
}
.badge-check {
  color: var(--gold-light);
  font-size: .9rem;
}

/* Hero scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  display: block;
  width: 1.5px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.85); }
}

/* Hero entrance animations */
.animate-hero-1 { opacity: 0; transform: translateY(20px); animation: heroFadeUp .7s var(--ease) .2s forwards; }
.animate-hero-2 { opacity: 0; transform: translateY(24px); animation: heroFadeUp .8s var(--ease) .4s forwards; }
.animate-hero-3 { opacity: 0; transform: translateY(20px); animation: heroFadeUp .7s var(--ease) .6s forwards; }
.animate-hero-4 { opacity: 0; transform: translateY(18px); animation: heroFadeUp .7s var(--ease) .75s forwards; }
.animate-hero-5 { opacity: 0; transform: translateY(16px); animation: heroFadeUp .6s var(--ease) .9s forwards; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SERVICES ---------- */
#services {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.service-img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-body { padding: 0; }
.service-card h3 { color: var(--text); margin-bottom: 10px; }
.service-card p  { font-size: .93rem; line-height: 1.65; margin-bottom: 20px; }

.service-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .02em;
  transition: gap .2s, opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { opacity: .75; gap: 8px; }

/* ---------- STATS ---------- */
#stats {
  padding: 80px 0;
  background: var(--bg-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-plus {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-left: 2px;
}
.stat-label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ---------- ABOUT ---------- */
#about {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

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

.about-content { max-width: 540px; }
.about-content h2 { color: var(--text); margin-bottom: 24px; }
.about-body { margin-bottom: 16px; font-size: 1rem; }

.about-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 28px 0 36px;
}
.about-usps li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.usp-check { color: var(--gold); font-weight: 700; }

.about-image-wrap { position: relative; }
.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.about-image-frame:hover img { transform: scale(1.03); }

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-image-badge strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
  line-height: 1;
}
.about-image-badge span {
  font-size: .78rem;
  color: var(--text-2);
  font-weight: 500;
  line-height: 1.3;
}

/* ---------- GALLERY ---------- */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .55s var(--ease);
  display: block;
}
.gallery-item--tall img { height: 536px; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { height: 260px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ---------- PROCESS ---------- */
#process {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.process-step:hover .step-number { color: var(--gold); }

.process-step h3 { color: var(--text); margin-bottom: 12px; }
.process-step p  { font-size: .9rem; }

.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
}
.process-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, var(--gold), rgba(200,169,110,.3));
  margin-top: 26px;
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
}
#testimonials .section-header { color: #fff; }
#testimonials .section-header h2 { color: #fff; }
#testimonials .section-eyebrow { color: var(--gold-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background .3s, border-color .3s, transform .35s var(--ease);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(200,169,110,.4);
  transform: translateY(-4px);
}

.testimonial-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.stars { color: var(--gold-light); font-size: 1rem; letter-spacing: 2px; }

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 5px 10px 5px 8px;
}
.google-stars { color: #FBBC05; font-size: .78rem; letter-spacing: 1px; }

.testimonial-card > p {
  font-size: .93rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,.4);
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-meta strong { font-size: .9rem; font-weight: 600; color: #fff; }
.testimonial-meta span   { font-size: .8rem; color: rgba(255,255,255,.45); letter-spacing: .03em; }

/* ---------- CONTACT ---------- */
#contact {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow { text-align: left; }
.contact-info h2 { color: var(--text); margin-bottom: 16px; }
.contact-sub { font-size: 1rem; margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}
.contact-details li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-details strong { font-size: .8rem; font-weight: 600; color: var(--text-3); letter-spacing: .04em; text-transform: uppercase; }
.contact-details a, .contact-details span { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-details a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e73' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}

.form-disclaimer {
  font-size: .78rem;
  color: var(--text-3);
  text-align: center;
  margin-top: -8px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0faf0;
  border: 1px solid #c6e6c6;
  border-radius: 10px;
  padding: 16px 20px;
  color: #1a7a1a;
}
.form-success span { font-size: 1.2rem; font-weight: 700; }
.form-success p { color: #1a7a1a; margin: 0; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: 80px 0 40px;
}

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

.footer-logo { color: #fff; }
.footer-logo .logo-builds { color: var(--gold-light); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); margin-top: 12px; line-height: 1.6; max-width: 260px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, transform .2s;
}
.social-link:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

.footer-nav h4 { color: rgba(255,255,255,.35); margin-bottom: 16px; font-size: .72rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-nav ul a:hover { color: var(--gold-light); }

.footer-contact h4 { color: rgba(255,255,255,.35); margin-bottom: 16px; font-size: .72rem; }
.footer-contact ul { display: flex; flex-direction: column; gap: 8px; }
.footer-contact li, .footer-contact a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { font-size: .75rem !important; }

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children .animate-on-scroll:nth-child(1)  { transition-delay: .05s; }
.stagger-children .animate-on-scroll:nth-child(2)  { transition-delay: .13s; }
.stagger-children .animate-on-scroll:nth-child(3)  { transition-delay: .21s; }
.stagger-children .animate-on-scroll:nth-child(4)  { transition-delay: .29s; }
.stagger-children .animate-on-scroll:nth-child(5)  { transition-delay: .37s; }
.stagger-children .animate-on-scroll:nth-child(6)  { transition-delay: .45s; }
.stagger-children .animate-on-scroll:nth-child(7)  { transition-delay: .53s; }
.stagger-children .animate-on-scroll:nth-child(8)  { transition-delay: .61s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content { max-width: 100%; }
  .about-image-frame img { height: 400px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { height: 260px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 72px; --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hide-mobile { display: none; }

  .hero-eyebrow { font-size: .72rem; letter-spacing: .1em; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-badges { gap: 12px; }
  .badge { font-size: .76rem; }

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

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { padding: 20px; }

  .about-usps { grid-template-columns: 1fr; }
  .about-image-frame img { height: 300px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item img,
  .gallery-item--tall img,
  .gallery-item--wide img { height: 220px; }
  .gallery-caption { transform: translateY(0); }

  .process-grid { grid-template-columns: 1fr; gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: center; gap: 8px; }
  .btn-lg { padding: 14px 28px; font-size: .95rem; }
}
