/* Riverside Coffee SAMPLE — TapSite founder-clean UK (ink navy + cyan) */
:root {
  --ink: #0B1220;
  --ink-2: #1E293B;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #F8FAFC;
  --bg-soft: #EEF6FB;
  --cyan: #0EA5E9;
  --cyan-deep: #0369A1;
  --cyan-ink: #0C4A6E;
  --white: #fff;
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --banner-h: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-top: var(--banner-h);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: min(100% - 2rem, 40rem);
  margin-inline: auto;
}

/* Permanent SAMPLE banner — non-dismissible */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--banner-h);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.55rem;
  padding: 0.45rem 0.75rem;
  background: var(--ink);
  color: #F8FAFC;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none; /* no close — not interactive chrome */
}
.sample-banner-main { color: #fff; }
.sample-banner-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #94A3B8;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 650;
}
.brand span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.nav {
  display: none;
  gap: 1rem;
  font-size: 0.88rem;
}
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 550;
}
.nav a:hover { color: var(--cyan-deep); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 650;
  white-space: nowrap;
}
.phone-pill:hover { background: var(--cyan-ink); }

.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 2.25rem 0 2rem;
}
.kicker, .eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.85rem, 6.5vw, 2.55rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.lead {
  margin: 0.85rem 0 0;
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 28rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 12px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(3, 105, 161, 0.28);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-ink);
}
.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
}
.pills li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
}

.services, .hours-area, .contact, .publish {
  padding: 2.5rem 0;
}
.services h2, .hours-area h2, .contact h2, .publish h2 {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.015em;
}
.service-grid {
  display: grid;
  gap: 0.85rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.04);
}
.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hours-area { background: #fff; border-block: 1px solid var(--line); }
.hours-grid {
  display: grid;
  gap: 2rem;
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-list li span { color: var(--muted); }
.area-copy { color: var(--ink-2); margin: 0 0 0.65rem; }
.area-note {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 550;
}

.contact-card {
  background: var(--bg-soft);
  border: 1px solid #CFFAFE;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.25rem;
}
.contact-card p { color: var(--ink-2); }
.btn-call { margin-top: 0.35rem; width: 100%; max-width: 20rem; }
.contact-meta {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.publish { padding-bottom: 3rem; }
.publish-card {
  text-align: center;
  background: var(--ink);
  color: #E2E8F0;
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem 1.35rem;
}
.publish-card .eyebrow { color: var(--cyan); }
.publish-card h2 { color: #fff; }
.publish-card p { color: #94A3B8; margin: 0 0 1.15rem; }
.btn-publish {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  color: var(--ink);
  font-weight: 750;
  width: 100%;
  max-width: 22rem;
}
.btn-publish:hover { filter: brightness(1.06); }
.publish-fine {
  margin: 0.85rem 0 0 !important;
  font-size: 0.8rem !important;
  color: #64748B !important;
}

.site-footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 1.75rem 0 calc(1.75rem + env(safe-area-inset-bottom, 0px));
  font-size: 0.85rem;
}
.footer-brand { margin: 0 0 0.45rem; color: #E2E8F0; }
.footer-note { margin: 0 0 0.55rem; line-height: 1.45; }
.footer-note a, .footer-contact a {
  color: #7DD3FC;
  text-decoration: none;
}
.footer-note a:hover, .footer-contact a:hover { text-decoration: underline; }
.footer-contact { margin: 0; }

@media (min-width: 640px) {
  .nav { display: flex; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .hours-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .btn-call, .btn-publish { width: auto; }
  .wrap { width: min(100% - 2.5rem, 44rem); }
}

@media (min-width: 900px) {
  .wrap { width: min(100% - 3rem, 52rem); }
  .hero { padding: 3rem 0 2.5rem; }
}
