/* ============================================================
   KENDRANIX.COM — Global Stylesheet
   Clean white base · Fuchsia accent · Playfair + Barlow
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  --white:      #FFFFFF;
  --off-white:  #F9F9F9;
  --light-gray: #F2F2F2;
  --border:     #E8E8E8;
  --mid-gray:   #999999;
  --dark-gray:  #444444;
  --black:      #111111;
  --fuchsia:    #D4007A;
  --fuchsia-lt: #FF1A8C;
  --fuchsia-dim:rgba(212,0,122,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* BUTTONS */
.btn { display: inline-block; padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; transition: all 0.22s ease; border: 2px solid transparent; }
.btn-fuchsia { background: var(--fuchsia); color: var(--white); border-color: var(--fuchsia); }
.btn-fuchsia:hover { background: var(--fuchsia-lt); border-color: var(--fuchsia-lt); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #222; border-color: #222; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-fuchsia { background: transparent; color: var(--fuchsia); border-color: var(--fuchsia); }
.btn-outline-fuchsia:hover { background: var(--fuchsia); color: var(--white); }
.btn-white { background: var(--white); color: var(--fuchsia); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: all 0.3s ease; }
.logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: 0.12em; color: var(--black); text-transform: uppercase; }
.logo span { color: var(--fuchsia); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-gray); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--fuchsia); }
.nav-cta { padding: 10px 22px; background: var(--fuchsia) !important; color: white !important; }
.nav-cta:hover { background: var(--fuchsia-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px; border-left: 4px solid var(--fuchsia); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--black); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--fuchsia); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--black); }

/* SECTION LABELS */
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--fuchsia); display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--fuchsia); flex-shrink: 0; }
.section-label.center { justify-content: center; }
.section-label.center::before, .section-label.center::after { content: ''; display: block; width: 28px; height: 2px; background: var(--fuchsia); flex-shrink: 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.1; color: var(--black); margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--fuchsia); }
.section-title.light { color: var(--white); }
.section-title.light em { color: rgba(255,255,255,0.85); }
.section-body { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--dark-gray); max-width: 540px; }
.section-body.light { color: rgba(255,255,255,0.78); }

/* MARQUEE */
.marquee-strip { background: var(--fuchsia); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.m-item { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); padding: 0 30px; }
.m-dot { color: rgba(255,255,255,0.4); padding: 0 4px; font-size: 0.5rem; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer { background: var(--black); padding: 64px 72px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; margin-bottom: 12px; }
.footer-logo span { color: var(--fuchsia); }
.footer-desc { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.72; max-width: 260px; }
.footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.soc-btn { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.42); font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700; transition: all 0.2s; }
.soc-btn:hover { background: var(--fuchsia); border-color: var(--fuchsia); color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.73rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* PAGE HERO (inner pages) */
.page-hero { padding: 140px 72px 80px; background: var(--white); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 720px; }
.page-hero .section-title { font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero-price { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; color: var(--fuchsia); border: 2px solid var(--fuchsia); padding: 8px 20px; margin-bottom: 28px; }
.page-hero-desc { font-size: 1.1rem; font-weight: 300; line-height: 1.82; color: var(--dark-gray); max-width: 600px; margin-bottom: 36px; }

/* INCLUDED LIST */
.includes-list { display: flex; flex-direction: column; gap: 14px; }
.includes-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; font-weight: 400; line-height: 1.6; color: var(--dark-gray); }
.includes-item::before { content: '✦'; color: var(--fuchsia); font-size: 0.65rem; margin-top: 5px; flex-shrink: 0; }

/* FOR YOU / NOT FOR YOU */
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.for-box { padding: 40px 36px; }
.for-box.yes { background: var(--fuchsia-dim); border-top: 3px solid var(--fuchsia); }
.for-box.no { background: var(--light-gray); border-top: 3px solid var(--border); }
.for-box-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.for-box.yes .for-box-title { color: var(--fuchsia); }
.for-box.no .for-box-title { color: var(--mid-gray); }
.for-item { font-size: 0.9rem; font-weight: 300; line-height: 1.65; color: var(--dark-gray); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; gap: 10px; }
.for-item.yes-item::before { content: '✓'; color: var(--fuchsia); font-weight: 700; flex-shrink: 0; }
.for-item.no-item::before { content: '✗'; color: var(--mid-gray); flex-shrink: 0; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  #navbar { padding: 16px 40px; }
  footer { padding: 56px 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 120px 40px 64px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 16px 24px; }
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 100px 24px 56px; }
  .for-grid { grid-template-columns: 1fr; }
}

.about-photo[data-has-photo]::after { display: none; }
