/* ═══════════════════════════════════════
   KAYDENCE BEAUTY CO — GLOBAL STYLES
   style.css
═══════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --ivory:        #FAF7F2;
  --ivory-deep:   #F2EDE4;
  --blush:        #F5E6E6;
  --blush-mid:    #EDD0D0;
  --mauve:        #C4909A;
  --mauve-dark:   #A3707A;
  --gold:         #B8924A;
  --gold-light:   #D4A85C;
  --espresso:     #2A1F1F;
  --espresso-mid: #4A3535;
  --muted:        #8A7070;
  --border:       rgba(42,31,31,0.1);
  --border-mid:   rgba(42,31,31,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
h1 em { font-style: italic; color: var(--mauve); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--espresso);
}
h2 em { font-style: italic; color: var(--mauve); }

h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--espresso);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--mauve);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--mauve);
  flex-shrink: 0;
}
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--mauve);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
  text-align: center;
  text-decoration: none;
}
.btn-primary:hover { background: var(--mauve-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: 1px solid var(--border-mid);
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s;
  text-align: center;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--mauve); color: var(--mauve); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
  text-align: center;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
  text-align: center;
  text-decoration: none;
}
.btn-white:hover { background: var(--ivory-deep); transform: translateY(-1px); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(42,31,31,0.07); }

.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}
.contact-strip-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
}

.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--mauve);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--espresso); }
.nav-links a:hover::after,
.nav-links a.active { color: var(--espresso); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-book {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--mauve);
  color: #fff;
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-book:hover { background: var(--mauve-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem 2rem 3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--mauve); }
.mobile-menu-socials { display: flex; gap: 2rem; margin-top: 1rem; }
.mobile-menu-socials a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 1rem;
}
.mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--espresso);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,247,242,0.5);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mauve);
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PAGE HERO BANNER (inner pages) ── */
.page-hero {
  padding: 9rem 5vw 5rem;
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--blush);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.85;
  margin-top: 1rem;
}

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--espresso);
  padding: 3.5rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}
.contact-strip-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-strip-item:last-child { text-align: right; align-items: flex-end; }
.contact-strip-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  font-weight: 400;
}
.contact-strip-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(250,247,242,0.9);
  font-style: italic;
  transition: color 0.2s;
}
.contact-strip-value:hover { color: var(--mauve); }
.social-icons { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.25rem; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.2);
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.social-icon svg { width: 17px; height: 17px; display: block; }
.social-icon:hover { border-color: var(--mauve); color: var(--mauve); background: rgba(196,144,154,0.1); }
.mobile-social-icon { width: 42px; height: 42px; border-color: rgba(42,31,31,0.15); color: var(--muted); }
.mobile-social-icon svg { width: 19px; height: 19px; }
.mobile-social-icon:hover { border-color: var(--mauve); color: var(--mauve); background: var(--blush); }
.footer-social-icon { width: 34px; height: 34px; border-color: var(--border); color: var(--muted); }
.footer-social-icon svg { width: 15px; height: 15px; }
.footer-social-icon:hover { border-color: var(--mauve); color: var(--mauve); }
.contact-strip-center { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.contact-strip-logo-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--mauve);
  letter-spacing: 0.08em;
}
.contact-strip-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(250,247,242,0.3); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mauve); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso-mid);
  font-weight: 500;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--border-mid);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.72rem 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C4909A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mauve);
  box-shadow: 0 0 0 3px rgba(196,144,154,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,112,112,0.5); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--ivory); color: var(--espresso); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-privacy {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success.show { display: block; }
.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blush);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--mauve);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.65rem;
}
.form-success p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.form-success-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── PRICE TABLE ── */
.price-section { margin-bottom: 2.5rem; }
.price-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 1px solid var(--border); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 0.65rem 0; font-size: 0.88rem; color: var(--espresso-mid); }
.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 1rem;
  white-space: nowrap;
}

/* ── DEPOSIT NOTICE ── */
.deposit-notice {
  background: var(--ivory);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.deposit-notice strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}
.deposit-notice span { font-size: 0.78rem; color: var(--muted); }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .contact-strip-item:last-child { text-align: center; align-items: center; }
  .contact-strip-center { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; }
  footer { flex-direction: column; align-items: center; text-align: center; }
  .page-hero-accent { width: 60%; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  .nav-logo-img { height: 40px; }
}
