/* ============================================
   Staging-only components — layered after style.css.
   Everything here is additive; style.css is untouched.
   ============================================ */

/* ============================================
   Header logo — stacked brand mark, tinted wine via
   CSS mask so the PNG stays untouched.
   ============================================ */
.logo-mark {
  display: block;
  width: 58px;
  height: auto;
}
.logo--stacked:hover .logo-mark { opacity: .82; }

/* ============================================
   Mobile nav — overlay the page content instead of
   pushing it down, on a solid white panel.
   ============================================ */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 16px 32px rgba(26, 26, 26, .16);
}

/* ============================================
   Hero — the new headline runs longer per line than the
   original, so it needs a slightly smaller size to keep
   each span on one line.
   ============================================ */
.hero-title { font-size: clamp(1.9rem, 5.5vw, 4rem); }

/* ============================================
   Marquee — orange variant
   ============================================ */
.marquee { background: var(--orange); }
.marquee-track { color: var(--wine); }
.marquee-group span:nth-child(4n+2),
.marquee-group span:nth-child(4n) { color: var(--beige); }

/* ============================================
   Where your week actually goes (the docket)
   ============================================ */
.week {
  background: var(--wine);
  color: var(--beige);
  isolation: isolate;
  overflow: hidden;
}
.week-inner { position: relative; z-index: 2; }
.week .section-title { color: var(--fuchsia); }

.week-lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--magenta);
  margin: 0 0 56px;
}

.week-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 64px;
  align-items: center;
}

.docket {
  background: var(--beige);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 30px 30px 26px;
  transform: rotate(-1deg);
  box-shadow: 8px 8px 0 var(--fuchsia);
}
.docket.reveal { transform: rotate(-1deg) translateY(22px); }
.docket.reveal.in-view { transform: rotate(-1deg) translateY(0); }
.docket-head {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 2px dashed rgba(26, 26, 26, .25);
}
.docket-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  font-size: .92rem;
}
.docket-item { flex-shrink: 1; }
.docket-dots {
  flex-grow: 1;
  min-width: 24px;
  border-bottom: 2px dotted rgba(26, 26, 26, .35);
  transform: translateY(-4px);
}
.docket-hrs {
  font-weight: 700;
  white-space: nowrap;
  color: var(--wine);
}
.docket-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2px dashed rgba(26, 26, 26, .25);
}
.docket-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine);
  background: var(--lime);
  padding: 2px 10px;
  border-radius: 6px;
  display: inline-block;
  transform: rotate(-1deg);
}
.docket-total .docket-dots { transform: translateY(-6px); }
.docket-sum {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--wine);
  white-space: nowrap;
}
.docket-small-print {
  margin: 18px 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .97rem;
  color: rgba(26, 26, 26, .65);
}

.week-kicker h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: var(--beige);
  margin-bottom: 22px;
  max-width: 18ch;
}
.week-hl {
  background: var(--lime);
  color: var(--wine);
  padding: 0 .16em;
  border-radius: 5px;
  display: inline-block;
  transform: rotate(-1deg);
}
.week-kicker p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--beige);
  max-width: 30ch;
  margin: 0;
}
.week-kicker p em { color: var(--lime); }

@media (max-width: 900px) {
  .week-layout { grid-template-columns: 1fr; gap: 48px; }
  /* stacked layout leaves no side gutter — decorations end up behind the copy */
  .week .deco-coil-lime,
  .week .deco-blob-magenta { display: none; }
  /* full-width kicker column can carry bigger type */
  .week-kicker h3 { font-size: clamp(1.7rem, 4.5vw, 2.2rem); max-width: 22ch; }
  .week-kicker p { font-size: clamp(1.45rem, 3.2vw, 1.7rem); max-width: 36ch; }
}
@media (max-width: 600px) {
  .docket { padding: 24px 20px 22px; }
  .docket-row { font-size: .88rem; }
  .week-lede { font-size: 1.3rem; }
}

/* ============================================
   Service cards — full-width catch-all card
   ============================================ */
.service-card--wide { grid-column: 1 / -1; }
.service-card--wide p:not(.service-tag) { max-width: 78ch; }

/* ============================================
   Service card footer tags
   ============================================ */
.service-card .service-tag {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
  opacity: 1;
}

/* ============================================
   How it works — timeline badges
   ============================================ */
.how-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--wine);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ============================================
   Straight talk cards
   ============================================ */
.talk-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.talk-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 18px;
  padding: 30px 26px 28px;
  box-shadow: 6px 6px 0 var(--accent, var(--wine));
  transition: transform .2s ease, box-shadow .2s ease;
}
.talk-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--accent, var(--wine)); }
.talk-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--wine);
  margin-bottom: 10px;
  line-height: 1.25;
}
.talk-card p { margin: 0; font-size: .96rem; color: var(--ink); opacity: .82; }

@media (max-width: 780px) {
  .talk-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Founders (About)
   ============================================ */
.founders {
  /* solid equivalent of the orange at ~56% over the beige body */
  background: #F6A890;
  isolation: isolate;
  overflow: hidden;
}
/* recolour the squiggle so it stands out against the apricot bg */
.founders .deco-squiggle-orange { stroke: var(--olive); }
.founders-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.founders .section-kicker { color: var(--wine); }
.founders .section-title { margin-bottom: 24px; }

.founders-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--wine);
  margin: 0 0 22px;
}
.founders-copy p:not(.founders-intro):not(.section-kicker) {
  margin: 0 0 18px;
  color: var(--ink);
}
.founders-sign {
  font-family: var(--font-display);
  color: var(--wine);
  margin: 26px 0 0 !important;
}

.photo-frame {
  background: var(--beige);
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--wine-deep);
  transform: rotate(2deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* photo fills the frame edge to edge, subject held in the centre */
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.photo-caption {
  margin: 28px 10px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  color: var(--wine);
}

@media (max-width: 860px) {
  .founders-inner { grid-template-columns: 1fr; gap: 46px; }
  /* keep the photo from going full-bleed wide on a single-column layout */
  .founders-photo { max-width: 480px; margin-inline: auto; }
}

/* ============================================
   Mobile type bumps — larger headings, ledes and
   card details on small screens
   ============================================ */
@media (max-width: 620px) {
  .hero-title { font-size: clamp(2rem, 8vw, 2.9rem); }
  .hero-sub { font-size: 1.55rem; }
  .section-title { font-size: 2.2rem; }
  .week-lede, .founders-intro { font-size: 1.45rem; }
  .week-kicker h3 { font-size: 1.7rem; }
  .week-kicker p { font-size: 1.45rem; }
  .services-footnote { font-size: 1.4rem; }
  .service-card h3 { font-size: 1.4rem; }
  .talk-card h3 { font-size: 1.35rem; }
  .how-step h3 { font-size: 1.45rem; }
  .service-num { font-size: 15px; padding: 5px 13px; }
  .photo-caption { font-size: 1.15rem; }
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 920px;
}
.faq-item {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--lime-dark);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 26px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--wine);
}
.faq-icon {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange);
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--ink);
  opacity: .85;
}

@media (max-width: 600px) {
  .faq-q { padding: 20px 20px; font-size: .92rem; }
  .faq-a p { padding: 0 20px 20px; }
}
