/*
Theme Name:  Shylow Thompson
Theme URI:   https://shylowthompson.com
Author:      Shylow Thompson
Description: Custom strategic consulting theme.
Version:     1.0
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FAFAF8;
  --white:     #FFFFFF;
  --ink:       #0C0B0A;
  --ink-60:    #605F5C;
  --ink-30:    #B8B6B2;
  --gold:      #C9993A;
  --gold-dark: #A87C28;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5vw;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--gold); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 5vw 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw 4rem 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink-60);
  max-width: 42ch;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat p {
  font-size: 0.75rem;
  color: var(--ink-60);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.hero-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hero-graphic {
  width: 100%;
  max-width: 460px;
  align-self: stretch;
  background: linear-gradient(140deg, #111827 0%, #1a2744 55%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
.hero-graphic::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.1;
}
.hero-graphic::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 10%, rgba(201,153,58,0.4) 50%, transparent 90%);
}
.hero-graphic-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.hero-graphic-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.hero-graphic-content p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SECTION BASE ── */
section { padding: 7rem 5vw; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-60);
  max-width: 52ch;
  line-height: 1.85;
}

/* ── SERVICES ── */
#services { background: var(--white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: rgba(0,0,0,0.07);
}
.service-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--ink); }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-bar  { background: var(--gold); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--ink-30);
  margin-bottom: 2rem;
  transition: color 0.3s;
}
.service-bar {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.75rem;
  transition: background 0.3s;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.8;
  transition: color 0.3s;
}

/* ── CTA BAND ── */
#cta-band {
  background: var(--ink);
  padding: 6rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}
#cta-band .section-label { color: var(--gold); }
#cta-band .section-title { color: var(--white); max-width: 30ch; }

/* ── CONTACT ── */
#contact { background: var(--bg); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-meta p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 0.2rem;
}
.contact-item a {
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.14);
  padding: 0.75rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }
.form-field textarea { min-height: 110px; }
#form-status {
  font-size: 0.85rem;
  color: var(--gold);
  display: none;
  margin-top: -0.5rem;
}

/* ── FOOTER ── */
.site-footer {
  padding: 2rem 5vw;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer p   { font-size: 0.78rem; color: var(--ink-30); }
.site-footer a   { font-size: 0.78rem; color: var(--ink-60); text-decoration: none; transition: color 0.2s; }
.site-footer a:hover { color: var(--gold); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--white);
  position: fixed;
  top: 61px; left: 0; right: 0;
  padding: 1rem 5vw 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--ink-60);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--ink); }

/* ── MOBILE HERO BAND ── */
.hero-mobile-band { display: none; }

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(140deg, #111827 0%, #1a2744 55%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 88% 100%, 0 100%);
}
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 600;
  color: rgba(201,153,58,0.4);
  letter-spacing: 0.05em;
}
.about-content p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.about-content .section-title { max-width: 28ch; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201,153,58,0.08);
}
.testimonial-gold {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.testimonial-author small {
  font-size: 0.72rem;
  color: var(--ink-30);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── FORM STATUS ── */
#form-status {
  font-size: 0.85rem;
  display: none;
  margin-top: -0.5rem;
  min-height: 1.2em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-mobile-band {
    display: block;
    padding: 1.25rem 0 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-30);
  }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  #cta-band { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { aspect-ratio: 4/3; max-height: 320px; clip-path: none; }
}
@media (max-width: 560px) {
  .hero-stat-row { gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  nav { padding: 1.25rem 5vw; }
}
