/* Shared styles for all Brittoprint city landing pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #282c20; --bg-2: #1f2218; --fg: #f3f5e8; --fg-dim: #9ea08f;
  --accent: #d2ff00; --line: rgba(243,245,232,0.10);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--fg);
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-variation-settings: 'wdth' 100, 'wght' 400;
  line-height: 1.5; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--bg); }

/* Top nav */
.cnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(40,44,32,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 4vw; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cnav .logo img { height: 36px; width: auto; }
.cnav-links {
  display: flex; gap: 1.5rem; list-style: none;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em;
  flex-wrap: wrap; align-items: center;
}
.cnav-links a { color: var(--fg-dim); transition: color 0.3s; }
.cnav-links a:hover { color: var(--accent); }
.cnav-cta {
  padding: 0.7rem 1.2rem; border: 1px solid var(--accent);
  border-radius: 100px; color: var(--accent); font-weight: 700;
  transition: all 0.3s; font-size: 0.82rem;
}
.cnav-cta:hover { background: var(--accent); color: var(--bg); }

/* Hero */
.chero {
  padding: 6rem 4vw 5rem; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(210,255,0,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(210,255,0,0.06), transparent 55%);
}
.chero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.chero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.chero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--accent); margin-bottom: 2rem;
}
.chero-eyebrow::before { content: ''; width: 50px; height: 1px; background: var(--accent); }
.chero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 900;
  font-variation-settings: 'wdth' 75, 'wght' 900;
  line-height: 0.92; letter-spacing: -0.04em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.chero h1 em {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-weight: 500;
  font-variation-settings: 'opsz' 144;
}
.chero-lead {
  font-size: 1.15rem; color: var(--fg-dim); max-width: 680px;
  margin-bottom: 2.5rem; line-height: 1.7;
}
.chero-lead strong { color: var(--fg); }
.chero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.cbtn {
  display: inline-flex; align-items: center; gap: 0.85rem;
  padding: 1.1rem 2rem; background: var(--accent); color: var(--bg);
  font-weight: 800; font-size: 0.9rem; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.cbtn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(210,255,0,0.3); }
.cbtn.outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--line);
}
.cbtn.outline:hover { border-color: var(--accent); color: var(--accent); }

/* Sections */
.csection { padding: 5rem 4vw; }
.csection-inner { max-width: 1200px; margin: 0 auto; }
.csection h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  font-variation-settings: 'wdth' 75, 'wght' 900;
  line-height: 0.95; letter-spacing: -0.03em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.csection h2 em {
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--accent); font-weight: 500;
}
.csection p { color: var(--fg-dim); margin-bottom: 1.25rem; line-height: 1.7; max-width: 780px; }
.csection p strong { color: var(--fg); }

.calt { background: var(--bg-2); }

/* Services list */
.cservices {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
@media (max-width: 800px) { .cservices { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .cservices { grid-template-columns: 1fr; } }
.csvc {
  padding: 1.5rem; border: 1px solid var(--line);
  border-radius: 12px; transition: all 0.3s var(--ease);
}
.csvc:hover {
  border-color: var(--accent); transform: translateY(-3px);
  background: rgba(210,255,0,0.04);
}
.csvc h4 {
  font-size: 1.05rem; font-weight: 800;
  font-variation-settings: 'wdth' 85, 'wght' 800;
  margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.csvc p { font-size: 0.88rem; line-height: 1.5; margin: 0; color: var(--fg-dim); }

/* FAQ */
.cfaq-item {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0;
}
.cfaq-item:last-child { border-bottom: 1px solid var(--line); }
.cfaq-item h3 {
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.75rem; color: var(--fg);
}
.cfaq-item p { color: var(--fg-dim); margin: 0; line-height: 1.7; }

/* Other cities */
.cother-cities {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.cother-cities a {
  padding: 0.6rem 1.2rem; border: 1px solid var(--line);
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 0.5rem;
}
.cother-cities a::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.cother-cities a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* CTA strip */
.ccta {
  text-align: center; padding: 6rem 4vw;
  background:
    radial-gradient(ellipse at center, rgba(210,255,0,0.18), transparent 60%),
    var(--bg);
}
.ccta h2 { margin-bottom: 1.5rem; }
.ccta-buttons { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Footer */
.cfoot {
  padding: 3rem 4vw 2rem; border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.cfoot-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--fg-dim);
}
.cfoot a { color: var(--accent); }

/* Floating buttons (same as main) */
.float-actions {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 9998; display: flex; flex-direction: column; gap: 0.85rem;
  align-items: flex-end;
}
.float-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.4rem 0.85rem 0.85rem;
  color: #fff; border-radius: 100px; font-weight: 700; font-size: 0.92rem;
  transition: all 0.3s var(--ease);
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn .fb-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
}
.float-btn .fb-icon svg { width: 22px; height: 22px; }
.float-btn .fb-text { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.float-btn .fb-label { font-size: 0.65rem; opacity: 0.85; letter-spacing: 0.15em; text-transform: uppercase; }
.float-btn.wa { background: #25D366; box-shadow: 0 10px 30px rgba(37,211,102,0.35); animation: waPulse 2.4s ease-in-out infinite; }
.float-btn.wa:hover { background: #1ebd5b; }
.float-btn.wa .fb-icon svg { color: #25D366; }
.float-btn.call { background: var(--accent); color: var(--bg); box-shadow: 0 10px 30px rgba(210,255,0,0.35); animation: callPulse 2.4s ease-in-out infinite 1.2s; }
.float-btn.call:hover { background: #c0ed00; }
.float-btn.call .fb-icon { background: var(--bg); }
.float-btn.call .fb-icon svg { color: var(--accent); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,0.35), 0 0 0 18px rgba(37,211,102,0); }
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(210,255,0,0.35), 0 0 0 0 rgba(210,255,0,0.6); }
  50% { box-shadow: 0 10px 30px rgba(210,255,0,0.35), 0 0 0 18px rgba(210,255,0,0); }
}
@media (max-width: 600px) {
  .float-actions { gap: 0.6rem; bottom: 1rem; right: 1rem; }
  .float-btn { padding: 0.65rem; }
  .float-btn .fb-text { display: none; }
  .float-btn .fb-icon { width: 34px; height: 34px; }
}

/* ============ MOBILE TIGHTENING ============
   Tighten section padding on small screens — desktop default eats too
   much vertical space. */
@media (max-width: 768px) {
  .chero    { padding: 4rem 5vw 3rem; }
  .csection { padding: 3rem 5vw; }
  .ccta     { padding: 4rem 5vw; }
  .cfoot    { padding: 2rem 5vw 1.5rem; }
}
