/* =========================================================
   Lisha's Voice — styles.css
   Organized by: tokens, base, buttons, header/nav, hero,
   services, why, demos, about, reviews, contact, footer, motion, responsive
   ========================================================= */

/* ---------- Brand tokens ---------- */
:root{
  --cream:        #F7EFE4;
  --cream-deep:   #EFE3D2;
  --ink:          #171310;
  --ink-soft:     #2A231E;
  --orange:       #D9531A;
  --orange-bright:#E8621E;
  --gold:         #C79A3B;
  --white:        #FFFFFF;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", "Alex Brush", cursive;
  --font-sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1160px;
  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 18px 40px -20px rgba(23,19,16,.35);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: var(--orange); text-decoration: none; }
h1,h2,h3{ margin:0; color: var(--ink); }
p{ margin:0 0 1rem; }
ul{ margin:0; padding:0; list-style:none; }

.container{ width:100%; max-width: var(--maxw); margin:0 auto; padding:0 clamp(20px,5vw,40px); }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .audio-seek:focus-visible{
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Section titles ---------- */
.section-title{
  font-family: var(--font-serif);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align:center;
  display:flex; align-items:center; justify-content:center; gap:1rem;
  margin: 0 0 2.6rem;
}
.section-title .rule{
  width: clamp(28px, 6vw, 60px); height:2px; background: var(--orange);
  display:inline-block; flex: 0 0 auto;
}
.section-title .rule--gold{ background: var(--gold); }
.section-title--light{ color: var(--white); }

.block-title{
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing:.01em;
}
.title-underline{
  display:block; width:64px; height:3px; border-radius:2px;
  background: var(--orange); margin:.7rem 0 1.2rem;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.55rem;
  font-family: var(--font-sans); font-weight:700; font-size:.86rem;
  text-transform: uppercase; letter-spacing:.06em;
  padding:.85rem 1.5rem; border-radius: 10px;
  cursor:pointer; border:2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s;
  white-space:nowrap;
}
.btn-ic{ width:1.15em; height:1.15em; flex:0 0 auto; }
.btn-primary{ background: var(--orange); color: var(--white); box-shadow: 0 10px 22px -10px rgba(217,83,26,.7); }
.btn-primary:hover{ background: var(--orange-bright); transform: translateY(-2px); box-shadow: 0 16px 26px -12px rgba(217,83,26,.75); }
.btn-outline{ background: transparent; color: var(--orange); border-color: var(--orange); }
.btn-outline:hover{ background: var(--orange); color:#fff; transform: translateY(-2px); }
.btn-block{ width:100%; justify-content:center; padding:1rem; font-size:.92rem; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index:100;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled{
  background: rgba(247,239,228,.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px -8px rgba(23,19,16,.4);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height: var(--header-h); gap:1rem; }
.logo{ display:flex; align-items:center; gap:.6rem; }
.logo-mark{ width: 132px; height:34px; }
.logo-word{ font-family: var(--font-serif); font-weight:700; font-size:1.15rem; color: var(--ink); line-height:1; display:none; }
.logo-word .lw-script{ font-family: var(--font-script); font-weight:400; color: var(--orange); font-size:1.4rem; }

.main-nav{ display:flex; align-items:center; }
.nav-list{ display:flex; gap: clamp(1rem, 2.4vw, 2rem); align-items:center; }
.nav-list a{
  font-weight:600; font-size:.82rem; text-transform:uppercase; letter-spacing:.08em;
  color: var(--ink); padding:.4rem 0; position:relative;
}
.nav-list a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--orange); transition: right .25s var(--ease);
}
.nav-list a:hover::after, .nav-list a.active::after{ right:0; }
.nav-list a.active{ color: var(--orange); }

.nav-toggle{
  display:none; width:44px; height:44px; border:none; background:transparent;
  cursor:pointer; flex-direction:column; justify-content:center; gap:5px; padding:0;
}
.nav-toggle span{ display:block; width:26px; height:3px; border-radius:2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; margin:0 auto; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{ position:relative; overflow:hidden; background: var(--cream); padding-bottom: 90px; }
/* Full banner image (Lisha + lights). Sits behind the copy; the image's own
   cream space on the left keeps the headline readable. */
.hero-media{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; object-fit:cover; object-position: 84% 30%;
}
.hero-inner{
  position:relative; z-index:1;
  display:flex; flex-direction:column; justify-content:center;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  min-height: clamp(540px, 84vh, 780px);
}
.hero-copy{ max-width: 560px; }
.hero-headline{ font-family: var(--font-serif); line-height:.98; margin-bottom:1.4rem; width: fit-content; }
.hl-line{ display:block; }
.hl-the{ font-weight:900; font-size: clamp(2.6rem, 8vw, 5.2rem); color: var(--ink); letter-spacing:.02em; }
.hl-that{ font-weight:900; font-size: clamp(1.5rem, 4.4vw, 2.6rem); color: var(--orange); letter-spacing:.12em; text-align:center; text-indent:.12em; }
.hl-stands{
  font-family: var(--font-script); font-weight:400;
  font-size: clamp(3.4rem, 11vw, 7rem); color: var(--orange);
  line-height:.9; position:relative; padding-bottom:.15em;
}
.hl-stands::after{
  content:""; position:absolute; left:2%; right:8%; bottom:.02em; height:14px;
  background: no-repeat center/100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 16'%3E%3Cpath d='M4 11 C70 3 150 2 210 6 C245 8 275 9 296 5' fill='none' stroke='%23D9531A' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}
.descriptor{
  font-weight:700; text-transform:uppercase; letter-spacing:.08em;
  color: var(--orange); font-size: clamp(.85rem, 1.8vw, 1.05rem); margin-bottom:1rem;
}
.hero-lead{ max-width: 46ch; color: var(--ink-soft); font-size:1.02rem; margin-bottom:1.8rem; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.9rem; }

/* wave dividers */
.wave-divider{ position:absolute; left:0; right:0; line-height:0; z-index:2; }
.wave-divider svg{ width:100%; height:90px; display:block; }
.wave-divider--down{ bottom:-1px; }
.wave-divider--up{ top:-1px; }
.wave-divider--cream svg{ height:60px; }

/* ---------- Services ---------- */
.services{ position:relative; background: var(--cream-deep); padding: clamp(3rem,7vw,5rem) 0; }
.service-grid{
  display:flex; flex-wrap:wrap; justify-content:center; row-gap: 1.5rem;
  max-width: 1000px; margin:0 auto;
}
.service{
  flex: 0 0 20%; text-align:center; padding:1rem .5rem; border-radius: 12px;
  position:relative; transition: transform .2s var(--ease);
}
/* thin vertical separators like the comp; skip the last item in each row */
.service:not(:nth-child(5n)):not(:last-child)::after{
  content:""; position:absolute; right:0; top:18%; bottom:18%; width:1px;
  background: linear-gradient(var(--gold), transparent 90%); opacity:.5;
}
.service:hover{ transform: translateY(-4px); }
.service-ic{ display:inline-flex; color: var(--orange); margin-bottom:.7rem; }
.service-ic svg{ width:42px; height:42px; fill:none; stroke: currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.service-name{ display:block; font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.04em; color: var(--ink); line-height:1.3; }
.service-sub{ display:block; font-size:.72rem; color: var(--ink-soft); margin-top:.25rem; letter-spacing:.02em; }

/* ---------- Why choose me (dark) ---------- */
.why{ position:relative; background: var(--ink); color: var(--white); padding: clamp(3.5rem,7vw,5.5rem) 0 clamp(4rem,8vw,6rem); }
.why-grid{ display:grid; grid-template-columns: repeat(6, 1fr); gap:1rem; max-width:1050px; margin:0 auto; }
.why-item{ text-align:center; padding:0 .5rem; position:relative; }
.why-item:not(:nth-child(6n))::after{
  content:""; position:absolute; right:0; top:15%; bottom:15%; width:1px; background: rgba(199,154,59,.4);
}
.why-ic{ display:inline-flex; color: var(--gold); margin-bottom:.7rem; }
.why-ic svg{ width:40px; height:40px; fill:none; stroke: currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.why-name{ display:block; font-weight:600; font-size:.8rem; text-transform:uppercase; letter-spacing:.05em; color: #F1E9DD; line-height:1.35; }

/* ---------- Demos ---------- */
.demos{ position:relative; background: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0 90px; }
.demos-inner{ display:grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem,4vw,3.5rem); align-items:center; }
.demos-lead{ max-width: 34ch; color: var(--ink-soft); }
.signature{ font-family: var(--font-script); font-size: 2.4rem; color: var(--orange); line-height:1; margin:0; }
.signature .heart{ font-size:1.4rem; vertical-align:middle; }

.player-card{
  display:flex; gap:1.2rem; align-items:center;
  background: var(--white); border:1px solid rgba(23,19,16,.08);
  border-radius: var(--radius); padding:1.1rem 1.4rem; box-shadow: var(--shadow);
}
.player-card + .player-card{ margin-top:1rem; }
.player-thumb{
  flex:0 0 auto; width:96px; height:96px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center; color:#fff;
  background:
    radial-gradient(closest-side at 70% 35%, rgba(232,98,30,.9), transparent 70%),
    radial-gradient(closest-side at 30% 80%, rgba(199,154,59,.7), transparent 70%),
    linear-gradient(140deg, #2A231E, #171310);
}
.player-thumb svg{ width:40px; height:40px; }
.player-body{ flex:1 1 auto; min-width:0; }
.player-title{ font-family: var(--font-serif); font-weight:700; font-size:1.15rem; }
.player-subtitle{ color: var(--orange); font-weight:600; font-size:.82rem; margin:.1rem 0 .7rem; }

/* custom audio skin */
.audio{ display:none; }
.audio-ui{ display:flex; align-items:center; gap:.7rem; }
.audio-play{
  flex:0 0 auto; width:42px; height:42px; border-radius:50%; border:none; cursor:pointer;
  background: var(--orange); color:#fff; display:flex; align-items:center; justify-content:center;
  transition: background .2s, transform .15s;
}
.audio-play:hover{ background: var(--orange-bright); }
.audio-play:active{ transform: scale(.94); }
.audio-play svg{ width:20px; height:20px; fill: currentColor; }
.audio-play .ic-pause{ display:none; }
.audio-play.is-playing .ic-play{ display:none; }
.audio-play.is-playing .ic-pause{ display:block; }
.audio-time{ font-size:.72rem; font-variant-numeric: tabular-nums; color: var(--ink-soft); flex:0 0 auto; }
.audio-seek{
  -webkit-appearance:none; appearance:none; flex:1 1 auto; height:6px; border-radius:4px;
  background: linear-gradient(var(--orange),var(--orange)) 0/var(--seek,0%) 100% no-repeat, rgba(23,19,16,.15);
  cursor:pointer;
}
.audio-seek::-webkit-slider-thumb{ -webkit-appearance:none; width:16px; height:16px; border-radius:50%; background: var(--orange); border:2px solid #fff; box-shadow:0 1px 4px rgba(0,0,0,.3); }
.audio-seek::-moz-range-thumb{ width:14px; height:14px; border:2px solid #fff; border-radius:50%; background: var(--orange); }
.player-card.is-disabled{ opacity:.75; }
.player-card.is-disabled .audio-ui{ display:none; }
.audio-fallback{ margin:.4rem 0 0; font-weight:600; color: var(--ink-soft); font-style:italic; }

/* ---------- About ---------- */
.about{ background: var(--cream-deep); padding: clamp(3.5rem,7vw,5.5rem) 0; }
.about-inner{ display:grid; grid-template-columns: minmax(0,.9fr) 1.1fr; gap: clamp(1.75rem,5vw,4rem); align-items:center; }
.about-figure{
  position:relative; width:100%; max-width: 420px; margin-inline:auto;
  aspect-ratio: 4 / 5; border-radius: 18px; overflow:hidden;
  background:#171310; box-shadow: var(--shadow);
}
.about-figure img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover; object-position: 50% 16%;
  transform: scale(1.34); transform-origin: 50% 14%;
}
/* warm brand glow + soft bottom shade so the studio backdrop reads intentional */
.about-figure::after{
  content:""; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:
    radial-gradient(120% 85% at 82% -5%, rgba(232,98,30,.30), transparent 55%),
    radial-gradient(110% 70% at 8% 105%, rgba(23,19,16,.42), transparent 60%);
}
.about-copy p{ max-width: 58ch; }
.about-tagline{ color: var(--orange); font-weight:600; }
.about-cta{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.4rem; }

/* ---------- Reviews ---------- */
.reviews{ background: var(--cream); padding: clamp(3.5rem,7vw,5.5rem) 0; }
.reviews-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:1.4rem; }
.review-card{
  background: var(--white); border:1px solid rgba(23,19,16,.08); border-radius: var(--radius);
  padding:2rem 1.6rem 1.6rem; position:relative; box-shadow: var(--shadow);
  transition: transform .2s var(--ease);
}
.review-card:hover{ transform: translateY(-4px); }
.quote-mark{ position:absolute; top:.2rem; left:1.1rem; font-family: var(--font-serif); font-size:3.4rem; color: var(--gold); line-height:1; opacity:.8; }
.review-text{ font-style:italic; color: var(--ink-soft); position:relative; }
.review-name{ font-weight:700; color: var(--ink); margin:.6rem 0 0; }
.review-role{ font-size:.8rem; color: var(--ink-soft); margin:0; }

/* ---------- Contact ---------- */
.contact{ background: var(--cream-deep); padding: clamp(3.5rem,7vw,5.5rem) 0; }
.contact-inner{ display:grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem,5vw,4rem); align-items:start; }
.contact-ic{ display:inline-flex; color: var(--orange); margin-bottom:1rem; }
.contact-ic svg{ width:48px; height:48px; }
.contact-lead{ max-width: 34ch; color: var(--ink-soft); }
.contact-details{ margin-top:1.4rem; display:flex; flex-direction:column; gap:.5rem; }
.contact-details a{ font-weight:600; color: var(--ink); }
.contact-details a:hover{ color: var(--orange); }

.quote-form{ display:grid; grid-template-columns: 1fr 1fr; gap:1rem 1.2rem; }
.field{ display:flex; flex-direction:column; gap:.35rem; }
.field--full{ grid-column: 1 / -1; }
.field label{ font-weight:600; font-size:.8rem; text-transform:uppercase; letter-spacing:.04em; color: var(--ink); }
.field input, .field select, .field textarea{
  font-family: var(--font-sans); font-size:.95rem; color: var(--ink-soft);
  background: var(--white); border:1px solid rgba(23,19,16,.18); border-radius: 8px;
  padding:.7rem .85rem; width:100%; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder{ color:#9b8f82; }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(217,83,26,.15); outline:none;
}
.field textarea{ resize:vertical; min-height:96px; }
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:#c0392b; box-shadow:0 0 0 3px rgba(192,57,43,.12); }
.form-status{ grid-column:1/-1; margin:.4rem 0 0; font-weight:600; min-height:1.2em; }
.form-status.success{ color:#1e7a46; }
.form-status.error{ color:#c0392b; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color:#F1E9DD; }
.footer-top{ text-align:center; padding: clamp(2.5rem,5vw,3.5rem) 0 2rem; }
.footer-descriptor{ font-family: var(--font-script); color: var(--gold); font-size:1.8rem; margin:0 0 .3rem; }
.footer-flourish{ font-family: var(--font-serif); color: var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size: clamp(.95rem,2.2vw,1.25rem); font-weight:700; margin:0 0 1.6rem; }
.footer-contact{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem 2rem; }
.footer-contact li{ display:flex; align-items:center; gap:.5rem; }
.fc-ic{ display:inline-flex; color: var(--orange); }
.fc-ic svg{ width:20px; height:20px; fill:none; stroke: currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.footer-contact a{ color:#F1E9DD; font-weight:500; font-size:.9rem; }
.footer-contact a:hover{ color: var(--orange-bright); }

.veteran-band{ border-top:1px solid rgba(199,154,59,.35); border-bottom:1px solid rgba(199,154,59,.35); background: rgba(199,154,59,.06); padding:1.4rem 0; }
.veteran-inner{ display:flex; align-items:center; justify-content:center; gap:1.2rem; flex-wrap:wrap; text-align:center; }
.af-wings{ width:74px; height:auto; flex:0 0 auto; }
.veteran-text{ margin:0; color: var(--gold); letter-spacing:.14em; text-transform:uppercase; font-size:.82rem; line-height:1.7; }
.veteran-text strong{ color: var(--gold); font-weight:700; font-size:.95rem; }
.vt-stars{ color: var(--gold); letter-spacing:.1em; }

.footer-bottom{ text-align:center; padding:1.6rem 0 2rem; }
.footer-closing{ font-family: var(--font-script); color: var(--orange-bright); font-size:1.7rem; margin:0 0 .4rem; }
.footer-copy{ font-size:.78rem; color:#b7ab9d; margin:0; }

/* ---------- Motion (load-in) ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.hero-copy .reveal{ transition-delay:.05s; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .service{ flex-basis: 33.333%; }
  .service::after{ display:none !important; }
  .why-grid{ grid-template-columns: repeat(3,1fr); gap:1.6rem 1rem; }
  .why-item:nth-child(3n)::after{ display:none; }
  .why-item::after{ top:auto; }
}

@media (max-width: 860px){
  .logo-word{ display:none; }
  /* collapse nav to hamburger */
  .nav-toggle{ display:flex; }
  .site-header{ background: rgba(247,239,228,.94); backdrop-filter: blur(8px); }
  .nav-list{
    position:absolute; top: var(--header-h); left:0; right:0;
    flex-direction:column; gap:0; background: var(--cream);
    box-shadow: 0 12px 24px -12px rgba(23,19,16,.4);
    max-height:0; overflow:hidden; transition: max-height .32s var(--ease); align-items:stretch;
  }
  .nav-list.open{ max-height: 60vh; }
  .nav-list li{ border-bottom:1px solid rgba(23,19,16,.08); }
  .nav-list a{ display:block; padding:1rem clamp(20px,5vw,40px); font-size:.9rem; }
  .nav-list a::after{ display:none; }

  .hero{ padding-bottom: 60px; }
  .hero-inner{ text-align:left; padding-top:1.5rem; min-height:0; }
  .hero-copy{ max-width:none; }
  /* image stacks below the copy as a cropped banner focused on Lisha */
  .hero-media{
    position:static; width:100%; height: 92vw; max-height: 460px;
    margin-top: 1.5rem; object-position: 82% 26%;
  }
  .demos-inner, .about-inner, .contact-inner{ grid-template-columns: 1fr; }
  .about-figure{ max-width: 420px; margin:0 auto; order:-1; }
  .reviews-grid{ grid-template-columns: 1fr; max-width: 560px; margin:0 auto; }
}

@media (max-width: 620px){
  :root{ --header-h: 66px; }
  .logo-mark{ width:112px; }
  .service{ flex-basis: 50%; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(3n)::after{ display:block; }
  .why-item:nth-child(2n)::after{ display:none; }
  .quote-form{ grid-template-columns: 1fr; }
  .hero-cta .btn, .about-cta .btn{ flex:1 1 auto; justify-content:center; }
  .wave-divider svg{ height:56px; }
  .footer-contact{ flex-direction:column; align-items:center; gap:.8rem; }
}
