/* ============================================================
   CHAD ROOKSTOOL SALON — Dallas Luxury Hair Atelier
   ============================================================ */

:root {
  --ink: #141210;
  --ink-soft: #1e1b17;
  --cream: #f5f0e8;
  --cream-deep: #ebe4d8;
  --gold: #b8975a;
  --gold-light: #d4b878;
  --muted: #8a8378;
  --muted-dark: #6b645c;
  --white: #ffffff;
  --line: rgba(184, 151, 90, 0.25);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Typography ---------- */
.serif {
  font-family: 'Cormorant', 'Times New Roman', serif;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: 'Jost', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.eyebrow.centered::before {
  display: none;
}

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

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(20, 18, 16, 0.96);
  padding: 1rem 2rem;
  box-shadow: 0 1px 0 rgba(184, 151, 90, 0.2);
}

.site-header a {
  color: var(--cream);
}

.logo {
  font-family: 'Cormorant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.logo span {
  color: var(--gold);
}

/* desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 300;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold) !important;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
}

/* mobile toggle */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px auto;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.55) 0%, rgba(20, 18, 16, 0.4) 40%, rgba(20, 18, 16, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  width: 100%;
  padding: 0 2rem;
}

.hero-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-content .eyebrow::before {
  background: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: rgba(245, 240, 232, 0.82);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border-radius: 0;
}

.btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-solid {
  background: var(--gold);
  color: var(--ink);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-light {
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--cream);
}

.btn-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION INTRO (shared)
   ============================================================ */
.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-intro .eyebrow {
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  margin-top: 1.2rem;
  font-size: 1rem;
  color: var(--muted-dark);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   WELCOME / ABOUT
   ============================================================ */
.welcome {
  padding: 7rem 0;
  background: var(--cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-text .eyebrow {
  margin-bottom: 1.5rem;
}

.welcome-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.8rem;
  line-height: 1.18;
}

.welcome-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.welcome-text p {
  color: var(--muted-dark);
  margin-bottom: 1.3rem;
  font-size: 1.02rem;
}

.welcome-signature {
  margin-top: 2rem;
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.welcome-image {
  position: relative;
}

.welcome-image .img-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px rgba(20, 18, 16, 0.18);
}

.welcome-image .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-image .img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 0;
  background: var(--ink);
  color: var(--cream);
}

.services .section-title {
  color: var(--cream);
}

.services .section-desc {
  color: rgba(245, 240, 232, 0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.service-card {
  padding: 2.8rem 2.2rem;
  border: 1px solid rgba(184, 151, 90, 0.2);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover {
  border-color: rgba(184, 151, 90, 0.5);
  background: rgba(184, 151, 90, 0.04);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-num {
  font-family: 'Cormorant', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--cream);
}

.service-card p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
}

.service-card .service-price {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
}

/* ============================================================
   WORK GALLERY
   ============================================================ */
.work {
  padding: 7rem 0;
  background: var(--cream);
}

.work .container {
  max-width: 1200px;
}

/* ============================================================
   EXPERIENCE / QUOTE
   ============================================================ */
.experience {
  padding: 8rem 0;
  background: var(--ink-soft);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(184, 151, 90, 0.08);
  border-radius: 50%;
}

.experience::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(184, 151, 90, 0.06);
  border-radius: 50%;
}

.experience .container-narrow {
  position: relative;
  z-index: 2;
}

.experience .eyebrow {
  margin-bottom: 2rem;
  color: var(--gold);
}

.experience .eyebrow::before {
  background: var(--gold);
}

.experience blockquote {
  font-family: 'Cormorant', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin: 0 auto;
  max-width: 720px;
}

.experience blockquote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.experience .quote-author {
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.experience .quote-author span {
  display: block;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 0.3rem;
  letter-spacing: 0.2em;
}

/* ============================================================
   INFO BAR (hours/location)
   ============================================================ */
.info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: none;
}

.info-item .info-icon {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.info-item h4 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 0.85rem;
  color: var(--muted-dark);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.18;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.contact-info p {
  color: var(--muted-dark);
  margin-bottom: 2rem;
}

.contact-detail {
  margin-bottom: 1.8rem;
}

.contact-detail .label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-detail .value {
  font-family: 'Cormorant', serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.contact-detail a {
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(20, 18, 16, 0.08);
}

.form-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease;
  border-radius: 0;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

#formStatus {
  margin-top: 1.2rem;
}

#formStatus p {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-col a {
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(184, 151, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 151, 90, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  opacity: 0.5;
  font-weight: 300;
  color: inherit;
  text-decoration: none;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* ============================================================
   STYLISTS PAGE
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .page-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 16, 0.6) 0%, rgba(20, 18, 16, 0.75) 100%);
  z-index: 1;
}

.page-hero .page-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 6rem 2rem 2rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero .eyebrow {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.page-hero .eyebrow::before {
  background: var(--gold-light);
}

/* Stylists grid */
.stylists-section {
  padding: 7rem 0;
  background: var(--cream);
}

.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.stylist-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(20, 18, 16, 0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.stylist-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 18, 16, 0.15);
}

.stylist-card .img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.stylist-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.stylist-card:hover .img-wrap img {
  transform: scale(1.05);
}

.stylist-card .img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 18, 16, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stylist-card:hover .img-wrap::after {
  opacity: 1;
}

.stylist-card .card-body {
  padding: 1.8rem 1.6rem;
}

.stylist-card .card-body .role {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.stylist-card .card-body h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.stylist-card .card-body p {
  font-size: 0.88rem;
  color: var(--muted-dark);
  line-height: 1.65;
}

.stylist-card .specialties {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stylist-card .specialties span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--muted-dark);
}

/* Philosophy section on stylists page */
.stylist-philosophy {
  padding: 7rem 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.stylist-philosophy .eyebrow {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.stylist-philosophy .eyebrow::before {
  background: var(--gold);
}

.stylist-philosophy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.stylist-philosophy h2 em {
  font-style: italic;
  color: var(--gold);
}

.stylist-philosophy p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(245, 240, 232, 0.6);
  font-size: 1.02rem;
}

/* CTA banner */
.cta-banner {
  padding: 5rem 0;
  background: var(--cream-deep);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-banner h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-banner p {
  color: var(--muted-dark);
  margin-bottom: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .welcome-image {
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stylists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-bar {
    grid-template-columns: 1fr;
  }
  .info-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .info-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 18, 16, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .nav-cta {
    border-color: var(--gold);
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    padding: 1.2rem 1.5rem;
  }

  .site-header.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .container,
  .container-narrow {
    padding: 0 1.5rem;
  }

  .welcome,
  .services,
  .work,
  .experience,
  .contact,
  .stylists-section,
  .stylist-philosophy,
  .cta-banner {
    padding: 4.5rem 0;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group .btn {
    width: 260px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stylists-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .welcome-image .img-accent {
    width: 80px;
    height: 80px;
  }

  .experience::before {
    width: 400px;
    height: 400px;
  }
  .experience::after {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.1rem;
    letter-spacing: 0.08em;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .scroll-indicator {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
