/* V. Clay Salon — site stylesheet */

:root {
  --charcoal: #1c1a19;
  --charcoal-soft: #2a2624;
  --cream: #faf6f2;
  --cream-deep: #f0e6dc;
  --gold: #b8925a;
  --gold-deep: #9c7a48;
  --ink: #2a2422;
  --muted: #6b6058;
  --radius: 10px;
  --max-width: 1120px;
  --shadow: 0 8px 24px rgba(28, 26, 25, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.3em; }

p { margin: 0 0 1em; color: var(--ink); }

a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Header / Nav */
header.site-header {
  background: var(--charcoal);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-link { color: var(--cream); font-size: 1.4rem; letter-spacing: 0.3px; }
.brand-link:hover { text-decoration: none; color: var(--gold); }
.brand-tag { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--cream-deep);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
nav.main-nav a:hover, nav.main-nav a[aria-current="page"] { color: var(--gold); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--cream);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.header-call {
  display: inline-block;
  margin-left: 20px;
  background: var(--gold);
  color: var(--charcoal) !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-call:hover { background: var(--gold-deep); text-decoration: none; }

@media (max-width: 780px) {
  nav.main-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  nav.main-nav a { display: block; padding: 12px 4px; border-top: 1px solid rgba(250,246,242,0.1); }
  .nav-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .header-call { margin-left: 0; font-size: 0.8rem; padding: 8px 12px; }
}

@media (max-width: 400px) {
  .header-call { font-size: 0.72rem; padding: 7px 10px; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, #100e0d 100%);
  color: var(--cream);
  padding: 64px 0 56px;
  text-align: center;
}
.hero h1 { color: var(--cream); font-size: clamp(2.6rem, 7vw, 4.4rem); }
.hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.hero p.lede { color: var(--cream-deep); max-width: 640px; margin: 0 auto 28px; font-size: 1.08rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  cursor: pointer;
  border: 2px solid var(--gold);
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--cream); }
.btn-ghost:hover { background: rgba(250,246,242,0.08); text-decoration: none; }
.btn-dark { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-dark:hover { background: var(--charcoal); color: var(--cream); text-decoration: none; }

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--cream-deep); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.section-head p { color: var(--muted); }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(28,26,25,0.06);
}

/* Reviews */
.review-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 1.1rem; }
.review-quote { font-style: italic; margin-bottom: 14px; }
.review-attr { font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.review-source { font-size: 0.82rem; color: var(--muted); }

.reviews-cta { text-align: center; margin-top: 34px; }
.review-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

/* Placeholder image blocks */
.ph-block {
  background: repeating-linear-gradient(135deg, var(--cream-deep), var(--cream-deep) 10px, #fff 10px, #fff 20px);
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gold-deep);
  font-weight: 700;
  padding: 20px;
  font-size: 0.95rem;
}
.ph-hero {
  min-height: 320px;
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.notice {
  background: #fff8e8;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 28px;
}
.notice strong { color: var(--gold-deep); }

/* Services table */
.svc-category { margin-bottom: 34px; }
.svc-category h3 { border-bottom: 2px solid var(--gold); padding-bottom: 8px; margin-bottom: 14px; }
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(28,26,25,0.12);
}
.svc-list li .svc-price { color: var(--gold-deep); font-weight: 700; white-space: nowrap; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(28,26,25,0.08); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-actions { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }

/* Social row */
.social-row { display: flex; gap: 14px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream) !important;
  font-weight: 600;
  font-size: 0.92rem;
}
.social-pill:hover { background: var(--gold-deep); text-decoration: none; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { margin-bottom: 22px; }
.info-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.info-row p { margin: 0; color: var(--ink); }

form.contact-form { display: grid; gap: 14px; }
form.contact-form label { font-weight: 600; font-size: 0.9rem; display: block; margin-bottom: 4px; }
form.contact-form input, form.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid rgba(28,26,25,0.2);
  font-family: inherit;
  font-size: 0.95rem;
}

/* Footer */
footer.site-footer {
  background: var(--charcoal);
  color: var(--cream-deep);
  padding: 44px 0 28px;
  margin-top: 40px;
}
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}
@media (max-width: 780px) { footer.site-footer .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h3 { color: var(--cream); font-size: 1rem; font-family: 'Source Sans 3', sans-serif; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
footer.site-footer p { color: var(--cream-deep); }
footer.site-footer a { color: var(--cream-deep); }
footer.site-footer a:hover { color: var(--gold); }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(250,246,242,0.15); padding-top: 18px; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 32px; }
