/* Salt Lake Deep Tissue Massage - Clinical, professional SEO site */
:root {
  --primary: #1a365d; /* deep navy */
  --primary-light: #2c5282;
  --accent: #e67e22; /* orange for CTAs */
  --accent-hover: #d35400;
  --bg: #f8fafc;
  --bg-alt: #edf2f7;
  --text: #1a202c;
  --text-muted: #4a5568;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #276749;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}

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

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.3;
}

.logo span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

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

.nav a, .nav .dropdown > span {
  padding: 0.5rem 0.75rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
}

.nav a:hover, .nav .dropdown:hover > span {
  background: var(--bg-alt);
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent) !important;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white) !important;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem 1.25rem;
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero .value {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero .trust-line {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 1.25rem;
}

.hero .btn {
  margin: 0.5rem;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-alt);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.trust-bar span {
  display: inline-block;
  margin: 0.25rem 0.75rem;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .booking-card {
    order: -1;
  }
}

/* Content */
.content h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.content h3 {
  font-size: 1.25rem;
  color: var(--primary-light);
  margin: 1.5rem 0 0.75rem;
}

.content p {
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin: 0 0 1.25rem 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
}

.content strong {
  color: var(--text);
}

/* Booking card */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5rem;
}

.booking-card h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.booking-card p {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.booking-card .price {
  font-weight: 600;
  margin: 1rem 0;
}

.booking-card .note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.service-card a {
  font-weight: 600;
}

/* Why / features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.feature {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.feature h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

/* CTA bands */
.cta-band {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band .btn {
  margin: 0.5rem;
}

.dark-cta {
  background: #0f172a;
  color: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
}

.dark-cta a {
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  padding: 3rem 1.25rem 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.site-footer a {
  color: rgba(255,255,255,0.85);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-brand {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb span {
  margin: 0 0.35rem;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: var(--bg-alt);
}

.faq-item .answer {
  padding: 0 1.25rem 1.25rem;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--white);
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-alt);
  font-weight: 600;
}

/* Confirm placeholders */
.confirm {
  background: #fef3c7;
  color: #92400e;
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.9em;
  font-weight: 500;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
}