/* ===========================================================
   Golden Hills Productions — landing page
   Palette: golden-hour sunset over San Diego hills
   =========================================================== */

:root {
  --ink:       #1c1430;   /* deep plum-navy, the "trust" anchor */
  --ink-soft:  #463a5c;
  --cream:     #fff8ef;   /* warm paper background */
  --cream-2:   #fdeedd;
  --gold:      #ffc94d;   /* golden hour */
  --gold-deep: #f5a623;
  --coral:     #f4845f;   /* warm hill */
  --berry:     #e85d75;   /* playful pop */
  --white:     #ffffff;

  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 18px 40px -22px rgba(28, 20, 48, 0.45);
  --shadow-sm: 0 8px 22px -14px rgba(28, 20, 48, 0.5);
  --maxw:      1140px;

  --display: "Fraunces", Georgia, serif;
  --body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); line-height: 1.08; font-weight: 600; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.5em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(28,20,48,0.6); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(28, 20, 48, 0.25);
}
.btn-ghost:hover { background: rgba(28,20,48,0.05); transform: translateY(-2px); }
.btn-block { width: 100%; padding: 1.05em; font-size: 1.05rem; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,20,48,0.06);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-mark { display: grid; place-items: center; }
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-sub {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; font-weight: 500; }
.nav-links a { font-size: 0.98rem; transition: color 0.15s; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta {
  background: var(--gold);
  padding: 0.55em 1.1em;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--gold-deep); color: var(--ink) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, var(--cream-2) 0%, transparent 55%),
    var(--cream);
}
.hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,201,77,0.55), rgba(244,132,95,0.18) 45%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }
.kicker {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  background: var(--white);
  border: 1px solid rgba(28,20,48,0.08);
  padding: 0.45em 1em;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  max-width: 14ch;
  margin-bottom: 1.2rem;
}
.hl {
  background: linear-gradient(105deg, var(--gold-deep), var(--coral) 55%, var(--berry));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 52ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.5rem; }
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.7rem;
}
.hero-badges li {
  background: var(--white);
  border: 1px solid rgba(28,20,48,0.08);
  padding: 0.5em 0.95em;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* ===== Trust strip ===== */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1rem, 4vw, 2.5rem);
}
.strip p {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}
.strip p::first-letter { color: var(--gold); }

/* ===== Section heads ===== */
.section-head { max-width: 60ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}
.eyebrow.light { color: var(--gold); }
.section-head h2 { font-size: clamp(1.8rem, 4.5vw, 2.9rem); }
.section-sub { margin-top: 0.9rem; color: var(--ink-soft); font-size: 1.08rem; }
.section-sub.light { color: rgba(255,248,239,0.78); }

/* ===== Services ===== */
.services { padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem); max-width: var(--maxw); margin: 0 auto; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(28,20,48,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 54px; height: 54px;
  font-size: 1.6rem;
  background: var(--cream-2);
  border-radius: 16px;
  margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.card p { color: var(--ink-soft); }

/* ===== Work ===== */
.work { padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem); max-width: var(--maxw); margin: 0 auto; }
.work-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.2rem;
}
.work-card {
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 280px;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.work-card.featured {
  background: linear-gradient(150deg, var(--gold) 0%, var(--coral) 70%, var(--berry) 130%);
  color: var(--ink);
  box-shadow: var(--shadow);
  justify-content: flex-end;
}
.work-card.featured:hover { transform: translateY(-5px); }
.work-card.soon {
  background: var(--white);
  border: 2px dashed rgba(28,20,48,0.18);
  justify-content: flex-end;
}
.work-tag {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(28,20,48,0.12);
  padding: 0.4em 0.85em;
  border-radius: 100px;
}
.work-tag.muted { background: var(--cream-2); color: var(--ink-soft); }
.work-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.work-card p { max-width: 48ch; }
.work-card.featured p { color: rgba(28,20,48,0.82); }
.work-card.soon p { color: var(--ink-soft); }
.work-link { font-weight: 700; margin-top: 0.3rem; }
.work-card.featured .work-link { text-decoration: underline; text-underline-offset: 4px; }
.work-card.soon .work-link { color: var(--gold-deep); }

/* ----- Featured card: Toddler Learning Club channel branding ----- */
.work-card.tlc {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  justify-content: flex-start;
  min-height: 340px;
  background: linear-gradient(180deg, #cfeeff 0%, #eafaff 46%, #eafaff 58%, #dff5d0 100%);
  color: var(--ink);
}
/* pastel rainbow arc framing the top */
.tlc-rainbow {
  position: absolute;
  z-index: -1;
  top: -58%;
  left: 50%;
  transform: translateX(-50%);
  width: 145%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.75;
  background: radial-gradient(circle,
    transparent 0 38%,
    #ff9a9a 38% 43%,
    #ffce85 43% 48%,
    #fff19a 48% 53%,
    #b6e9a0 53% 58%,
    #9fd8ff 58% 63%,
    #cbb6f2 63% 68%,
    transparent 68%);
}
/* rolling green hills along the bottom */
.tlc-hills {
  position: absolute;
  z-index: -1;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  background:
    radial-gradient(80% 120% at 20% 100%, #7bc35a 0 55%, transparent 56%),
    radial-gradient(90% 120% at 78% 100%, #8fd06a 0 58%, transparent 59%),
    radial-gradient(120% 130% at 50% 100%, #bce7a0 0 60%, transparent 61%);
}
/* multi-color wordmark, à la the channel banner */
.tlc-wordmark { display: flex; flex-direction: column; gap: 0.25rem; line-height: 1; }
.tlc-toddler {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tlc-toddler i { font-style: normal; text-shadow: 0 2px 0 rgba(255, 255, 255, 0.7); }
.tlc-toddler i:nth-child(1) { color: #f5a623; }
.tlc-toddler i:nth-child(2) { color: #f5845f; }
.tlc-toddler i:nth-child(3) { color: #57c1c9; }
.tlc-toddler i:nth-child(4) { color: #e85d75; }
.tlc-toddler i:nth-child(5) { color: #8bc34a; }
.tlc-toddler i:nth-child(6) { color: #4aa3df; }
.tlc-toddler i:nth-child(7) { color: #f5a623; }
.tlc-club {
  font-family: var(--body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
/* handwritten-feel tagline */
.tlc-tagline {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: #2f7a39;
  max-width: 30ch;
}
/* YouTube-red subscribe pill */
.tlc-subscribe {
  align-self: flex-start;
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  background: #ff0000;
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6em 1.25em;
  border-radius: 100px;
  box-shadow: 0 10px 22px -12px rgba(255, 0, 0, 0.7);
  transition: background 0.18s ease;
}
.work-card.tlc:hover .tlc-subscribe { background: #e60000; }
/* tag chip + body copy tuned for the bright scene */
.work-card.tlc .work-tag { background: rgba(255, 255, 255, 0.8); color: var(--ink); }
.work-card.tlc p:not(.tlc-tagline) { color: rgba(28, 20, 48, 0.78); }

/* ===== Founders ===== */
.founders {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
  background: radial-gradient(100% 120% at 0% 0%, #2a1f44 0%, var(--ink) 60%);
  color: var(--cream);
}
.founders .section-head h2 { color: var(--cream); }
.founders .eyebrow { color: var(--gold); }
.founders .section-sub { color: rgba(255, 248, 239, 0.72); }

.founder {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.founder.reverse { grid-template-columns: 1fr minmax(0, 300px); }
.founder + .founder { margin-top: clamp(2.5rem, 5vw, 4rem); }
.founder.reverse .founder-photo { order: 2; }

.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--gold) 0%, var(--coral) 70%, var(--berry) 130%);
}
.founder-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: rgba(28, 20, 48, 0.55);
  letter-spacing: 0.02em;
}
.founder-photo img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-role {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.founder-body h3 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 0.9rem; color: var(--cream); }
.founder-body > p { color: rgba(255, 248, 239, 0.78); max-width: 54ch; margin-bottom: 1.3rem; }

.founder-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.6rem;
  margin-bottom: 1.6rem;
}
.founder-tags li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--cream);
  padding: 0.45em 0.95em;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Button treatments tuned for the dark band */
.founders .btn-primary { background: var(--gold); color: var(--ink); }
.founders .btn-primary:hover { background: var(--gold-deep); }
.founders .btn-ghost { color: var(--cream); border-color: rgba(255, 248, 239, 0.3); }
.founders .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

/* Where we overlap */
.founders-shared {
  max-width: var(--maxw);
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.founders-shared h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--cream); margin-bottom: 0.7rem; }
.founders-shared > p { max-width: 60ch; margin: 0 auto clamp(1.8rem, 4vw, 2.6rem); color: rgba(255, 248, 239, 0.72); }
.overlap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  text-align: left;
}
.overlap-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
}
.overlap-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  font-size: 1.5rem;
  background: rgba(255, 201, 77, 0.16);
  border-radius: 14px;
  margin-bottom: 1rem;
}
.overlap-card h4 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-bottom: 0.45rem; }
.overlap-card p { color: rgba(255, 248, 239, 0.7); font-size: 0.96rem; }

/* ===== Process ===== */
.process { padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem); max-width: var(--maxw); margin: 0 auto; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
}
.steps li {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.step-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: 0.6rem;
}
.steps h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.steps p { color: var(--ink-soft); font-size: 0.97rem; }

/* ===== Pitch / form ===== */
.pitch {
  background:
    radial-gradient(100% 120% at 0% 0%, #2a1f44 0%, var(--ink) 60%);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
}
.pitch-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pitch-form {
  margin-top: 0.5rem;
  display: grid;
  gap: 1.3rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem);
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-weight: 600; font-size: 0.95rem; }
.req { color: var(--gold); }
.field input,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 0.85em 1em;
  transition: border-color 0.15s, background 0.15s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,248,239,0.4); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.field input.invalid,
.field textarea.invalid { border-color: var(--berry); }
.field small { color: rgba(255,248,239,0.55); font-size: 0.85rem; }
.form-note { text-align: center; font-weight: 600; min-height: 1.2em; }
.form-note.ok { color: var(--gold); }
.form-note.err { color: var(--berry); }
/* spam honeypot — kept in the layout & submitted, but invisible to humans */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand .brand-text { color: var(--cream); font-size: 1.3rem; }
.footer-brand .brand-sub { color: var(--gold); }
.footer-brand p { color: rgba(255,248,239,0.6); margin-top: 0.5rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-links a { color: rgba(255,248,239,0.8); font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.copyright {
  max-width: var(--maxw);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,248,239,0.45);
  font-size: 0.88rem;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .work-grid { grid-template-columns: 1fr; }
  .founder,
  .founder.reverse { grid-template-columns: 1fr; }
  .founder.reverse .founder-photo { order: 0; }
  .founder-photo { aspect-ratio: 4 / 5; max-width: 300px; margin-inline: auto; width: 100%; }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(28,20,48,0.1);
    padding: 0.5rem 1.5rem 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.28s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid rgba(28,20,48,0.06); }
  .nav-cta { text-align: center; margin-top: 0.8rem; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
