/* =========================================
   Liza K Coaching — Shared Stylesheet
   Option F: Purple + Deep Neutral Gray
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #F7F7F7;
  --bg-alt:      #F0F0F0;
  --hero-bg:     #E2E2E2;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-mid:    #555555;
  --text-muted:  #777777;
  --purple:      #7965B5;
  --purple-light:#9B8FCC;
  --dark:        #1A1A1A;
  --border:      #D0D0D0;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --max-width: 1100px;
  --section-pad: 90px 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: #6454A0; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* --- Section Wrappers --- */
.section { padding: var(--section-pad); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.divider {
  width: 40px;
  height: 2px;
  background: var(--purple);
  opacity: 0.4;
  margin: 16px 0 32px;
}

/* --- Hero (homepage) --- */
.hero {
  background: var(--hero-bg);
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--text);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  display: block;
}

.hero-photo::before {
  content: '';
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  z-index: 0;
}

.hero-photo img { position: relative; z-index: 1; }

/* --- Video Hero variant --- */
.hero.hero-video {
  position: relative;
  padding: 0;
  background: #000;
  border-bottom: none;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 40px;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.hero-video-content .hero-eyebrow {
  margin-bottom: 20px;
}

.hero-video-content h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-video-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-video-content .hero-cta {
  justify-content: center;
  text-align: center;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  background: var(--hero-bg);
  border-bottom: 1px solid var(--border);
  padding: 72px 40px 64px;
  text-align: center;
}

.page-hero h1 { color: var(--text); margin-bottom: 14px; }
.page-hero p  { color: var(--text-mid); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.col-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

/* --- Testimonials scrollable row --- */
.testimonials-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  /* hide scrollbar but keep functionality */
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.testimonials-grid::-webkit-scrollbar {
  height: 4px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  position: relative;
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--purple);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 24px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  padding-top: 20px;
}

.testimonial-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Service Cards --- */
.services-grid-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 32px 8px;
  margin-top: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 56px;
}

.service-card {
  padding: 28px 8px 36px;
  text-align: center;
  border-top: 1.5px solid var(--border);
}

.service-icon { display: none; }
.service-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.service-card p { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 20px; }
.service-card .service-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.service-card .service-link {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}

.service-card ul { list-style: none; margin: 16px 0 24px; }
.service-card ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--purple);
  opacity: 0.5;
}

/* --- Event Cards --- */
.events-list { display: flex; flex-direction: column; gap: 28px; margin-top: 48px; }

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.event-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.event-card h3 { margin-bottom: 10px; }
.event-meta { font-size: 0.88rem; color: var(--purple); font-weight: 700; margin-bottom: 16px; }

.event-pricing {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 20px 24px;
  min-width: 180px;
  text-align: center;
}

.event-pricing .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
}

.event-pricing .price-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.event-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--purple); }

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon { font-size: 1.2rem; margin-top: 2px; }

.contact-info-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 4px;
}

.contact-info-item p { color: var(--text); font-size: 0.97rem; }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--dark);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; max-width: 680px; margin-left: auto; margin-right: auto; }
.cta-banner p  { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }

/* --- Footer --- */
.site-footer {
  background: #111111;
  color: rgba(255,255,255,0.5);
  padding: 52px 40px 32px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-logo img {
  height: 52px;
  width: auto;
  opacity: 0.85;
  filter: invert(1);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  line-height: 1.6;
  margin: 0;
}

.footer-links-group h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}

.footer-links-group ul li { margin-bottom: 8px; }
.footer-links-group ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links-group ul li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Inline list styling used in service pages --- */
.bullet-list { list-style: none; margin: 16px 0 28px; }
.bullet-list li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--purple);
  opacity: 0.5;
}

/* --- Background helpers --- */
.bg-white    { background: var(--white); }
.bg-gray     { background: var(--bg); }
.bg-gray-alt { background: var(--bg-alt); }
.bg-dark     { background: var(--dark); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo img { height: 360px; }
  .hero-photo::before { display: none; }
  .two-col       { grid-template-columns: 1fr; gap: 40px; }
  .col-img img   { height: 320px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .event-card    { grid-template-columns: 1fr; padding: 32px; }
  .testimonials-grid { gap: 16px; }
  .testimonial-card  { flex: 0 0 260px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 20px; }

  .site-nav { padding: 0 20px; position: relative; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }

  .hero { padding: 56px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { gap: 16px; }
  .testimonial-card  { flex: 0 0 260px; }

  .footer-top   { flex-direction: column; gap: 32px; }
  .site-footer  { padding: 40px 20px 28px; }
  .page-hero    { padding: 56px 20px 48px; }
}
