/* =====================================================================
   Shepherd's Gate Entertainment — site styles
   Theme pulled from the logo: black ground, mint-green + gold, art-deco.
   ===================================================================== */

:root {
  --black:        #0a0a0a;
  --black-pure:   #000000;
  --panel:        #101312;
  --panel-2:      #0d0f0f;
  --green:        #75c8ae;
  --green-dim:    #5aa892;
  --gold:         #c79e56;
  --gold-light:   #e2c488;
  --white:        #f5f5f2;
  --muted:        #a7adac;
  --line:         rgba(199, 158, 86, 0.22);

  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- shared section scaffolding ---------- */
.section {
  padding: 120px 0;
  position: relative;
  scroll-margin-top: 70px;
}
.section + .section { border-top: 1px solid rgba(255,255,255,0.04); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 18px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 48px;
}
.section-title .accent {
  color: var(--gold);
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 { font-weight: 700; letter-spacing: 0.01em; }
strong { color: var(--white); font-weight: 600; }
em { color: var(--green); font-style: italic; font-family: var(--font-serif); font-size: 1.15em; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 9, 9, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand-mark {
  height: 46px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.scrolled .brand-mark { height: 40px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--gold-light); }
.nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--green);
  color: var(--green) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--green); color: var(--black) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 0 80px;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(117,200,174,0.10), transparent 70%),
    var(--black-pure);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(199,158,86,0.10), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-logo {
  width: clamp(190px, 26vw, 290px);
  margin: 0 auto 30px;
  filter: drop-shadow(0 18px 50px rgba(117,200,174,0.18));
}
.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  color: var(--gold-light);
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* deco divider */
.deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 26px;
  width: 220px;
}
.deco-divider span {
  height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.deco-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.deco-divider i {
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* buttons */
.btn {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-gold {
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 10px 30px rgba(199,158,86,0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(199,158,86,0.34); }
.btn-ghost {
  border: 1px solid var(--green);
  color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--black); transform: translateY(-2px); }

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(199,158,86,0.5);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ===================== ABOUT ===================== */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-copy p { margin: 0 0 22px; color: #d7d9d7; font-weight: 300; font-size: 1.05rem; }
.about-copy p:last-child { margin-bottom: 0; }

.about-pillars {
  background: linear-gradient(160deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 34px;
  position: relative;
}
.about-pillars::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 4px 4px 0 0;
}
.about-pillars h3 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 24px;
}
.pillar-list { list-style: none; margin: 0 0 26px; padding: 0; }
.pillar-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  min-width: 38px;
}
.about-foot { margin: 0; color: var(--muted); font-style: italic; font-family: var(--font-serif); font-size: 1.2rem; }

/* ===================== SERVICES (shared .service block) ===================== */
.service { display: flex; gap: 40px; align-items: flex-start; }
.service-index { flex: none; }
.service-index span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.8;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  opacity: 0.55;
}
.service-body { flex: 1; }
.service-body > h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.15;
}
.service-body > p { color: #d2d4d2; font-weight: 300; font-size: 1.05rem; margin: 0 0 22px; max-width: 760px; }

.touring .service-body > h3,
.talent .service-body > h3 { color: var(--white); }

.subservices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.subservice {
  background: linear-gradient(165deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.subservice:hover { transform: translateY(-4px); border-color: var(--green); }
.subservice h4 {
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}
.subservice p { margin: 0; color: var(--muted); font-size: 0.92rem; font-weight: 300; }

/* ===================== TOURING ===================== */
.touring { background: linear-gradient(180deg, var(--black), #070908); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--black);
  padding: 30px 26px;
  transition: background 0.3s var(--ease);
}
.feature:hover { background: var(--panel); }
.feature h4 {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.9rem; font-weight: 300; }

/* ===================== TALENT ===================== */
.talent { background: var(--black); }
.pull-quote {
  font-family: var(--font-serif) !important;
  font-style: italic;
  font-size: 1.5rem !important;
  line-height: 1.5;
  color: var(--gold-light) !important;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin-top: 32px !important;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials { background: linear-gradient(180deg, #070908, var(--black)); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: linear-gradient(165deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 30px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--green);
  opacity: 0.4;
  position: absolute;
  top: 10px; left: 22px;
  line-height: 1;
}
.testimonial blockquote {
  margin: 22px 0 22px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
}
.testimonial figcaption { color: var(--gold); font-weight: 600; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.05em; }
.testimonial figcaption span { display: block; color: var(--muted); font-weight: 300; text-transform: none; letter-spacing: 0; margin-top: 4px; }
.is-placeholder blockquote { color: var(--muted); }
.placeholder-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 28px; font-style: italic; opacity: 0.7; }

/* ===================== CONTACT ===================== */
.contact { background: var(--black); padding-bottom: 140px; }
.contact-card {
  background: radial-gradient(120% 120% at 50% 0%, rgba(117,200,174,0.08), transparent 60%), linear-gradient(165deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 64px 56px;
  text-align: center;
}
.contact-card .section-title { margin-bottom: 18px; }
.contact-lead { color: var(--muted); max-width: 560px; margin: 0 auto 44px; font-weight: 300; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
  text-align: left;
}
.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.contact-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
a.contact-value:hover { color: var(--gold-light); }

.hire { max-width: 720px; margin: 0 auto; }
.hire h3 {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 26px;
}
.hire-steps { list-style: none; margin: 0 0 40px; padding: 0; text-align: left; }
.hire-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #d2d4d2;
  font-weight: 300;
}
.hire-steps li:last-child { border-bottom: none; }
.hire-steps span {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--black-pure);
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  text-align: center;
}
.footer-logo { width: 150px; margin: 0 auto 18px; }
.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.25rem;
  margin: 0 0 28px;
}
.footer-nav { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.footer-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}
.footer-nav a:hover { color: var(--green); }
.copyright { color: #5d6261; font-size: 0.78rem; margin: 0; letter-spacing: 0.03em; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-cue span { animation: none; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .subservices { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 0 40px;
    background: rgba(8,9,9,0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 110; }
  .section { padding: 84px 0; }
  .service { flex-direction: column; gap: 14px; }
  .service-index span { -webkit-text-stroke: 1px var(--gold); }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 44px 26px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .btn { width: 100%; }
}
