/* ── Variables ── */
:root {
  --ink:    #080808;
  --ink-2:  #111111;
  --ink-3:  #1c1c1c;
  --navy:   #001e33;
  --white:  #ffffff;
  --off:    #fafaf8;
  --gold:   #c9a84c;
  --gold-l: #e2c26a;
  --red:    #bf1a34;
  --red-d:  #961530;
  --body:   #1a1a1a;
  --muted:  #6b6b6b;
  --border: #e6e6e6;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── Layout ── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 40px; }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-red    { background: var(--red); color: #fff !important; }
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(191,26,52,.35); }
.btn-ghost  { background: transparent; color: rgba(255,255,255,.85) !important; border: 1px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; color: #fff !important; background: rgba(255,255,255,.06); }
.btn-gold   { background: var(--gold); color: var(--ink) !important; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-lg { font-size: 0.88rem; padding: 18px 44px; }
.btn-full { width: 100%; }


/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed; inset: 0 0 auto;
  z-index: 200;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-wrap {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo img { height: 44px; border-radius: 50%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  color: var(--gold-l);
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em;
  white-space: nowrap; transition: color .2s;
}
.nav-phone:hover { color: #fff; }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.ham span { width: 22px; height: 1.5px; background: #fff; display: block; transition: .25s; }

.nav-drawer {
  display: none; flex-direction: column;
  position: fixed; top: 64px; inset: 64px 0 auto;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,.06); z-index: 199;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,.75); padding: 15px 32px;
  font-size: .93rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, background .2s;
}
.nav-drawer a:hover { color: var(--gold-l); background: rgba(255,255,255,.03); }


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.42) 0%, rgba(0,0,0,.76) 80%),
    url('images/backroundchristmaslights.jpg') center/cover no-repeat fixed;
  background-color: var(--ink);
}
.hero-inner { padding: 72px 32px; max-width: 800px; }

.hero-inner h1 {
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-inner h1 em { font-style: italic; color: var(--gold-l); }

.hero-inner .sub {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem; font-weight: 400;
  max-width: 480px; margin: 0 auto 44px;
  line-height: 1.65;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-phone {
  display: inline-block;
  color: rgba(255,255,255,.6);
  font-size: .88rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500; transition: color .2s;
}
.hero-phone:hover { color: var(--gold-l); }


/* ══════════════════════════════════════
   PROOF BAR
══════════════════════════════════════ */
#proof {
  background: var(--ink-2);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.proof-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  max-width: 960px; margin: 0 auto;
}
.proof-item {
  flex: 1; min-width: 180px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-align: center;
}
.proof-item:last-child { border-right: none; }
.proof-val {
  display: block;
  font-size: 1.7rem; font-weight: 800; color: var(--gold);
  letter-spacing: -0.02em; line-height: 1; margin-bottom: 5px;
}
.proof-lbl {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.42);
}


/* ══════════════════════════════════════
   VALUE / DIFFERENCE
══════════════════════════════════════ */
#value { background: var(--white); padding: 100px 0; }
#value .section-head { margin-bottom: 64px; }
#value h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--ink);
  max-width: 600px;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.val-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.val-card:last-child { border-right: none; }
.val-card:hover { background: var(--off); }
.val-num {
  font-size: 2.6rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 16px; display: block;
}
.val-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.val-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }


/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery { background: var(--ink); padding: 100px 0 0; }
#gallery .wrap { margin-bottom: 48px; }
#gallery h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: #fff;
  max-width: 600px;
}
#gallery p { color: rgba(255,255,255,.38); font-size: .88rem; margin-top: 10px; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 3px;
}
.gal-cell { overflow: hidden; position: relative; background: var(--ink-3); }
.gal-cell img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4/3;
  transition: transform 0.6s var(--ease);
}
.gal-cell:hover img { transform: scale(1.05); }
.gal-cell.tall { grid-row: span 2; }
.gal-cell.tall img { aspect-ratio: unset; height: 100%; }


/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
#process { background: var(--ink-2); padding: 100px 0; }
#process h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: #fff;
  margin-bottom: 64px; max-width: 540px;
}
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.06); }
.step-item {
  background: var(--ink-2);
  padding: 40px 36px;
  transition: background .2s;
}
.step-item:hover { background: var(--ink-3); }
.step-item .n {
  font-size: .65rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.step-item h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-item p  { font-size: .88rem; color: rgba(255,255,255,.42); line-height: 1.65; }


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#reviews { background: var(--white); padding: 100px 0; }
#reviews h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 56px; max-width: 560px;
}
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rev-card {
  background: var(--off);
  padding: 36px 32px;
  border-radius: 2px;
  border-bottom: 3px solid var(--gold);
  position: relative;
}
.rev-stars { color: #F59E0B; font-size: .85rem; letter-spacing: 3px; margin-bottom: 16px; }
.rev-card blockquote {
  font-size: .95rem; color: var(--body); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.rev-card blockquote::before { content: '\201C'; }
.rev-card blockquote::after  { content: '\201D'; }
.rev-name { font-weight: 700; font-size: .88rem; color: var(--ink); }
.rev-loc  { font-size: .76rem; color: var(--muted); margin-top: 3px; }


/* ══════════════════════════════════════
   SCARCITY CTA
══════════════════════════════════════ */
#cta {
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.82)),
    url('images/websitephoto4.jpg') center/cover no-repeat fixed;
  background-color: var(--ink);
  padding: 110px 40px;
  text-align: center;
}
#cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 16px; max-width: 680px; margin-left: auto; margin-right: auto;
}
#cta p {
  color: rgba(255,255,255,.58); font-size: 1rem;
  max-width: 480px; margin: 0 auto 40px; line-height: 1.65;
}
.cta-tel {
  display: block; color: rgba(255,255,255,.55);
  font-size: .88rem; letter-spacing: .1em; text-transform: uppercase;
  margin-top: 20px; font-weight: 500; transition: color .2s;
}
.cta-tel:hover { color: var(--gold-l); }


/* ══════════════════════════════════════
   QUOTE
══════════════════════════════════════ */
#quote { background: var(--navy); padding: 100px 0; }
.q-card {
  background: var(--white);
  border-radius: 2px;
  padding: 56px 52px;
  max-width: 660px; margin: 0 auto;
  border-top: 3px solid var(--gold);
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
#quote h2 {
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 6px;
}
.q-sub { color: var(--muted); font-size: .9rem; margin-bottom: 36px; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }

#qf input, #qf select, #qf textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 2px;
  font-family: inherit; font-size: .93rem; color: var(--ink);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
  margin-bottom: 12px;
}
#qf input:focus, #qf select:focus, #qf textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
#qf textarea { resize: vertical; min-height: 80px; }
.f-note { text-align: center; font-size: .72rem; color: var(--muted); margin-top: 14px; }


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 64px 0 0;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }

.foot-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-logo img { height: 50px; border-radius: 50%; border: 1px solid rgba(201,168,76,.2); }
.foot-logo strong { color: #fff; font-size: .95rem; line-height: 1.3; }
.foot-desc { color: rgba(255,255,255,.35); font-size: .83rem; line-height: 1.7; max-width: 280px; margin-bottom: 22px; }

.foot-contacts { display: flex; flex-direction: column; gap: 9px; }
.foot-contacts a,
.foot-contacts span { color: rgba(255,255,255,.45); font-size: .83rem; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; transition: color .2s; }
.foot-contacts a:hover { color: var(--gold-l); }

.foot-col h5 {
  color: var(--gold-l); font-size: .65rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px;
}
.foot-col { display: flex; flex-direction: column; gap: 2px; }
.foot-col a { color: rgba(255,255,255,.4); font-size: .83rem; padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: #fff; }

.foot-bar {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  max-width: 1200px; margin: 0 auto;
}
.foot-bar span { font-size: .74rem; color: rgba(255,255,255,.22); }


/* ── Float CTA mobile ── */
.float-cta {
  display: none;
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--red); color: #fff !important;
  font-weight: 700; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 28px; border-radius: 999px;
  box-shadow: 0 8px 32px rgba(191,26,52,.55);
  z-index: 198; white-space: nowrap;
  animation: p 2.8s ease infinite;
}
@keyframes p { 0%,100% { box-shadow: 0 8px 32px rgba(191,26,52,.55); } 50% { box-shadow: 0 8px 48px rgba(191,26,52,.8); } }

#top-btn {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 50%;
  font-size: .95rem; font-weight: 700;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, background .2s; z-index: 197;
  display: flex; align-items: center; justify-content: center;
}
#top-btn.show { opacity: 1; pointer-events: all; }
#top-btn:hover { background: var(--gold-l); }



/* ══════════════════════════════════════
   AREAS SERVED
══════════════════════════════════════ */
#areas {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
#areas .section-head { margin-bottom: 48px; }
#areas h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--ink);
}
.areas-sub {
  color: var(--muted); font-size: .93rem;
  margin-top: 10px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.area-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 5px;
  transition: border-color .2s, background .2s, transform .2s;
}
.area-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
}
.area-card strong { font-size: .9rem; color: var(--ink); font-weight: 700; }
.area-card span   { font-size: .72rem; color: var(--muted); letter-spacing: .08em; }

.areas-note {
  text-align: center;
  font-size: .88rem; color: var(--muted);
}
.areas-note a { color: var(--gold); font-weight: 600; }
.areas-note a:hover { color: var(--gold-l); text-decoration: underline; }


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 860px) {
  .val-grid { grid-template-columns: 1fr; }
  .val-card { border-right: none; border-bottom: 1px solid var(--border); }
  .val-card:last-child { border-bottom: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .gal-cell.tall { grid-row: span 1; }
.areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .wrap, .wrap-sm { padding: 0 24px; }
  .nav-phone { display: none; }
  .ham { display: flex; }
  .nav-right .btn { padding: 10px 18px; font-size: .78rem; }
  .q-card { padding: 36px 24px; }
  .f-row { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .proof-item { min-width: 50%; }
  .float-cta { display: inline-flex; align-items: center; gap: 6px; }
  #top-btn { display: none; }
  #cta { padding: 80px 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
