/* ===================== Sithelo Phila Events — design tokens ===================== */
/* Type + palette modelled on justseventy.com (studied 2026-09-05): GFS Didot display
   serif + Libre Baskerville body, warm cream/beige/charcoal, minimal ornamentation,
   full-bleed real photography, hairline dividers, rectangular bordered buttons. */
:root{
  --cream: #FEFBF6;
  --beige: #EAE5DC;
  --taupe: #B7AB94;
  --ink: #332F2E;
  --charcoal: #262322;
  --line: #d8d2c4;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --font-display: "GFS Didot", Georgia, serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --font-nav: "Cormorant Garamond", Georgia, serif;
  --font-logo: "Archivo", Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
.wrap{ max-width: 1240px; margin: 0 auto; padding: 0 32px; }
h1,h2{ font-family: var(--font-display); font-weight:400; line-height:1.2; letter-spacing: .05em; text-transform: capitalize; margin: 0 0 .5em; }
p{ margin: 0 0 1.1em; }
em{ font-style: italic; }
.eyebrow{ font-size:11px; letter-spacing:.22em; text-transform:uppercase; color: var(--ink); opacity:.6; margin: 0 0 18px; }
.center{ text-align:center; }

.btn-line{
  display:inline-block; padding: 9px 22px; border: 1px solid currentColor;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px;
}
.btn{ display:inline-block; padding: 15px 36px; border: 1px solid currentColor; font-size:12px; letter-spacing:.16em; text-transform:uppercase; }
.btn-outline-light{ color:#fff; }
.btn-outline-light:hover{ background:#fff; color: var(--charcoal); }

/* ===================== Header ===================== */
/* Structure modelled on justseventy.com per Billy's direct screenshots (2026-09-05):
   a solid warm-taupe bar, its own row above the hero photo (not overlaid/transparent
   over it), logo left + nav right. Nav is Cormorant Garamond 700 with .06em tracking
   (confirmed via computed styles on .header-nav-item — not Libre Baskerville, which
   is body copy only on the reference). The reference's own wordmark is a bespoke
   two-weight (outline + solid) logo image — recreated here as Sithelo Phila's own
   lockup in the same two-weight treatment, not a copy of JustSeventy's actual logo
   art. Fixed position so it stays visible on scroll, same as the reference. */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 22px 0;
  background: var(--taupe);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }

.logo{ display:block; }
.logo img{ height: 46px; width:auto; display:block; }

.site-nav{ display:flex; gap: 28px; }
.site-nav a{ font-family: var(--font-nav); font-size:15px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#fff; }
.site-nav a:hover{ opacity:.7; }
@media (max-width: 900px){ .site-nav{ display:none; } }

/* header is fixed — offset the page so it doesn't cover the hero photo */
body{ padding-top: 97px; }

/* ===================== Hero — rotating photo carousel ===================== */
/* Chevron arrows + dot indicator modelled on justseventy.com's hero banner
   (studied via Billy's screenshot, 2026-09-05). */
.hero-photo{ position:relative; width:100%; height: 66vh; min-height: 380px; overflow:hidden; }
.hero-slide{
  position:absolute; inset:0; width:100%; height:100%; object-fit: cover;
  opacity:0; transition: opacity 1s ease; z-index:1;
}
.hero-slide.is-active{ opacity:1; z-index:2; }

.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:10;
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background: rgba(0,0,0,.32); color:#fff; display:flex; align-items:center; justify-content:center;
  transition: background .2s ease;
}
.hero-arrow:hover{ background: rgba(0,0,0,.55); }
.hero-arrow svg{ width:20px; height:20px; }
.hero-arrow-prev{ left:20px; }
.hero-arrow-next{ right:20px; }

.hero-dots{ position:absolute; left:0; right:0; bottom:18px; z-index:10; display:flex; justify-content:center; gap:8px; }
.hero-dot{ width:8px; height:8px; border-radius:50%; background: rgba(255,255,255,.5); }
.hero-dot.is-active{ background:#fff; }

@media (max-width: 600px){
  .hero-arrow{ width:36px; height:36px; }
  .hero-arrow svg{ width:16px; height:16px; }
}

/* ===================== Intro band ===================== */
.intro-band{ background: var(--charcoal); color: var(--cream); padding: 72px 0 0; }
.intro-copy{ max-width: 760px; margin: 0 auto; text-align:center; }
.intro-copy h1{ color: var(--cream); font-size: clamp(30px, 4vw, 46px); }
.intro-copy p{ color: #cfc9be; font-size: 15px; }
.intro-copy em{ color: var(--cream); }

.cat-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; background: var(--charcoal); }
.cat-item{ margin:0; position:relative; aspect-ratio: 3/4; overflow:hidden; }
.cat-item img{ width:100%; height:100%; object-fit:cover; }
.cat-item figcaption{
  position:absolute; left:0; right:0; bottom:0; padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 45%, rgba(0,0,0,.1) 85%, transparent 100%);
}
.cat-item .ic-title{ display:block; font-family: var(--font-display); font-size: 19px; color:#fff; margin-bottom: 12px; }
.cat-item .btn-line{ color:#fff; }

.tagline-wrap{ margin-top: 56px; padding: 40px 0; display:flex; align-items:center; gap: 24px; }
.hr-thin{ flex:1; height:1px; background: rgba(255,255,255,.25); }
.tagline{ font-family: var(--font-body); font-size: 16px; letter-spacing:.04em; color: var(--cream); margin:0; white-space:nowrap; }

@media (max-width: 900px){
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .tagline-wrap{ flex-direction:column; }
  .tagline{ white-space:normal; text-align:center; }
}

/* ===================== Our Studio ===================== */
.studio{ background: var(--cream); padding: 90px 0; }
.studio-inner{ max-width: 720px; margin: 0 auto; text-align:center; }
.studio-body{ font-size: 16px; }
.studio-stats{ display:flex; justify-content:center; gap: 48px; flex-wrap:wrap; margin-top: 36px; }
.studio-stats strong{ display:block; font-family: var(--font-display); font-size: 26px; }
.studio-stats span{ font-size: 11px; letter-spacing:.08em; text-transform:uppercase; opacity:.6; }

/* ===================== Signature Work ===================== */
.signature{ background: var(--beige); padding: 90px 0; }
.sig-sub{ text-align:center; font-style:italic; margin-top:-8px; margin-bottom: 44px; opacity:.75; }
.sig-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sig-item{ margin:0; }
.sig-item img{ width:100%; aspect-ratio: 4/3; object-fit:cover; }
@media (max-width: 900px){ .sig-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .sig-grid{ grid-template-columns: 1fr; } }

/* ===================== Services ===================== */
.services{ background: var(--charcoal); color: var(--cream); padding: 90px 0 64px; }
.services-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:start; margin-bottom: 44px; }
.acc-item{ border-top: 1px solid rgba(255,255,255,.18); }
.acc-item:last-child{ border-bottom: 1px solid rgba(255,255,255,.18); }
.acc-head{
  width:100%; display:flex; justify-content:space-between; align-items:center;
  background:none; border:0; color: var(--cream); font-family: var(--font-display);
  font-size: 19px; letter-spacing:.03em; padding: 20px 0; cursor:pointer; text-align:left;
}
.acc-icon{ font-family: var(--font-body); font-size:20px; opacity:.7; }
.acc-body{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.acc-item.is-open .acc-body{ max-height: 320px; }
.acc-body p{ color:#cfc9be; font-size:14px; padding-bottom: 4px; }
.acc-body ul{ list-style:none; padding:0; margin:0 0 22px; }
.acc-body li{ font-size:13.5px; color:#cfc9be; padding: 6px 0; border-top:1px solid rgba(255,255,255,.08); }
.acc-body li:first-child{ border-top:0; }
.services-photo img{ width:100%; height:100%; min-height:340px; object-fit:cover; }
@media (max-width: 780px){ .services-grid{ grid-template-columns: 1fr; } .services-photo{ order:-1; } }

/* ===================== Footer ===================== */
.site-footer{ background: var(--beige); padding-top: 56px; }
.footer-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-bottom: 40px; }
.footer-head{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; opacity:.6; margin-bottom: 14px; }
.footer-col p{ margin: 0 0 8px; font-size: 14px; }
.footer-col a:hover{ text-decoration: underline; }
.footer-bottom{ border-top: 1px solid var(--line); padding: 18px 32px; text-align:center; font-size:12.5px; opacity:.7; }
.footer-bottom a{ font-weight: 700; text-decoration: underline; }
@media (max-width: 700px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ===================== WhatsApp FAB ===================== */
.fab{
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height:56px; border-radius:50%; background: var(--whatsapp);
  color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.4);
}
.fab svg{ width: 28px; height:28px; }
.fab:hover{ background: var(--whatsapp-dark); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .acc-body{ transition:none; }
}
