@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f8f6f2;
  --bg-warm: #f3efe8;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --text: #2d2d2d;
  --text-mid: #5a5a5a;
  --text-light: #8a8a8a;
  --teal: #1a7a6d;
  --teal-light: #22a08e;
  --teal-pale: #e8f5f2;
  --teal-mist: #d4ede8;
  --gold: #c9962b;
  --star: #e8a832;
  --border: #e5e0d8;
  --shadow: rgba(28,28,28,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* ─── TOPBAR ─── */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.topbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.topbar-brand span { color: var(--teal); }
.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.topbar-phone:hover { color: var(--teal-light); }

/* ─── HERO ─── */
.hero {
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--teal-pale) 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-pale);
  color: var(--teal);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
}
.hero-rating .stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: white;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(26,122,109,0.25);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,122,109,0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--text);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ─── SECTIONS ─── */
.section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
  border-color: var(--teal-mist);
}
.service-card .icon {
  width: 40px; height: 40px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.service-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── REVIEWS ─── */
.reviews-section { background: var(--bg-warm); }
.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}
.big-rating {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.big-rating-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}
.big-stars { color: var(--star); font-size: 1.6rem; letter-spacing: 3px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}
.review-card .r-stars { color: var(--star); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 0.95rem; }
.review-card .r-text {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.review-card .r-author { font-weight: 600; color: var(--charcoal); font-size: 0.9rem; }
.review-card .r-time { color: var(--text-light); font-size: 0.8rem; margin-top: 0.15rem; }

/* ─── THEMES (Why Travis) ─── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.theme-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.25s ease;
}
.theme-chip:hover { border-color: var(--teal-mist); }
.theme-count {
  background: var(--teal-pale);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.theme-label { font-weight: 500; color: var(--text); font-size: 0.9rem; }

/* ─── HOURS ─── */
.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--text); }
.hours-row .time { color: var(--text-mid); }
.hours-row .closed { color: var(--text-light); font-style: italic; }

/* ─── CONTACT ─── */
.contact-section {
  background: var(--teal-pale);
  text-align: center;
}
.contact-section .section-title { color: var(--charcoal); }
.contact-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--teal);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 2px solid var(--teal);
  border-radius: 16px;
  transition: all 0.3s ease;
  background: var(--white);
}
.contact-phone-big:hover {
  background: var(--teal);
  color: white;
}
.contact-address {
  color: var(--text-mid);
  margin-top: 1.2rem;
  font-size: 0.95rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label, .hero h1, .hero-sub, .hero-rating, .hero-actions {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}
.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.16s; }
.hero-rating { animation-delay: 0.24s; }
.hero-actions { animation-delay: 0.32s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .themes-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .topbar { padding: 0.8rem 1.2rem; }
}
@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem 2.5rem; }
  .section { padding: 2.5rem 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .contact-phone-big { font-size: 1.3rem; padding: 0.8rem 1.5rem; }
}
