/* ─────────────────────────────────────────────
   Hair by Hoyt — Main Stylesheet
   Earthy, clean, inviting
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5F0E8;
  --warm-white:  #FAF7F2;
  --tan:         #D9C9AE;
  --clay:        #B5906A;
  --bark:        #7A5C42;
  --earth:       #4A3728;
  --charcoal:    #2C2419;
  --text:        #3A2D22;
  --text-muted:  #7A6A58;
  --border:      #D9C9AE;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius: 3px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--warm-white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
a { color: inherit; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--earth);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

.nav-links .nav-book {
  background: var(--clay);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  transition: background 0.2s;
}

.nav-links .nav-book:hover { background: var(--bark); color: var(--cream); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--tan);
  transition: background 0.2s;
}

.nav-toggle:hover span { background: var(--cream); }

/* ─────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; }

section { padding: 6rem 2rem; }

.bg-cream      { background: var(--cream); }
.bg-warm-white { background: var(--warm-white); }
.bg-earth      { background: var(--earth); }
.bg-bark       { background: var(--bark); }
.bg-charcoal   { background: var(--charcoal); }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.eyebrow--light { color: var(--tan); }
.eyebrow--light::before { background: var(--tan); }

h1.display,
h2.display {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--earth);
  margin-bottom: 1.25rem;
}

h1.display { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2.display { font-size: clamp(1.9rem, 3.5vw, 3rem); }

h1.display em,
h2.display em {
  font-style: italic;
  color: var(--bark);
}

/* On dark backgrounds */
.on-dark h1.display,
.on-dark h2.display { color: var(--cream); }
.on-dark h1.display em,
.on-dark h2.display em { color: var(--tan); }
.on-dark .eyebrow { color: var(--clay); }
.on-dark .eyebrow::before { background: var(--clay); }
.on-dark p { color: var(--tan); }

h3.serif {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 0.6rem;
}

p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 580px;
}

p.body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--clay);
  color: var(--cream);
}
.btn-primary:hover { background: var(--bark); color: var(--cream); }

.btn-dark {
  background: var(--earth);
  color: var(--cream);
}
.btn-dark:hover { background: var(--charcoal); color: var(--cream); }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tan);
  border-bottom: 1px solid var(--bark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--clay); }

/* ─────────────────────────────────────────────
   IMAGE PLACEHOLDER
───────────────────────────────────────────── */
.img-ph {
  width: 100%;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bark) 0%, var(--clay) 60%, var(--tan) 100%);
}

.img-ph::before {
  content: '';
  display: block;
  padding-top: 66%;
}

.img-ph span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.1em;
}

.img-ph--tall::before  { padding-top: 120%; }
.img-ph--short::before { padding-top: 48%; }
.img-ph--square::before { padding-top: 100%; }

/* ─────────────────────────────────────────────
   HERO (Homepage)
───────────────────────────────────────────── */
.hero {
  background: var(--earth);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(181,144,106,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text {
  padding: 6rem 5rem 6rem 6rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clay);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--tan); }

.hero-sub {
  font-size: 1rem;
  color: var(--tan);
  margin-bottom: 2.5rem;
  max-width: 380px;
  line-height: 1.85;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.hero-visual {
  height: 100%;
  min-height: 90vh;
}

.hero-visual .img-ph {
  height: 100%;
  min-height: 90vh;
  border-radius: 0;
}
.hero-visual .img-ph::before { padding-top: 0; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--earth);
  color: var(--cream);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
}

.page-hero .eyebrow { justify-content: center; color: var(--clay); }
.page-hero .eyebrow::before { display: none; }

.page-hero h1.display { color: var(--cream); margin-bottom: 1rem; }
.page-hero h1.display em { color: var(--tan); }

.page-hero p {
  color: var(--tan);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.85;
}

/* ─────────────────────────────────────────────
   INTRO / ABOUT STRIP
───────────────────────────────────────────── */
.intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* ─────────────────────────────────────────────
   STAT / FACT CARDS
───────────────────────────────────────────── */
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.fact-card .num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fact-card .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   SERVICES GRID (homepage 3-col)
───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--earth);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--warm-white); }

.service-card-bar {
  width: 40px;
  height: 2px;
  background: var(--clay);
  margin-bottom: 1.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ─────────────────────────────────────────────
   TAG LIST (service pills)
───────────────────────────────────────────── */
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag-list li {
  font-size: 0.78rem;
  color: var(--bark);
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
}

/* Dash list (simpler inline) */
.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dash-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}

.dash-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--clay);
}

/* ─────────────────────────────────────────────
   APPROACH / PHILOSOPHY
───────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}

.pillar {
  border-left: 2px solid var(--clay);
  padding-left: 1.5rem;
}

.pillar h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--tan);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────
   ALTERNATING SERVICE SECTIONS
───────────────────────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row-text p.body { margin-bottom: 1rem; }

/* ─────────────────────────────────────────────
   ADDRESS / CONTACT BLOCK
───────────────────────────────────────────── */
.address-block {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.address-block strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}

.address-block p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-item .c-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  min-width: 48px;
}

/* ─────────────────────────────────────────────
   MAP PLACEHOLDER
───────────────────────────────────────────── */
.map-ph {
  background: linear-gradient(150deg, var(--tan) 0%, var(--clay) 100%);
  border-radius: var(--radius);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.map-pin-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--earth);
  border: 3px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin-circle svg {
  width: 20px;
  height: 20px;
  fill: var(--cream);
}

.map-pin-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--earth);
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   AREAS SERVED
───────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.area-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.area-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.area-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.area-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
}

.area-list li.primary { color: var(--text); font-weight: 400; }
.area-list li.primary::before { background: var(--clay); }

.area-list li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.area-list li a:hover { color: var(--bark); }

/* City cards grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.city-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: block;
}

.city-card:hover {
  background: var(--warm-white);
  border-color: var(--clay);
}

.city-card .city-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--earth);
  margin-bottom: 0.2rem;
}

.city-card .city-state {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.city-card .city-arrow {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--clay);
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────
   WHY CHOOSE US — CHECK LIST
───────────────────────────────────────────── */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

/* ─────────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section p.lead {
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: var(--tan);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(217,201,174,0.15);
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--tan);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--cream); }

.footer-col p {
  font-size: 0.85rem;
  color: var(--tan);
  line-height: 1.9;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   DIVIDERS
───────────────────────────────────────────── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { padding: 5rem 2rem 4rem; }

  .intro .container { grid-template-columns: 1fr; gap: 3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }

  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }

  .service-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row.reverse { direction: ltr; }

  .areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 4rem 1.5rem 3.5rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--earth);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(217,201,174,0.15);
  }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .fact-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .fact-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ─────────────────────────────────────────────
   NAV DROPDOWN
───────────────────────────────────────────── */
.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  z-index: 200;
  min-width: 180px;
}

.nav-has-dropdown .dropdown-inner {
  background: var(--charcoal);
  border: 1px solid rgba(217,201,174,0.18);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.5rem 0;
  white-space: nowrap;
  position: relative;
}

.nav-has-dropdown .dropdown-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(217,201,174,0.18);
}

.nav-has-dropdown .dropdown-inner::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--charcoal);
}

.nav-has-dropdown:hover .dropdown,
.nav-has-dropdown.open .dropdown {
  display: block;
}

.nav-has-dropdown .dropdown-inner li {
  padding: 0;
  position: static;
}

.nav-has-dropdown .dropdown-inner a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--tan);
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  text-align: left;
}

.nav-has-dropdown .dropdown-inner a:hover {
  background: rgba(245,240,232,0.07);
  color: var(--cream);
}

.dropdown-divider {
  height: 1px;
  background: rgba(217,201,174,0.12);
  margin: 0.4rem 0;
}

/* Caret indicator */
.has-dropdown::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.6;
  vertical-align: middle;
}
