/*
Theme Name: Czlstyles Hair Suite
Author: Empirical Edge Inc.
Version: 1.0
*/

:root {
  --czl-primary: #432F24;
  --czl-dark: #1e293b;
  --czl-cream: #faf7f4;
  --czl-accent: #a8826a;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2b2420;
  background-color: var(--czl-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--czl-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }

/* Eyebrow */
.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--czl-accent);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Navbar */
.site-navbar {
  background-color: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(67, 47, 36, 0.06);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.site-navbar .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--czl-primary);
  letter-spacing: -0.01em;
}

.site-navbar .navbar-nav a {
  font-family: 'Inter', sans-serif;
  color: var(--czl-dark);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  transition: color 0.25s ease;
}

.site-navbar .navbar-nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  background-color: var(--czl-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-navbar .navbar-nav a:hover,
.site-navbar .navbar-nav a:focus {
  color: var(--czl-primary);
}

.site-navbar .navbar-nav a:hover::after,
.site-navbar .navbar-nav a.active::after {
  transform: scaleX(1);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #432F24 0%, #5a4030 45%, #1e293b 100%);
  color: #fff;
  padding: clamp(4rem, 11vw, 8rem) 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 130, 106, 0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.hero .lead {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: #e0c3ad;
  position: relative;
  z-index: 1;
}

/* Brand section */
.section-brand {
  width: 100%;
  background: linear-gradient(135deg, var(--czl-primary) 0%, #2e2018 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-brand h1,
.section-brand h2,
.section-brand h3,
.section-brand h4 {
  color: #fff;
}

.section-brand .eyebrow {
  color: #e0c3ad;
}

.section-brand p {
  color: rgba(255, 255, 255, 0.85);
}

/* Cards */
.card {
  border: none;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(67, 47, 36, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(67, 47, 36, 0.16);
}

.card .card-title {
  font-family: 'Playfair Display', serif;
  color: var(--czl-primary);
}

.card .card-body {
  padding: 1.75rem;
}

.card .card-text,
.card p {
  font-family: 'Inter', sans-serif;
  color: #4a4039;
}

/* Buttons */
.btn-primary {
  background-color: var(--czl-primary);
  border-color: var(--czl-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #2e2018;
  border-color: #2e2018;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(67, 47, 36, 0.28);
}

.btn-outline-primary {
  color: var(--czl-primary);
  border-color: var(--czl-primary);
  border-radius: 50px;
  font-weight: 600;
  padding: 0.7rem 1.9rem;
  transition: all 0.25s ease;
}

.btn-outline-primary:hover {
  background-color: var(--czl-primary);
  border-color: var(--czl-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background-color: var(--czl-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 2rem;
  font-family: 'Inter', sans-serif;
}

.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5 {
  color: #fff;
}

.site-footer a {
  color: #e0c3ad;
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer a:hover {
  color: #fff;
}

/* Contact form */
.wpcf7 input,
.wpcf7 textarea {
  font-family: 'Inter', sans-serif;
  width: 100%;
  border: 1px solid #ddd2c9;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background-color: #fff;
  color: #2b2420;
  margin-bottom: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--czl-accent);
  box-shadow: 0 0 0 4px rgba(168, 130, 106, 0.18);
}

.wpcf7 textarea {
  min-height: 140px;
}

.wpcf7 .wpcf7-submit {
  background-color: var(--czl-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.8rem 2.2rem;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.wpcf7 .wpcf7-submit:hover {
  background-color: #2e2018;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(67, 47, 36, 0.28);
}

@media (max-width: 767.98px) {
  .hero {
    padding: 3.5rem 0;
  }
  .card .card-body {
    padding: 1.4rem;
  }
}
/* brand-lock (authoritative — loads last) */
:root{--bs-primary:#432F24;--bs-primary-rgb:67,47,36;--bs-link-color:#432F24;--bs-link-color-rgb:67,47,36;--bs-link-hover-color:#1e293b}
.btn-primary{--bs-btn-bg:#432F24;--bs-btn-border-color:#432F24;--bs-btn-hover-bg:#1e293b;--bs-btn-hover-border-color:#1e293b;--bs-btn-active-bg:#1e293b;--bs-btn-active-border-color:#1e293b}
.btn-outline-primary{--bs-btn-color:#432F24;--bs-btn-border-color:#432F24;--bs-btn-hover-bg:#1e293b;--bs-btn-hover-border-color:#1e293b;--bs-btn-active-bg:#1e293b}
.text-primary{color:#432F24!important}.bg-primary{background-color:#432F24!important}.link-primary{color:#432F24!important}
body{font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif}
h1,h2,h3,h4,h5,h6,.navbar-brand,.footer-brand{font-family:'Playfair Display', Georgia, serif}
.topbar{background:#432F24;color:#fff;font-size:.85rem}
.topbar-inner{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.5rem;padding:.4rem 0}
.topbar a{color:#fff;text-decoration:none;display:inline-flex;align-items:center;gap:.35rem;margin-right:1rem}
.topbar a:hover{color:#1e293b}
.topbar-contact svg,.topbar-social svg{width:15px;height:15px;fill:currentColor}
.topbar-social a{margin-right:.55rem}
.navbar{background:#fff;border-bottom:1px solid #e9ecef}
.navbar .navbar-brand{font-weight:800;color:#432F24}
.navbar .custom-logo{max-height:46px;width:auto}
.navbar .navbar-nav a,.navbar .nav-link{color:#1f2937;font-weight:500;padding:.5rem 1rem;text-decoration:none}
.navbar .navbar-nav a:hover,.navbar .nav-link:hover,.navbar .current-menu-item>a,.navbar .nav-link.active{color:#1e293b}
.site-footer{background:#0f172a;color:#cbd5e1;border-top:4px solid #432F24;padding:2.75rem 0 1.5rem}
.site-footer a{color:#fff;text-decoration:none}
.site-footer a:hover{color:#1e293b}
.site-footer .footer-brand{color:#fff}
.footer-extras{margin-top:1.25rem}
.footer-logo{margin-bottom:1rem}
.footer-logo img,.footer-logo .custom-logo{max-height:48px;width:auto;background:#fff;padding:6px 10px;border-radius:8px}
.footer-contact{display:flex;flex-wrap:wrap;justify-content:center;gap:1.25rem;margin:0 0 1rem}
.footer-cta{display:inline-flex;align-items:center;gap:.4rem;color:#fff;font-weight:500}
.footer-cta:hover{color:#1e293b}
.footer-cta svg{width:16px;height:16px;fill:currentColor}
.footer-social{display:flex;justify-content:center;gap:.75rem;margin:.25rem 0 0}
.footer-social-link{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;transition:background .2s,color .2s}
.footer-social-link:hover{background:#1e293b;color:#fff}
.footer-social-link svg{width:18px;height:18px;fill:currentColor}
.footer-credit{margin:1.25rem 0 0;font-size:.8rem;color:rgba(255,255,255,.6)}
.footer-credit a{color:rgba(255,255,255,.7);text-decoration:none}
.footer-credit a:hover{color:#fff;text-decoration:underline}
.card{--bs-card-color:#1f2937;color:#1f2937}
.card .card-body,.card p,.card li,.card .card-title{color:#1f2937}
.card h1,.card h2,.card h3,.card h4,.card h5,.card h6{color:#1f2937}
.hero,.section-brand{color:#fff}
.hero .wp-block-heading,.section-brand .wp-block-heading{color:#fff}
.wp-block-button__link{background:#432F24;color:#fff;border-radius:.5rem;padding:.7rem 1.6rem;font-weight:600;text-decoration:none;display:inline-block}
.wp-block-button__link:hover{background:#36261d;color:#fff}
.hero .wp-block-button__link,.section-brand .wp-block-button__link{background:#fff;color:#432F24}
.wp-block-columns{gap:1.5rem;margin-top:1.5rem}
.wp-block-columns .wp-block-image{margin:0}
.wp-block-columns .wp-block-image img{width:100%;border-radius:.75rem}
.wp-block-group.card{height:100%}
.card .wp-block-image{margin:0 0 1rem}
.card .wp-block-image img{width:100%;aspect-ratio:3/2;object-fit:cover;border-radius:.5rem}
.feature-stack{max-width:100%;margin:0}
.wpcf7 input:not([type=submit]),.wpcf7 textarea{width:100%}
.wpcf7 .wpcf7-submit{width:auto;display:inline-block;min-width:180px}
.wpcf7 .wpcf7-form{max-width:640px}
.text-center h1,.text-center h2,.text-center h3,.text-center h4,.text-center h5,.text-center h6,.text-center p,.text-center .eyebrow{text-align:center}
.text-center .wp-block-buttons{justify-content:center}
.text-center p,.text-center .lead,.text-center .wp-block-paragraph{margin-left:auto;margin-right:auto}
.card{border-radius:1.4rem;box-shadow:0 16px 44px rgba(15,23,42,.12)}
.btn,.wp-block-button__link{border-radius:50rem}
.navbar{background:rgba(67,47,36,.06);border-bottom:0;box-shadow:0 2px 14px rgba(15,23,42,.06)}
.hero{padding-top:7rem;padding-bottom:7rem}
.wp-block-group.py-5{padding-top:5.5rem!important;padding-bottom:5.5rem!important}
html,body{overflow-x:hidden}
img{max-width:100%;height:auto}
