/* ===================== 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: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.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: var(--ink); }
.site-nav a:hover{ opacity:.6; }
@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 — Kinetic Menu Headline ===================== */
/* Picked by Billy (2026-09-05) from the 10-concept showcase — see
   demo-sites-proposals/sithelo-phila-events/hero-concepts/. No photo: an
   oversized headline cycles through the real service list at huge scale,
   proving service breadth in seconds instead of needing a hero photo to do it. */
.kinetic-hero{
  min-height: calc(100vh - 97px);
  background: var(--charcoal); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: 60px 24px;
}
.eyebrow-light{ font-family: var(--font-nav); font-size:13px; letter-spacing:.2em; text-transform:uppercase; color:#fff; opacity:.75; margin:0 0 18px; }
.kinetic-word{
  font-family: var(--font-display); font-weight:400; margin:0;
  font-size: clamp(48px, 9vw, 112px); line-height:1.05;
  min-width: 1px; transition: opacity .35s ease, transform .35s ease;
}
.kinetic-sub{ font-family: var(--font-nav); font-size:15px; letter-spacing:.1em; color:#fff; opacity:.6; margin: 20px 0 0; }

/* ===================== 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; display:block; position:relative; aspect-ratio: 3/4; overflow:hidden; }
.cat-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.cat-item:hover img{ transform: scale(1.04); }
.cat-cap{
  position:absolute; left:0; right:0; bottom:0; padding: 22px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.cat-item .ic-title{ display:block; font-family: var(--font-display); font-size: 20px; color:#fff; }

.tagline-wrap{ margin-top: 0; padding: 28px 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{ padding: 14px 0; gap:14px; }
  .tagline{ font-size: 12px; }
}

/* ===================== Our Studio ===================== */
.studio{ background: var(--cream); padding: 90px 0; }
.studio-inner{ max-width: 780px; margin: 0 auto; text-align:center; }
.studio-body{ font-size: 16px; }
.studio-stats{ display:flex; justify-content:center; gap: 64px; flex-wrap:nowrap; margin-top: 36px; }
.studio-stats > div{ flex:0 0 auto; }
.studio-stats strong{ display:block; font-family: var(--font-display); font-size: 26px; }
.studio-stats span{ display:block; white-space:nowrap; font-size: 10.5px; letter-spacing:.06em; text-transform:uppercase; opacity:.6; }
@media (max-width: 560px){
  .studio-stats strong{ font-size:15px; }
  .studio-stats span{ font-size:7px; letter-spacing:0; }
  .studio-stats{ gap:8px; }
}

/* ===================== Signature Work ===================== */
.signature{ background: var(--beige); padding: 90px 0; }
.sig-sub{ text-align:center; font-style:italic; margin-top:-8px; margin-bottom: 32px; opacity:.75; }

.filter-pills{ display:flex; flex-wrap:wrap; gap: 10px; justify-content:center; margin: 0 0 40px; }
.pill{
  font-family: var(--font-nav); font-weight:600; font-size: 14px; cursor:pointer;
  padding: 9px 22px; border-radius: 999px; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); transition: all .15s ease;
}
.pill:hover{ opacity:.7; }
.pill.is-active{ background: var(--ink); border-color: var(--ink); color:#fff; }

.sig-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sig-item{ margin:0; }
.sig-item img{ width:100%; aspect-ratio: 4/5; object-fit:cover; }
.sig-item[hidden]{ display:none; }
@media (max-width: 900px){ .sig-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px){ .sig-grid{ grid-template-columns: repeat(2,1fr); } }

/* ===================== Testimonials ===================== */
.testimonials{ background: var(--cream); padding: 80px 0 90px; }
.testimonial-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.testimonial-card{
  margin:0; padding: 32px 34px; background: var(--beige); border-radius: 6px;
  font-family: var(--font-body); font-style: italic; font-size: 17px; line-height:1.6; color: var(--ink);
}
.testimonial-card p{ margin: 0 0 16px; }
.testimonial-card cite{ font-family: var(--font-nav); font-style:normal; font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase; opacity:.7; }
@media (max-width: 700px){ .testimonial-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; } }

/* ===================== Contact Form ===================== */
.contact-form{ background: var(--cream); padding: 90px 0; }
.contact-form-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; border-radius: 12px; overflow:hidden; box-shadow: 0 24px 60px rgba(38,35,34,.16); }

.contact-photo{ position:relative; min-height: 480px; }
.contact-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.contact-photo-cap{
  position:absolute; left:0; right:0; bottom:0; top:35%; padding: 36px;
  display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(0deg, rgba(20,17,15,.96) 0%, rgba(20,17,15,.75) 45%, rgba(20,17,15,.15) 85%, transparent 100%);
}
.contact-eyebrow{
  display:inline-flex; align-items:center; gap:8px; align-self:flex-start;
  font-family: var(--font-nav); font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:#fff; margin-bottom: 16px;
}
.contact-eyebrow::before{ content:""; width:20px; height:1.5px; background: currentColor; display:inline-block; }
.contact-quote{
  font-family: var(--font-display); font-size: 28px; color:#fff; line-height:1.3; margin:0;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

.contact-card{ background:#fff; padding: 56px 48px; }
.contact-card h2{ text-align:left; font-size: 30px; margin-bottom: 10px; }
.contact-form .lead{ margin-bottom: 32px; text-align:left; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fld{ margin-bottom: 20px; }
.fld label{ display:block; font-family: var(--font-nav); font-size:13px; font-weight:600; letter-spacing:.04em; margin-bottom: 6px; }
.fld input, .fld select, .fld textarea{
  width:100%; padding: 12px 14px; font-family: var(--font-body); font-size: 14px;
  border: 1px solid var(--line); border-radius: 6px; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.fld input:focus, .fld select:focus, .fld textarea:focus{ outline:none; border-color: var(--ink); background:#fff; }
.fld textarea{ min-height: 100px; resize: vertical; }
.btn-solid-dark{ background: var(--ink); border-color: var(--ink); color:#fff; cursor:pointer; }
.btn-solid-dark:hover{ background: var(--charcoal); }

@media (max-width: 860px){
  .contact-form-grid{ grid-template-columns: 1fr; }
  .contact-photo{ min-height: 260px; }
  .contact-card{ padding: 40px 28px; }
}
@media (max-width: 700px){
  .contact-photo{ display:none; }
  .contact-form-grid{ box-shadow:none; border-radius:8px; }
}
@media (max-width: 600px){ .form-row{ grid-template-columns: 1fr; } }

/* ===================== Footer ===================== */
.site-footer{ background: var(--beige); padding-top: 64px; }
.footer-grid{ display:grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 72px; padding-bottom: 44px; }
.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-brand-col .footer-logo{ height: 44px; width:auto; margin-bottom: 18px; }
.footer-blurb{ font-size: 14px; color: var(--ink-soft, var(--ink)); opacity:.8; max-width: 34ch; line-height:1.6; margin-bottom: 22px; }
.footer-socials{ display:flex; gap: 12px; }
.footer-socials a{
  width: 44px; height:44px; border-radius:50%; border:1px solid var(--ink);
  display:flex; align-items:center; justify-content:center; color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.footer-socials a:hover{ background: var(--ink); color:#fff; }
.footer-socials svg{ width: 17px; height:17px; }

.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: 780px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ===================== WhatsApp FAB ===================== */
.fab{
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 68px; height:68px; 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);
  transition: opacity .15s ease, transform .15s ease;
}
.fab svg{ width: 34px; height:34px; }
.fab:hover{ background: var(--whatsapp-dark); }
.fab.is-hidden{ opacity:0; transform: scale(.85); pointer-events:none; }

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