/* ── Variables ─────────────────────────────────── */
:root {
  --bg:        #111111;
  --bg-card:   #1a1a1a;
  --teal:      #00c8c8;
  --teal-dim:  #009999;
  --text:      #e0e0e0;
  --text-muted:#888888;
  --white:     #ffffff;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    8px;
  --max-w:     1100px;
  --transition: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.teal { color: var(--teal); }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-call:hover { background: var(--teal-dim); transform: translateY(-1px); }
.btn-call:active { transform: translateY(0); }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.header-call {
  font-size: 1rem;
  padding: 0.65rem 1.4rem;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/mobile-keycutting.jpeg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.22);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 200, 0.12);
  border: 1px solid rgba(0, 200, 200, 0.4);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-cta {
  font-size: 1.25rem;
  padding: 1.1rem 2.5rem;
  margin-bottom: 1.5rem;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(0,200,200,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}
.trust-badge {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.trust-badge.teal { color: var(--teal); }
.trust-sep { color: var(--text-muted); }

@media (max-width: 600px) {
  .trust-sep { display: none; }
  .trust-inner { gap: 0.4rem 0.8rem; }
}

/* ── Services ────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,200,0.35);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.04);
}
.service-body {
  padding: 1.5rem;
}
.service-icon {
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.service-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Reviews ─────────────────────────────────────── */
.reviews { background: var(--bg-card); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars {
  color: var(--teal);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.review-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-author {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.review-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,200,200,0.4);
  border-radius: 100px;
  padding: 0.1rem 0.5rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.review-card--cta {
  border-color: rgba(0,200,200,0.25);
  justify-content: center;
  text-align: center;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  transition: background var(--transition), color var(--transition);
}
.btn-review:hover { background: var(--teal); color: #000; }

/* ── About ───────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
}
.about-bio strong { color: var(--white); }
.about-tagline {
  color: var(--teal);
  font-style: italic;
  margin-top: 0.5rem;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,200,200,0.2);
  box-shadow: 0 0 40px rgba(0,200,200,0.08);
}
.about-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 800px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo { order: -1; }
  .about-photo img { height: 300px; }
}

/* ── Service Area ────────────────────────────────── */
.area { background: var(--bg-card); text-align: center; }
.area-sub {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 1rem;
}
.area-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}
.area-cities li {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--bg);
  border: 1px solid rgba(0,200,200,0.25);
  border-radius: 100px;
  padding: 0.45rem 1.2rem;
}
.area-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.area-link { color: var(--teal); text-decoration: underline; }
.area-link:hover { color: var(--white); }

/* ── Final CTA ───────────────────────────────────── */
.cta-final {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
  text-align: center;
  border-top: 1px solid rgba(0,200,200,0.15);
}
.cta-inner { max-width: 640px; }
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  margin-top: 0.5rem;
}
.cta-btn {
  font-size: 1.4rem;
  padding: 1.2rem 3rem;
  margin-bottom: 1.25rem;
}
.cta-email {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  transition: color var(--transition), border-color var(--transition);
}
.social-link:hover { color: var(--teal); border-color: var(--teal); }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  opacity: 0.75;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  margin: 0.25rem 0;
}
.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal); }
.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Mobile Global ───────────────────────────────── */
@media (max-width: 480px) {
  .header-call { font-size: 0.9rem; padding: 0.6rem 1rem; }
  .hero-cta { width: 100%; justify-content: center; }
  .cta-btn { width: 100%; justify-content: center; font-size: 1.15rem; }
}
