/* Stephen's No Sweat — colors matched to official logo (black, red flame, cyan snowflake) */
:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --paper: #ffffff;
  --paper-2: #f4f7fb;
  --paper-3: #e8eef5;
  --line: rgba(10, 10, 10, 0.1);
  --line-strong: rgba(10, 10, 10, 0.16);
  --text: #121417;
  --muted: #4b5563;
  --dim: #6b7280;
  --cool: #00aef0;       /* logo snowflake blue */
  --cool-2: #0090c8;
  --cool-soft: #e0f6ff;
  --heat: #e30613;       /* logo flame red */
  --heat-2: #ff1f2c;
  --heat-soft: #ffe8ea;
  --ok: #059669;
  --radius: 16px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --shadow: 0 18px 40px rgba(10, 10, 10, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(0, 174, 240, 0.08), transparent 55%),
    radial-gradient(800px 400px at 100% 0%, rgba(227, 6, 19, 0.06), transparent 50%),
    var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--cool-2); text-decoration: none; }
a:hover { color: var(--heat); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.header-inner { padding: 0.75rem 0 0; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  height: 128px;
  width: auto;
  max-width: min(360px, 70vw);
  object-fit: contain;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--cool-2);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Keep phone numbers on one line (avoid wrap mid-number) */
a[href^="tel:"] {
  white-space: nowrap;
}

.phone-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.65rem 1.2rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--heat-2), var(--heat));
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(227, 6, 19, 0.28);
  white-space: nowrap;
}

.phone-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(227, 6, 19, 0.38);
}

.phone-cta .phone-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.phone-cta .phone-num {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-wrap {
  display: flex;
  padding: 0.4rem 0 0.75rem;
  border-top: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: var(--paper-2);
}

.nav a.active {
  color: var(--cool-2);
  box-shadow: inset 0 0 0 1px rgba(0, 174, 240, 0.45);
  background: var(--cool-soft);
}

.nav-cta { margin-left: auto; }

.menu-btn {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--paper-2);
  color: var(--ink);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.12s ease;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, #1ad0ff, var(--cool-2));
  color: #00344d !important;
  box-shadow: 0 10px 24px rgba(0, 144, 200, 0.28);
}

.btn-heat {
  background: linear-gradient(135deg, var(--heat-2), var(--heat));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.28);
}

.btn-ghost {
  background: #fff;
  color: var(--ink) !important;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.btn-ghost:hover {
  background: var(--paper-2);
  color: var(--ink) !important;
}

.btn-lg { padding: 0.95rem 1.4rem; font-size: 1rem; }

/* Hero */
.hero { padding: 3rem 0 2.5rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cool-2);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cool), var(--heat));
  border-radius: 99px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, var(--cool-2), var(--ink) 45%, var(--heat));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: start;
}

.hero-visual {
  position: relative;
  height: 110px;
  overflow: hidden;
  background: var(--paper-3);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.35));
}

.hero-card-body { padding: 0.85rem 1.1rem 1rem; }
.hero-card-body h2 { margin: 0 0 0.25rem; font-size: 1.05rem; color: var(--ink); }
.hero-card-body p { margin: 0 0 0.55rem; color: var(--muted); font-size: 0.86rem; }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.contact-list li {
  display: flex;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.contact-list strong { color: var(--ink); }
.contact-list a { color: var(--cool-2); font-weight: 700; }
.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ok);
  margin-top: 0.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.12);
}

/* Sections */
section { padding: 3.5rem 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--heat);
  margin-bottom: 0.5rem;
}

.section-head { margin-bottom: 1.75rem; max-width: 40rem; }
.section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-head p { margin: 0; color: var(--muted); }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.3rem 1.25rem 1.4rem;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  border-color: rgba(0, 174, 240, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 144, 200, 0.1);
}

.card-photo {
  margin: -1.3rem -1.25rem 1rem;
  height: 140px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--line);
}

.card-photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .card-photo img { transform: scale(1.05); }

.card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; color: var(--ink); }
.card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.split-copy { padding: 1.85rem; }
.split-copy h2 { margin: 0 0 0.7rem; font-size: clamp(1.5rem, 2.5vw, 1.95rem); color: var(--ink); }
.split-copy p { color: var(--muted); margin: 0 0 0.9rem; }

.checklist {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
}

.checklist li::before {
  content: "✓";
  color: var(--ok);
  font-weight: 800;
}

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--paper-3);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.cta-band { padding: 0 0 3.5rem; }

.cta-inner {
  padding: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 180px at 0% 0%, rgba(0, 174, 240, 0.14), transparent 55%),
    radial-gradient(400px 160px at 100% 100%, rgba(227, 6, 19, 0.1), transparent 50%),
    #fff;
  box-shadow: var(--shadow);
}

.cta-inner h2 { margin: 0 0 0.35rem; font-size: 1.5rem; color: var(--ink); }
.cta-inner p { margin: 0; color: var(--muted); max-width: 34rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.page-hero {
  padding: 2.75rem 0 1.75rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cool-soft), transparent);
}

.page-hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.content-block { padding: 3rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.info-card { padding: 1.4rem; }
.info-card h3 { margin: 0 0 0.7rem; font-size: 1.08rem; color: var(--ink); }
.info-card p, .info-card li { color: var(--muted); font-size: 0.94rem; }
.info-card ul { margin: 0; padding-left: 1.1rem; }
.info-card li + li { margin-top: 0.35rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 600;
}

.form-grid { display: grid; gap: 0.85rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }

label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.35rem;
}

input, textarea, select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  padding: 0.72rem 0.85rem;
  font: inherit;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(0, 174, 240, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 174, 240, 0.15);
}

textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--dim); margin-top: 0.7rem; }

/* Netlify honeypot — hide from real users */
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Owner quote */
.owner-block {
  padding: 1.75rem 1.85rem;
  position: relative;
  overflow: hidden;
}

.owner-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--cool), var(--heat));
}

.owner-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heat);
  margin: 0 0 0.65rem;
}

.owner-block h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  color: var(--ink);
}

.owner-role {
  margin: 0 0 1rem;
  color: var(--cool-2);
  font-weight: 700;
  font-size: 0.95rem;
}

.owner-block p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 48rem;
}

.owner-block p:last-child {
  margin-bottom: 0;
}

.owner-quote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: var(--cool-soft);
  border: 1px solid rgba(0, 174, 240, 0.25);
  color: var(--ink);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.45;
}

.owner-quote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--cool), var(--heat)) 1;
  padding: 2.5rem 0 1.6rem;
  background: var(--ink);
  margin-top: 1rem;
  color: #e5e7eb;
}

.site-footer a { color: #93c5fd; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}

.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text span { color: var(--cool); }

.footer-brand p {
  color: #9ca3af;
  font-size: 0.94rem;
  max-width: 22rem;
  margin: 0.7rem 0 0;
}

.footer-col h4 {
  margin: 0 0 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.footer-col a,
.footer-col p {
  display: block;
  color: #d1d5db;
  margin: 0 0 0.4rem;
  font-size: 0.94rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Social links — Facebook “f” icon */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

.social-link::before {
  content: "";
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4v-8.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 13.5h2.5l1-4H14v-2c0-1.03 0-2 2-2h1.5V2.14c-.326-.043-1.557-.14-2.857-.14C11.928 2 10 3.657 10 6.7v2.8H7v4h3V22h4v-8.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* On light panels, use Facebook blue for the icon + label */
.contact-list .social-link,
.info-card .social-link,
.social-link--card {
  color: #1877f2;
}

.contact-list .social-link:hover,
.info-card .social-link:hover,
.social-link--card:hover {
  color: #0d5fbf;
}

.social-link--card {
  font-size: 1rem;
}

@media (max-width: 900px) {
  .hero-grid, .split, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .menu-btn { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
    z-index: 60;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a, .nav-cta { width: 100%; justify-content: center; margin: 0; }
  .nav-wrap { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .phone-cta {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.95rem;
  }
  .phone-cta .phone-label { display: none; }
  .phone-cta .phone-num { font-size: 0.98rem; }
}

@media (max-width: 560px) {
  .hero { padding-top: 2.25rem; }
  .brand-logo { height: 96px; }
}
