/* ═══════════════════════════════════════════════════════
   TRISENSE BEAUTY SALON & SPA — Main Stylesheet
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  --cream: #FAF6F0;
  --warm-white: #FDF9F4;
  --sage: #6B7C5C;
  --sage-light: #8E9E7D;
  --gold: #B8986A;
  --gold-dark: #9A7A50;
  --brown-dark: #3B2F20;
  --brown-mid: #5C4A35;
  --text-mid: #7a6a5a;
  --border: #e8ddd0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--brown-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 72px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; }
.nav-logo-text .n1 { font-size: 18px; letter-spacing: 2px; color: var(--sage); font-weight: 600; text-transform: uppercase; line-height: 1; }
.nav-logo-text .n2 { font-size: 10px; letter-spacing: 1px; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--brown-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-book-btn {
  background: var(--gold); color: #fff !important;
  padding: 10px 22px; border-radius: 100px;
  font-size: 13px !important; font-weight: 600 !important;
  letter-spacing: 0.05em; transition: all 0.25s;
}
.nav-book-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--brown-dark); transition: 0.3s; }

.mobile-nav {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 20px 24px; display: none; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-size: 15px; border-bottom: 1px solid var(--border); }

/* ─── SECTIONS ─── */
.section { padding: 90px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; text-align: center; margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 5vw, 46px);
  font-weight: 300; text-align: center; margin-bottom: 12px; color: var(--brown-dark);
}
.section-subtitle {
  text-align: center; color: var(--text-mid); max-width: 600px;
  margin: 0 auto 50px; font-size: 15px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  padding: 16px 36px; border-radius: 100px;
  font-size: 14px; letter-spacing: 0.05em; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,152,106,0.35); }

/* ─── FOOTER ─── */
.footer { background: var(--brown-dark); color: rgba(255,255,255,0.75); padding: 60px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-logo img { width: 54px; height: 54px; border-radius: 50%; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.footer p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-tagline-big { font-family: 'Pinyon Script', cursive; font-size: 22px; color: var(--gold); display: block; margin-top: 12px; }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 60px 20px; }
}
