/* Sean Dineen Sports Massage Therapist — instant-sell landing page */

:root {
  --ink: #14181c;
  --ink-soft: #3a4249;
  --paper: #f7f4ef;
  --paper-dim: #ece7de;
  --accent: #ff5a2b;
  --accent-dark: #d94314;
  --line: #ddd6c9;
  --radius: 10px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(20, 24, 28, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand span { color: var(--accent); }

.topbar nav {
  display: flex;
  gap: 28px;
}

.topbar nav a {
  text-decoration: none;
  color: #e9e6df;
  font-size: 0.92rem;
  font-weight: 500;
}

.topbar nav a:hover { color: var(--accent); }

.topbar .call-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
}

.topbar .call-btn:hover { background: var(--accent-dark); }

.call-btn .short { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(10,12,14,0.72) 0%, rgba(10,12,14,0.55) 40%, rgba(10,12,14,0.85) 100%),
    url('images/hero-massage.jpg');
  background-size: cover;
  background-position: center 20%;
  color: #fff;
}

.hero-content {
  padding-top: 90px;
  max-width: 680px;
  min-width: 0;
  width: 100%;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 90, 43, 0.14);
  border: 1px solid rgba(255, 90, 43, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.hero p.lead {
  font-size: 1.15rem;
  color: #f0ede6;
  margin: 0 0 34px;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.92rem;
  color: #e5e1d8;
}

.hero-meta div { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-width: 0; }

.hero-meta strong { color: #fff; }

/* ---------- Strip ---------- */
.strip {
  background: var(--ink);
  color: #cfd3d6;
  padding: 16px 0;
}

.strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}

.strip span { color: var(--accent); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head .tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0 0 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20,24,28,0.1);
}

.service-card .num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* About / why */
.about {
  background: var(--paper-dim);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  margin: 0 0 18px;
  font-weight: 800;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.03rem;
  margin: 0 0 16px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.98rem;
}

.checklist li::before {
  content: "✓";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin: 0 0 14px;
  font-weight: 800;
}

.cta-band p {
  color: #cfd3d6;
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* Hours & location */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.info-card h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-row span:first-child { font-weight: 600; }
.hours-row span:last-child { color: var(--ink-soft); }

.hours-row.closed span:last-child { color: var(--accent-dark); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 100%;
  min-height: 260px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.contact-line {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  font-size: 0.96rem;
}

.contact-line strong { display: inline-block; width: 90px; color: var(--ink-soft); font-weight: 600; }

/* Footer */
footer {
  background: var(--ink);
  color: #9aa0a6;
  padding: 40px 0;
  text-align: center;
  font-size: 0.86rem;
}

footer .brand { color: #fff; margin-bottom: 10px; }

footer a { color: #cfd3d6; text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .topbar nav { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { aspect-ratio: 16/9; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-meta { gap: 16px 22px; }

  .topbar .container { padding: 0 16px; }
  .brand { font-size: 0.92rem; }
  .topbar .call-btn { padding: 8px 14px; font-size: 0.8rem; }
  .call-btn .full { display: none; }
  .call-btn .short { display: inline; }
}

@media (max-width: 400px) {
  .brand span { display: none; }
}
