/* ==========================================================================
   City PR + Marketing — single stylesheet. No frameworks, no build step.
   Edit the variables below to restyle the whole site.
   ========================================================================== */

:root {
  --bg:         #ffffff;
  --surface:    #faf7ee;   /* warm off-white */
  --band:       #fff6d6;   /* soft yellow highlight */
  --text:       #232323;
  --muted:      #5c5c5c;
  --accent:     #f5b301;   /* City PR gold/yellow — the brand accent */
  --accent-dark:#d99e00;   /* hover */
  --accent-ink: #232323;   /* text that sits on yellow */
  --border:     #ececec;
  --maxw:       1080px;
  --radius:     12px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-underline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

/* Accessibility: skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 0 0 var(--radius) 0; z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Header / nav — note the signature gold underline */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 3px solid var(--accent);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; flex-wrap: wrap; }
.brand { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; text-decoration: none; color: var(--text); }
.brand span { color: var(--accent); }
.site-header nav { display: flex; gap: 6px; flex-wrap: wrap; }
.site-header nav a {
  text-decoration: none; color: var(--muted); font-weight: 500;
  padding: 8px 12px; border-radius: 8px; font-size: 0.98rem;
}
.site-header nav a:hover { color: var(--text); background: var(--surface); }
.site-header nav a.active { color: var(--text); box-shadow: inset 0 -3px 0 var(--accent); border-radius: 2px; }

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.4em; }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); letter-spacing: -0.01em; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 800; color: #9a6f00; margin-bottom: 0.7em; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 62ch; }
.prose p { max-width: 68ch; }
.quote { font-size: 1.25rem; font-weight: 600; color: var(--text); border-left: 4px solid var(--accent); padding-left: 16px; margin: 1.4em 0; }

/* Sections */
.section { padding-block: clamp(48px, 8vw, 96px); }
.hero { padding-block: clamp(56px, 9vw, 110px); max-width: 860px; }
.band { background: var(--band); border-radius: var(--radius); text-align: center; margin-block: 24px; }
.band .lede { margin-inline: auto; }

/* Buttons */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.6em; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 24px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink);
  border: 2px solid var(--accent); transition: background .15s ease, color .15s ease;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost:hover { background: var(--text); color: #fff; }

/* Tag / pill lists (services, expertise) */
.tags { list-style: none; padding: 0; margin: 1.8em 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tags li {
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px;
}

/* Grids of cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; border-top: 4px solid var(--accent);
}
.card h2 { font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); }

/* Contact */
.contact-list { margin: 1.6em 0; }
.contact-list p { display: flex; gap: 16px; align-items: baseline; margin-bottom: 0.9em; font-size: 1.2rem; flex-wrap: wrap; }
.contact-label { display: inline-block; min-width: 84px; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-list a { text-decoration: underline; text-decoration-color: var(--accent); }
.social { display: inline-flex; gap: 16px; flex-wrap: wrap; font-size: 1rem; }
.small { font-size: 0.95rem; }

/* Footer */
.site-footer { border-top: 3px solid var(--accent); background: var(--surface); margin-top: 40px; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; padding-block: 40px; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
.site-footer nav a:hover { color: var(--text); }
.muted { color: var(--muted); }
.footer-inner .brand { font-size: 1.15rem; }
.footer-inner .brand span { color: var(--accent); }
.footer-inner .muted { margin: 0; }

/* Responsive */
@media (max-width: 780px) {
  .grid-3 { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
