/* ============================================================
   Steps Ahead Cleaning Services — stylesheet
   Tokens
   ============================================================ */
:root{
  --ink: #0F2436;
  --ink-2: #163955;
  --ink-3: #1E4A6E;
  --paper: #F6F4EF;
  --paper-dim: #ECE8DE;
  --signal: #C81E3A;
  --signal-dark: #9E1730;
  --gold: #C79A4B;
  --ink-text: #16222C;
  --paper-text: #F3F1E9;
  --muted: #5C6B76;

  --display: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --hand: "Caveat", cursive;
  --mono: "IBM Plex Mono", monospace;

  --wrap: 1180px;
  --radius: 6px;
  --radius-lg: 12px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink-text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--display); margin:0; font-weight:600; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

.wrap{ max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ---------- scroll progress streak ---------- */
.progress-streak{
  position: fixed; top:0; left:0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--signal), var(--gold));
  z-index: 999; transition: width 0.08s linear;
}

/* ---------- reveal on scroll ---------- */
.reveal, .reveal-photo{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .reveal-photo.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: var(--body); font-weight:600; font-size:0.95rem;
  border: 1.5px solid transparent; cursor:pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-primary{ background: var(--signal); color: #fff; }
.btn-primary:hover{ background: var(--signal-dark); }
.btn-ghost{ border-color: rgba(15,36,54,0.25); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--ink); background: rgba(15,36,54,0.05); }
.btn-lg{ padding: 16px 34px; font-size: 1.05rem; margin-top: 8px; }
.btn-call{ background: var(--paper); color: var(--ink); border-color: transparent; font-family: var(--mono); font-size:0.85rem; padding: 10px 16px; }
.btn-call:hover{ background: var(--gold); color:#fff; }
.btn-call svg{ flex-shrink:0; }

/* ---------- header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled{
  background: rgba(15,36,54,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.header-inner{ display:flex; align-items:center; gap: 28px; }
.brand{
  display:flex; align-items:center; margin-right:auto;
  background: var(--paper); padding: 7px 14px; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}
.brand:hover{ transform: translateY(-1px); }
.brand-logo{ height: 42px; width:auto; display:block; }

.main-nav{ display:flex; gap: 26px; }
.main-nav a{ color:#fff; font-size:0.92rem; font-weight:500; opacity:0.85; transition: opacity 0.2s; position:relative; }
.main-nav a:hover{ opacity:1; }
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-5px; width:0; height:1.5px;
  background: var(--gold); transition: width 0.25s ease;
}
.main-nav a:hover::after{ width:100%; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ width:22px; height:2px; background:#fff; border-radius:2px; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---------- hero ---------- */
.hero{ position:relative; min-height: 100vh; display:flex; align-items:flex-end; overflow:hidden; }
.hero-media{ position:absolute; inset:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position: center 35%; }
.hero-scrim{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,36,54,0.55) 0%, rgba(15,36,54,0.35) 35%, rgba(15,36,54,0.92) 100%);
}
.hero-media-wipe{
  position:absolute; inset:0; background: var(--ink);
  transform-origin: left center;
  animation: wipeReveal 1.4s cubic-bezier(.77,0,.18,1) 0.15s forwards;
}
@keyframes wipeReveal{
  0%{ transform: scaleX(1); }
  100%{ transform: scaleX(0); }
}
.hero-inner{ position:relative; z-index:2; padding-bottom: 90px; padding-top: 180px; max-width: 760px; }
.eyebrow{
  display:flex; align-items:center; gap:8px;
  font-family: var(--mono); font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--paper-text); opacity:0.85; margin: 0 0 18px;
}
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background: var(--signal); display:inline-block; animation: pulse 2s infinite; }
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(200,30,58,0.5); }
  50%{ box-shadow: 0 0 0 7px rgba(200,30,58,0); }
}
.hero-title{
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height:1.04; color:#fff; letter-spacing:-0.01em;
}
.sticky-note{
  display:inline-block; font-family: var(--hand); font-weight:700; font-size:1.5rem; line-height:1.15;
  color: var(--ink); background: var(--gold);
  padding: 10px 18px; margin: 18px 0 22px; transform: rotate(-3deg);
  border-radius: 2px; box-shadow: 4px 5px 0 rgba(0,0,0,0.18);
}
.hero-sub{ color: var(--paper-text); opacity:0.88; font-size:1.08rem; max-width:560px; margin: 0 0 34px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-cta .btn-ghost{ color:#fff; border-color: rgba(255,255,255,0.35); }
.hero-cta .btn-ghost:hover{ border-color:#fff; background: rgba(255,255,255,0.08); }

/* Floating photo teasers in hero */
.hero-float-photos{
  position: absolute; right: 5%; bottom: 90px; z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
  animation: floatIn 1.2s cubic-bezier(.22,1,.36,1) 1.2s both;
}
@keyframes floatIn{
  from{ opacity:0; transform: translateX(60px); }
  to{ opacity:1; transform: translateX(0); }
}
.hero-float-photo{
  width: 180px; height: 120px; border-radius: 10px; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: transform 0.3s ease;
}
.hero-float-photo:hover{ transform: scale(1.04); }
.hero-float-photo img{ width:100%; height:100%; object-fit:cover; }
.hero-float-1{ transform: rotate(2deg); }
.hero-float-2{ transform: rotate(-2deg); margin-left: 20px; }

/* Scroll hint */
.hero-scroll-hint{
  position:absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,0.5); font-family: var(--mono); font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase;
  animation: fadeInUp 1s ease 2s both;
}
@keyframes fadeInUp{
  from{ opacity:0; transform: translate(-50%, 10px); }
  to{ opacity:1; transform: translate(-50%, 0); }
}
.hero-scroll-line{ width:1px; height:40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 1.5s ease-in-out infinite; }
@keyframes scrollPulse{
  0%,100%{ opacity:0.4; transform: scaleY(1); }
  50%{ opacity:1; transform: scaleY(1.2); }
}

/* ---------- stats ---------- */
.stats{ background: var(--ink); padding: 42px 0; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.stat{ display:flex; flex-direction:column; gap:4px; border-left: 2px solid var(--gold); padding-left:16px; }
.stat-num{ font-family: var(--mono); font-size:2rem; font-weight:600; color:#fff; }
.stat-label{ font-size:0.85rem; color: rgba(243,241,233,0.65); }

/* ---------- section helpers ---------- */
.kicker{
  font-family: var(--mono); font-size:0.8rem; text-transform:uppercase; letter-spacing:0.08em;
  color: var(--signal); font-weight:600; margin: 0 0 14px;
}
.kicker-light{ color: var(--gold); }
.section-title{ font-size: clamp(1.7rem, 3.4vw, 2.5rem); max-width:640px; margin-bottom: 8px; }
.section-title-light{ color:#fff; }

/* ---------- about ---------- */
.about{ padding: 110px 0 90px; }
.about-grid{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items:center; }
.about-copy h2{ font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom:18px; }
.about-copy p{ color: var(--muted); line-height:1.7; margin-bottom:16px; font-size:1.02rem; }
.about-values{ display:grid; grid-template-columns: 1fr 1fr; gap:10px 20px; margin-top: 22px; }
.value-item{ display:flex; align-items:center; gap:10px; font-size:0.92rem; font-weight:600; color: var(--ink); }
.value-dot{ width:7px; height:7px; border-radius:50%; background: var(--signal); flex-shrink:0; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); width:100%; height: 480px; object-fit:cover; box-shadow: 0 24px 60px rgba(15,36,54,0.25); }
.about-media-tag{
  position:absolute; left:-18px; bottom: 28px; background: var(--paper); padding: 12px 20px;
  font-family: var(--mono); font-size:0.78rem; font-weight:600; letter-spacing:0.03em;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14); border-left: 3px solid var(--signal);
}

/* ---------- mission ---------- */
.mission{
  background: var(--ink); padding: 90px 0 100px; position:relative;
}
.mission::before{
  content:""; position:absolute; top:-1px; left:0; right:0; height:60px;
  background: var(--paper);
  clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 75% 75%, 50% 40%, 25% 85%, 0% 60%);
}
.mission-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.mission-card{
  background: var(--ink-2); border-radius: var(--radius-lg); padding: 34px 28px;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mission-card:hover{ transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.mission-card-accent{ border-top-color: var(--signal); }
.mission-text{ color: var(--paper-text); opacity:0.9; line-height:1.65; font-size:1.02rem; }

/* ---------- why ---------- */
.why{ padding: 110px 0; position:relative; }
.why::before{
  content:""; position:absolute; top:-1px; left:0; right:0; height:60px;
  background: var(--ink);
  clip-path: polygon(0% 100%, 100% 100%, 100% 20%, 75% 55%, 50% 15%, 25% 70%, 0% 30%);
}
.why-grid{ display:grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items:center; }
.why-copy h2{ font-size: clamp(1.7rem,3.2vw,2.3rem); margin-bottom:18px; }
.why-copy p{ color: var(--muted); line-height:1.7; font-size:1.02rem; margin-bottom:20px; }
.why-list{ display:flex; flex-direction:column; gap:12px; }
.why-list li{ position:relative; padding-left:22px; color: var(--ink-text); font-weight:500; line-height:1.5; }
.why-list li::before{ content:""; position:absolute; left:0; top:8px; width:8px; height:8px; border-radius:50%; background: var(--signal); flex-shrink:0; }
.why-media{
  display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap:14px;
}
.why-img{ border-radius:var(--radius-lg); object-fit:cover; width:100%; box-shadow: 0 14px 34px rgba(15,36,54,0.16); transition: transform 0.4s ease; }
.why-img:hover{ transform: scale(1.02); }
.why-img-tall{ grid-row: 1 / 3; height: 100%; min-height: 420px; }
.why-img:not(.why-img-tall):not(.why-img-wide){ height: 200px; }
.why-img-wide{ grid-column: 2 / 3; height: 200px; }

/* ---------- services ---------- */
.services{ background: var(--paper-dim); padding: 110px 0; }
.services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.service-card{
  background: var(--paper); border-radius: var(--radius-lg); padding: 30px 26px;
  border: 1px solid rgba(15,36,54,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{ transform: translateY(-8px); box-shadow: 0 22px 50px rgba(15,36,54,0.13); border-color: var(--gold); }
.service-icon{
  width:52px; height:52px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,30,58,0.1), rgba(199,154,75,0.12));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; color: var(--signal);
  border: 1px solid rgba(200,30,58,0.12);
}
.service-card h3{ font-size:1.15rem; margin-bottom:14px; color: var(--ink); }
.service-card ul{ display:flex; flex-direction:column; gap:9px; }
.service-card li{ position:relative; padding-left:18px; font-size:0.91rem; color: var(--muted); line-height:1.5; }
.service-card li::before{ content:""; position:absolute; left:0; top:8px; width:6px; height:6px; border-radius:50%; background: var(--signal); }

/* ---------- SHOWCASE STRIP (auto-scrolling) ---------- */
.showcase{
  background: var(--ink-2);
  padding: 0; overflow: hidden; position:relative;
  height: 320px;
}
.showcase-track{
  display:flex; gap: 16px; height:100%;
  animation: autoScroll 28s linear infinite;
  width: max-content;
}
.showcase-track:hover{ animation-play-state: paused; }
@keyframes autoScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.showcase-slide{
  position:relative; flex-shrink:0;
  width: 480px; height: 320px;
  border-radius: 0;
  overflow:hidden; cursor:pointer;
}
.showcase-slide img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.showcase-slide:hover img{ transform: scale(1.05); }
.showcase-label{
  position:absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(15,36,54,0.9), transparent);
  color:#fff; font-family: var(--mono); font-size:0.8rem; letter-spacing:0.06em;
  text-transform:uppercase; padding: 30px 20px 16px;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.showcase-slide:hover .showcase-label{ transform: translateY(0); }
.showcase-overlay-left, .showcase-overlay-right{
  position:absolute; top:0; bottom:0; width: 120px; z-index:2; pointer-events:none;
}
.showcase-overlay-left{ left:0; background: linear-gradient(to right, var(--ink-2), transparent); }
.showcase-overlay-right{ right:0; background: linear-gradient(to left, var(--ink-2), transparent); }

/* ---------- work gallery ---------- */
.work{ background: var(--ink); padding: 110px 0; }
.work-lead{ color:rgba(243,241,233,0.6); font-size:0.92rem; margin-top:6px; margin-bottom:0; }

/* Featured full-width showcase */
.work-featured{
  display:grid; grid-template-columns: 1.5fr 1fr; gap:14px;
  margin-top: 46px; margin-bottom: 14px; border-radius: var(--radius-lg);
  overflow:hidden; height: 440px;
}
.work-featured-main{
  position:relative; overflow:hidden; border-radius: var(--radius-lg); cursor:pointer;
}
.work-featured-main img{ width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.work-featured-main:hover img{ transform: scale(1.04); }
.work-featured-side{
  display:flex; flex-direction:column; gap:14px;
}
.work-featured-item{
  flex:1; position:relative; overflow:hidden; border-radius: var(--radius-lg); cursor:pointer;
}
.work-featured-item img{ width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.work-featured-item:hover img{ transform: scale(1.05); }
.work-featured-tag{
  position:absolute; bottom:14px; left:14px;
  background: rgba(15,36,54,0.8); backdrop-filter: blur(6px);
  color:#fff; font-family: var(--mono); font-size:0.72rem; letter-spacing:0.05em; text-transform:uppercase;
  padding: 6px 14px; border-radius: 4px;
  border-left: 2px solid var(--gold);
  transition: background 0.2s ease;
}
.work-featured-main:hover .work-featured-tag,
.work-featured-item:hover .work-featured-tag{
  background: rgba(200,30,58,0.85);
}

/* Standard grid */
.work-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px;
}
.work-item{ border-radius:var(--radius-lg); overflow:hidden; position:relative; cursor:pointer; }
.work-item img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.work-item:hover img{ transform: scale(1.07); }
.work-item-overlay{
  position:absolute; inset:0; background: rgba(15,36,54,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity 0.3s ease;
}
.work-item-overlay span{
  color:#fff; font-family: var(--mono); font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase;
  border: 1px solid rgba(255,255,255,0.6); padding: 6px 16px; border-radius:3px;
  transform: translateY(8px); transition: transform 0.3s ease;
}
.work-item:hover .work-item-overlay{ opacity:1; }
.work-item:hover .work-item-overlay span{ transform: translateY(0); }
.span-tall{ grid-row: span 2; }
.span-wide{ grid-column: span 2; }

/* Extra row of images */
.work-extra-row{
  display:grid; grid-template-columns: repeat(3,1fr); gap:14px; margin-top: 14px;
}
.work-item-wide{
  height: 200px; border-radius:var(--radius-lg); overflow:hidden;
  position:relative; cursor:pointer;
}
.work-item-wide img{ width:100%; height:100%; object-fit:cover; transition: transform 0.5s ease; }
.work-item-wide:hover img{ transform: scale(1.06); }
.work-item-wide .work-item-overlay{ position:absolute; inset:0; background: rgba(15,36,54,0.5); display:flex; align-items:center; justify-content:center; opacity:0; transition: opacity 0.3s ease; }
.work-item-wide .work-item-overlay span{ color:#fff; font-family: var(--mono); font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; border: 1px solid rgba(255,255,255,0.6); padding: 6px 16px; border-radius:3px; transform:translateY(8px); transition:transform 0.3s ease; }
.work-item-wide:hover .work-item-overlay{ opacity:1; }
.work-item-wide:hover .work-item-overlay span{ transform:translateY(0); }

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:900;
  background: rgba(10,20,32,0.97);
  display:none; align-items:center; justify-content:center;
  animation: lbFadeIn 0.25s ease;
}
.lightbox.active{ display:flex; }
@keyframes lbFadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}
.lightbox-content{ text-align:center; max-width:90vw; max-height:90vh; }
.lightbox-img{
  max-width:90vw; max-height:80vh;
  object-fit:contain; border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lbImgIn 0.3s ease;
}
@keyframes lbImgIn{
  from{ opacity:0; transform: scale(0.94); }
  to{ opacity:1; transform: scale(1); }
}
.lightbox-caption{
  color:rgba(243,241,233,0.7); font-family: var(--mono); font-size:0.78rem;
  letter-spacing:0.04em; margin-top:18px; max-width:600px; margin-left:auto; margin-right:auto;
}
.lightbox-close{
  position:absolute; top:22px; right:28px;
  background:none; border:none; color:#fff; font-size:2.2rem; cursor:pointer;
  opacity:0.7; transition:opacity 0.2s, transform 0.2s;
  line-height:1;
}
.lightbox-close:hover{ opacity:1; transform: rotate(90deg); }
.lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  background:none; border: 1px solid rgba(255,255,255,0.2); color:#fff;
  font-size:2rem; width:52px; height:52px; border-radius:50%; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background 0.2s, border-color 0.2s; line-height:1;
}
.lightbox-nav:hover{ background: rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.5); }
.lightbox-prev{ left:24px; }
.lightbox-next{ right:24px; }

/* ---------- clients / logo wall ---------- */
.clients{ padding: 100px 0 110px; }
.logo-wall{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; margin-top: 40px;
}
.logo-card{
  background:#fff; border: 1px solid rgba(15,36,54,0.10); border-radius: 10px;
  height: 118px; display:flex; align-items:center; justify-content:center; padding: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.logo-card:hover{ border-color: var(--gold); box-shadow: 0 14px 30px rgba(15,36,54,0.1); transform: translateY(-4px); }
.logo-card img{
  max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain;
  filter: grayscale(1) opacity(0.7); transition: filter 0.3s ease;
}
.logo-card:hover img{ filter: grayscale(0) opacity(1); }
.clients-more{ margin-top: 30px; color: var(--muted); font-size:0.95rem; line-height:1.6; max-width:720px; }

/* ---------- contact ---------- */
.contact{ position:relative; padding: 120px 0 100px; overflow:hidden; }
.contact-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter: grayscale(1) contrast(1.05); }
.contact-scrim{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(15,36,54,0.94), rgba(15,36,54,0.88)); }
.contact-inner{ position:relative; z-index:2; }
.contact-lead{ color: var(--paper-text); opacity:0.85; font-size:1.08rem; max-width:520px; margin-bottom: 44px; }
.contact-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-bottom: 44px; }
.contact-card{
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius:10px;
  padding: 28px; display:flex; flex-direction:column; gap:6px; transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
a.contact-card:hover{ background: rgba(255,255,255,0.1); border-color: var(--gold); transform: translateY(-4px); }
.contact-card-icon{
  width:42px; height:42px; border-radius:8px;
  background: rgba(199,154,75,0.15); border:1px solid rgba(199,154,75,0.3);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold); margin-bottom:10px;
}
.contact-card-label{ font-family: var(--mono); font-size:0.72rem; text-transform:uppercase; letter-spacing:0.06em; color: var(--gold); margin-bottom:4px; }
.contact-card-value{ color:#fff; font-size:0.98rem; font-weight:500; }

/* ---------- footer ---------- */
.site-footer{ background: var(--ink-2); padding: 20px 0; }
.footer-inner{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; color: rgba(243,241,233,0.65); font-size:0.82rem; }
.footer-tagline{ font-family: var(--hand); font-size:1.05rem; color: var(--gold); }

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .main-nav{
    display:none; position:fixed; top:64px; left:0; right:0; z-index:400;
    background: var(--ink); flex-direction:column; padding: 20px 28px; gap:0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); opacity:1; }
  .nav-toggle{ display:flex; }
  .about-grid, .why-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-media img{ height: 340px; }
  .why-img-tall{ min-height: 260px; }
  .mission-grid, .services-grid{ grid-template-columns: 1fr 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; row-gap:26px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: repeat(2,1fr); }
  .span-tall{ grid-row: span 1; }
  .span-wide{ grid-column: span 2; }
  .logo-wall{ grid-template-columns: repeat(3, 1fr); }
  .hero-float-photos{ display:none; }
  .work-featured{ grid-template-columns: 1fr; height: auto; }
  .work-featured-main{ height:280px; }
  .work-featured-side{ flex-direction:row; }
  .work-featured-item{ height:200px; }
  .work-extra-row{ grid-template-columns: 1fr 1fr; }
  .showcase-slide{ width:360px; }
}
@media (max-width: 600px){
  .header-inner{ gap:14px; }
  .btn-call span{ display:none; }
  .hero-inner{ padding-top:140px; padding-bottom:60px; }
  .mission-grid, .services-grid{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 110px; }
  .logo-wall{ grid-template-columns: repeat(2, 1fr); }
  .work-featured{ grid-template-columns:1fr; }
  .work-featured-side{ flex-direction:column; }
  .work-featured-main{ height:240px; }
  .work-extra-row{ grid-template-columns:1fr; }
  .showcase{ height:240px; }
  .showcase-slide{ width:280px; height:240px; }
  .lightbox-nav{ display:none; }
}
