:root {
  --cream: #FAF7F2;
  --warm-white: #F5F0E8;
  --copper: #B5563E;
  --copper-dark: #8C3F2C;
  --copper-light: #D4856E;
  --ink: #2A2118;
  --ink-soft: #5C4F42;
  --stone: #A89A8C;
  --stone-light: #D6CEC4;
  --gold: #C9A84C;
  --font-display: 'Cormorant', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'DM Mono', monospace;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.anim-delay-1 { animation-delay: 0.1s !important; }
.anim-delay-2 { animation-delay: 0.2s !important; }
.anim-delay-3 { animation-delay: 0.3s !important; }
.anim-delay-4 { animation-delay: 0.4s !important; }
.anim-delay-5 { animation-delay: 0.5s !important; }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--stone-light);
  padding: 0.75rem 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: -0.02em;
}
.logo span { color: var(--copper); }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-accent); font-size: 0.85rem; color: var(--ink);
  text-decoration: none; padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--ink); border-radius: 100px; transition: all 0.3s;
}
.header-phone:hover { background: var(--ink); color: var(--cream); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding: 8rem 0 6rem;
  background: radial-gradient(ellipse at 20% 80%, rgba(181,86,62,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%), var(--cream);
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0; width: 45%; height: 100%;
  background: var(--warm-white); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-eyebrow .line { width: 40px; height: 1.5px; background: var(--copper); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 1.75rem;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.hero h1 em { font-style: italic; color: var(--copper); }
.hero-sub {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--copper); color: #fff; font-weight: 600; font-size: 1rem;
  padding: 1rem 2.25rem; border-radius: 100px; text-decoration: none; transition: all 0.3s;
  animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.45s both;
}
.hero-cta:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(181,86,62,0.25); }
.hero-right { animation: scaleIn 1s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.hero-rating-card {
  background: #fff; border-radius: 20px; padding: 3rem;
  box-shadow: 0 20px 60px rgba(42,33,24,0.06), 0 1px 3px rgba(42,33,24,0.04);
  text-align: center; position: relative;
}
.hero-rating-card::before {
  content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px; background: var(--copper); border-radius: 0 0 3px 3px;
}
.rating-number { font-family: var(--font-display); font-size: 6rem; font-weight: 300; line-height: 1; color: var(--ink); letter-spacing: -0.04em; }
.rating-stars { font-size: 1.5rem; margin: 0.75rem 0; color: var(--gold); letter-spacing: 0.1em; }
.rating-count { font-family: var(--font-accent); font-size: 0.8rem; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-quote { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--stone-light); text-align: left; }
.hero-quote blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--ink-soft); line-height: 1.5; }
.hero-quote cite { display: block; margin-top: 0.75rem; font-family: var(--font-accent); font-size: 0.75rem; font-style: normal; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; }

/* MEET TRAVIS */
.meet-travis { padding: 8rem 0; }
.meet-travis-inner { display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: start; }
.travis-aside { position: sticky; top: 6rem; width: 240px; }
.travis-initial {
  width: 120px; height: 120px; border-radius: 50%; background: var(--warm-white);
  border: 2px solid var(--stone-light); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--copper); margin-bottom: 1.5rem;
}
.travis-meta { font-family: var(--font-accent); font-size: 0.75rem; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; line-height: 2; }
.meet-travis h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 2rem; }
.meet-travis h2 em { font-style: italic; color: var(--copper); }
.travis-text { columns: 2; column-gap: 3rem; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; }
.travis-text p { margin-bottom: 1.25rem; break-inside: avoid; }
.travis-themes { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.theme-tag {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem;
  background: var(--warm-white); border: 1px solid var(--stone-light); border-radius: 100px;
  font-family: var(--font-accent); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
}
.theme-tag .count {
  background: var(--copper); color: #fff; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 0.6rem; font-family: var(--font-body); font-weight: 600;
}

/* SERVICES */
.services { padding: 6rem 0 8rem; background: var(--warm-white); position: relative; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--stone-light), transparent); }
.services-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 4rem; }
.services h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; letter-spacing: -0.02em; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--stone-light); border: 1px solid var(--stone-light); border-radius: 16px; overflow: hidden; }
.service-item { background: var(--cream); padding: 2rem 2.25rem; display: flex; align-items: center; gap: 1.25rem; transition: all 0.3s; }
.service-item:hover { background: #fff; }
.service-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; color: var(--stone-light); min-width: 36px; }
.service-name { font-weight: 500; font-size: 1rem; color: var(--ink); }

/* REVIEWS */
.reviews { padding: 8rem 0; }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews h2 { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 400; letter-spacing: -0.02em; margin-top: 0.75rem; }
.reviews-masonry { columns: 3; column-gap: 1.5rem; }
.review-card {
  break-inside: avoid; margin-bottom: 1.5rem; background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(42,33,24,0.04); transition: all 0.4s; border: 1px solid transparent;
}
.review-card:hover { border-color: var(--stone-light); box-shadow: 0 8px 30px rgba(42,33,24,0.08); transform: translateY(-3px); }
.review-card.featured { background: var(--ink); color: var(--cream); padding: 2.5rem; }
.review-card.featured .review-text { color: rgba(250,247,242,0.85); font-size: 1.2rem; }
.review-card.featured .review-author { color: var(--copper-light); }
.review-card.featured .review-time { color: rgba(250,247,242,0.4); }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.review-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.6; color: var(--ink-soft); margin-bottom: 1.25rem; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.review-time { font-family: var(--font-accent); font-size: 0.7rem; color: var(--stone); margin-top: 0.25rem; letter-spacing: 0.04em; }

/* PULL QUOTE */
.pull-quote { padding: 6rem 0; background: var(--warm-white); text-align: center; }
.pull-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400; font-style: italic; line-height: 1.35; color: var(--ink);
  max-width: 800px; margin: 0 auto; letter-spacing: -0.01em;
}
.pull-quote blockquote::before { content: '\201C'; display: block; font-size: 5rem; line-height: 1; color: var(--copper); font-style: normal; margin-bottom: 0.5rem; }
.pull-quote cite { display: block; margin-top: 1.5rem; font-family: var(--font-accent); font-size: 0.8rem; font-style: normal; color: var(--stone); letter-spacing: 0.1em; text-transform: uppercase; }

/* HOURS & CONTACT */
.hours { padding: 6rem 0; }
.hours-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.hours h2 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.hours-subtitle { color: var(--stone); font-size: 0.95rem; margin-bottom: 2rem; }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--stone-light); font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--ink-soft); font-family: var(--font-accent); font-size: 0.85rem; }
.hours-closed { color: var(--stone); }
.contact-card { background: var(--ink); color: var(--cream); border-radius: 20px; padding: 3rem; }
.contact-card .label { color: var(--copper-light); margin-bottom: 1.5rem; }
.contact-card h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin-bottom: 2rem; }
.contact-phone { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--copper-light); text-decoration: none; margin-bottom: 1.5rem; transition: color 0.3s; }
.contact-phone:hover { color: var(--gold); }
.contact-address { font-size: 0.9rem; color: rgba(250,247,242,0.6); line-height: 1.6; }
.contact-map { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; font-family: var(--font-accent); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper-light); text-decoration: none; transition: color 0.3s; }
.contact-map:hover { color: var(--gold); }

/* FOOTER */
.site-footer { padding: 3rem 0; border-top: 1px solid var(--stone-light); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.footer-brand span { color: var(--copper); }
.footer-copy { font-family: var(--font-accent); font-size: 0.7rem; color: var(--stone); letter-spacing: 0.06em; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero::before { display: none; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .meet-travis-inner { grid-template-columns: 1fr; gap: 2rem; }
  .travis-aside { position: static; width: auto; display: flex; align-items: center; gap: 1.5rem; }
  .travis-initial { width: 80px; height: 80px; font-size: 2rem; margin-bottom: 0; }
  .travis-text { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-masonry { columns: 2; }
  .hours-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-header { flex-direction: column; align-items: start; gap: 1rem; }
}
@media (max-width: 600px) {
  .reviews-masonry { columns: 1; }
  .hero h1 { font-size: 2.5rem; }
  .hero-rating-card { padding: 2rem; }
  .rating-number { font-size: 4rem; }
  .footer-inner { flex-direction: column; gap: 0.75rem; }
}
