/* On-Site Swag Printing — campus-fresh theme
   Bespoke stylesheet, written from scratch for onsiteswagprinting.com.
   Palette: teal-green + amber, light. Motif: rounded pill nav + confetti dots. */

:root {
  --bg: #f2f7f5;
  --surface: #ffffff;
  --accent: #0e7c66;
  --accent-dark: #0a5d4c;
  --accent2: #ffb703;
  --ink: #1e2d29;
  --muted: #566b64;
  --line: #dbe7e2;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -22px rgba(14, 124, 102, 0.35);
  --shadow-soft: 0 10px 28px -18px rgba(30, 45, 41, 0.28);
  --display: "Manrope", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 183, 3, 0.10), transparent 22%),
    radial-gradient(circle at 88% 4%, rgba(14, 124, 102, 0.10), transparent 24%),
    var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

/* confetti-dot motif band */
.confetti {
  height: 8px;
  width: 100%;
  background-image:
    radial-gradient(circle, var(--accent) 42%, transparent 44%),
    radial-gradient(circle, var(--accent2) 42%, transparent 44%);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
  opacity: 0.55;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); margin: 0 0 0.5em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: 0 0 0.5em; }
h3 { font-size: 1.24rem; margin: 0 0 0.4em; }
p { margin: 0 0 1em; }
a { color: var(--accent-dark); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent);
  margin: 0 0 0.7em;
}
.eyebrow::before { content: ""; width: 20px; height: 3px; border-radius: 3px; background: var(--accent2); }

/* ---------- Header / pill nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px;
  max-width: var(--wrap); margin: 0 auto;
}
.site-header::before {
  content: ""; position: absolute; inset: 8px 12px; z-index: -1;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 14px; background: var(--accent); color: #fff;
  font-family: var(--display); font-weight: 800; font-size: 0.95rem;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18);
}
.brand strong { font-family: var(--display); font-size: 1.02rem; display: block; line-height: 1.05; }
.brand small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.04em; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.92rem;
  padding: 8px 14px; border-radius: 999px; transition: background 0.15s, color 0.15s;
}
.site-nav a:hover { background: rgba(14, 124, 102, 0.10); color: var(--accent-dark); }
.site-nav a.nav-cta { background: var(--accent); color: #fff; }
.site-nav a.nav-cta:hover { background: var(--accent-dark); color: #fff; }

.nav-toggle {
  display: none; border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 9px 16px; font-family: var(--display);
  font-weight: 700; color: var(--ink); cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; right: 12px; left: 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 16px; }
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-family: var(--display); font-weight: 700; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: var(--shadow); transition: transform 0.15s, background 0.15s;
}
.button:hover { transform: translateY(-2px); background: var(--accent-dark); }
.button-ghost { background: transparent; color: var(--accent-dark); box-shadow: none; border: 2px solid var(--accent); }
.button-ghost:hover { background: rgba(14, 124, 102, 0.08); }

/* ---------- Hero ---------- */
.hero { padding: 46px 0 30px; text-align: center; }
.hero .wrap { max-width: 900px; }
.hero .lede { font-size: 1.18rem; color: var(--muted); max-width: 640px; margin: 0 auto 1.4em; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 1.4em; color: var(--muted); font-size: 0.9rem; }
.pill-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 0 0 1.3em; }
.pill-tags span {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; font-size: 0.82rem; font-weight: 600; color: var(--accent-dark);
}

/* horizontal scroll gallery (hero motif) */
.scroll-gallery {
  display: flex; gap: 16px; overflow-x: auto; padding: 26px 20px 30px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.scroll-gallery::-webkit-scrollbar { height: 8px; }
.scroll-gallery::-webkit-scrollbar-thumb { background: var(--accent2); border-radius: 8px; }
.scroll-gallery figure {
  flex: 0 0 300px; margin: 0; scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.scroll-gallery img { width: 100%; height: 220px; object-fit: cover; display: block; }
.scroll-gallery figcaption { padding: 12px 16px; font-size: 0.86rem; color: var(--muted); }

/* ---------- Sections ---------- */
section { padding: 40px 0; }
.section-head { max-width: 680px; margin-bottom: 26px; }
.section-head.center { margin-inline: auto; text-align: center; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .kicker {
  display: inline-block; font-family: var(--display); font-weight: 800;
  color: var(--accent2); font-size: 1.6rem; line-height: 1; margin-bottom: 8px;
  -webkit-text-stroke: 0;
}
.card p:last-child { margin-bottom: 0; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.stat {
  background: var(--accent); color: #fff; border-radius: var(--radius);
  padding: 22px; text-align: center; box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.stat span { font-size: 0.88rem; opacity: 0.92; }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center; }
.split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; } }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.photo-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.photo-grid img { width: 100%; height: 210px; object-fit: cover; display: block; }
.photo-grid figcaption { padding: 11px 15px; font-size: 0.85rem; color: var(--muted); }

.surface-band { background: var(--surface); border-block: 1px solid var(--line); }

ul.checks { list-style: none; padding: 0; margin: 0 0 1em; }
ul.checks li { position: relative; padding: 6px 0 6px 30px; }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--accent2);
  box-shadow: inset 0 0 0 4px var(--surface), 0 0 0 2px var(--accent2);
}

.crumbs { font-size: 0.84rem; color: var(--muted); padding: 20px 0 0; }
.crumbs a { color: var(--muted); }

/* details / FAQ */
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 18px; margin-bottom: 12px;
}
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 700; padding: 14px 0; list-style: none; }
.faq summary::marker { content: ""; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: 14px; color: var(--muted); }

/* ---------- Quote form ---------- */
.quote-band { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
.quote-band .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; padding-block: 44px; }
.quote-band h2, .quote-band .eyebrow { color: #fff; }
.quote-band .eyebrow::before { background: var(--accent2); }
.quote-band p { color: rgba(255, 255, 255, 0.9); }
@media (max-width: 820px) { .quote-band .wrap { grid-template-columns: 1fr; } }

.lead-form { background: var(--surface); color: var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-grid { grid-template-columns: 1fr; } }
.lead-form label { display: block; font-family: var(--display); font-weight: 700; font-size: 0.82rem; margin-bottom: 14px; color: var(--ink); }
.lead-form input, .lead-form textarea {
  width: 100%; margin-top: 6px; padding: 11px 13px; font: inherit;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink);
}
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.hp-wrap { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 12px 0 0; }
.lead-form.is-success { outline: 2px solid var(--accent2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e6efec; margin-top: 30px; }
.site-footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; padding-block: 40px; }
.site-footer h4 { color: #fff; margin-bottom: 0.6em; }
.site-footer a { color: #bcd4cd; text-decoration: none; display: block; padding: 3px 0; }
.site-footer a:hover { color: var(--accent2); }
.site-footer .brand-mark { margin-bottom: 12px; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.12); text-align: center; padding: 16px; font-size: 0.8rem; color: #93aca4; }
@media (max-width: 700px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } }

.prose p { max-width: 68ch; }
.prose h2 { margin-top: 1.4em; }
.lead-lg { font-size: 1.1rem; color: var(--muted); }
