/* =============================================
   Sector landing pages (for-agencies, for-luxury-brands, for-tech-brands)
   Loaded after /css/site.css and before each page's own <style>.
   ============================================= */
/* =============================================
   TYPE SCALE
   ============================================= */

/* Section subtitle — descriptive line beneath the signpost */

.mono--blue { color: var(--blue); }

/* =============================================
   NAV
   ============================================= */

.nav__hamburger span { width: 22px; height: 1.5px; background: var(--paper); display: block; transition: all 0.25s; }

/* =============================================
   HERO — agency: two illustrations flanking centred text
   ============================================= */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.prose-body { font-size: clamp(0.95rem, 0.86rem + 0.25vw, 1.1rem); line-height: 1.9; }
.hero__masthead { padding: 0.6rem 2.5rem; display: flex; justify-content: space-between; }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* =============================================
   INTRO — two-column with image to the side
   ============================================= */
.intro {
  background: var(--paper);
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
}
.intro__text {
  padding: 5rem 3rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.intro__text p {
  font-size: clamp(0.95rem, 0.86rem + 0.25vw, 1.1rem);
  line-height: 1.9;
}
.intro__image {
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.matchmake {
  position: relative; width: 100%; max-width: 900px; aspect-ratio: 1 / 1;
}
.matchmake__left, .matchmake__right {
  position: absolute; top: 0; width: 65%; height: 100%;
}
.matchmake__left { left: 0; transform: translateX(-26%); }
.matchmake__right { right: 0; transform: translateX(26%); }
.matchmake__left img, .matchmake__right img { width: 100%; height: 100%; object-fit: contain; }
.matchmake__star {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 38%; opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.matchmake__star img { width: 100%; }

/* =============================================
   SERVICES ACCORDION — paper background
   ============================================= */
.services {
  background: var(--paper);
}
.services__header {
  padding: 4rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.accordion {}
.accordion__item {
  border-top: 1px solid var(--rule);
}
.accordion__item:last-child { border-bottom: 1px solid var(--rule); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  transition: background 0.2s;
}
.accordion__trigger:hover { background: rgba(35,35,35,0.03); }
.accordion__trigger.is-open { background: rgba(35,35,35,0.03); }
.accordion__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black);
  line-height: 1;
  opacity: 0.35;
}
.accordion__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
}
.accordion__subtitle {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--black);
  opacity: 0.55;
  margin-top: 0.25rem;
}
.accordion__icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.accordion__icon svg { width: 12px; height: 12px; transition: transform 0.3s; }
.accordion__trigger.is-open .accordion__icon { background: var(--black); }
.accordion__trigger.is-open .accordion__icon svg { stroke: var(--paper); transform: rotate(45deg); }
.accordion__body {
  display: none;
  border-top: 1px solid var(--rule);
}
.accordion__body.is-open { display: block; }
.accordion__body-inner {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem 3rem;
}
.accordion__body-spacer {}
.accordion__content p {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 0.86rem + 0.25vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.accordion__content ul { list-style: none; margin-bottom: 1.5rem; }
.accordion__content ul li {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  line-height: 1.85;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.accordion__content ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--brick);
}
/* Model note — larger and more readable */
.accordion__content .model-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brick);
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  line-height: 1.8;
}
/* Accordion illustration — right side */
.accordion__illustration {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion__illustration img {
  width: 100%;
  object-fit: contain;
}

/* =============================================
   WHY WE MATCHMAKE — MANUSCRIPT TREATMENT
   ============================================= */
.why { background: var(--paper); position: relative; }
.why .why__header {
  padding: 4rem 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center;
}
.why .why__top {
  display: grid;
  grid-template-columns: 65px 57fr 43fr;
}
.why .why__margin {
  border-right: 1px solid var(--brick);
  position: relative;
}
.why .why__margin::after {
  content: '¶';
  position: absolute;
  top: 3rem;
  right: -0.6em;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brick);
  background: var(--paper);
  padding: 0.2em 0;
}
.why .why__top-copy {
  padding: 3rem 3rem 3rem 2.5rem;
}
.why .why__top-copy p {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 0.86rem + 0.25vw, 1.1rem);
  line-height: 1.9; margin-bottom: 1.25rem;
  text-indent: 2em;
}
.why .why__top-copy p:first-child { text-indent: 0; }
.why .why__top-copy p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.15em 0 0;
  color: var(--brick);
}
.why .why__top-image {
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 1rem;
}
.why .why__top-image img {
  width: 100%;
  height: auto;
}

/* The Big Idea — newspaper-style band */
.why .why__big-idea-band {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 1.5rem 2.5rem;
  text-align: center;
  background: var(--paper);
}
.why .why__big-idea-band h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem); letter-spacing: -0.01em;
  text-decoration: none;
}
.why .why__bottom {
  display: grid; grid-template-columns: 65px 1fr 1fr;
}
.why .why__bottom-margin {
  border-right: 1px solid var(--brick);
}
.why .why__bottom-col { padding: 3rem 3rem 3rem 2.5rem; }
.why .why__bottom-col + .why__bottom-col { border-left: 1px solid var(--rule); padding-left: 3rem; }
.why .why__bottom-col p {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 0.86rem + 0.25vw, 1.1rem);
  line-height: 1.9; margin-bottom: 1.25rem; text-indent: 2em;
}
.why .why__bottom-col p:first-child,
.why .why__bottom-col p.no-indent { text-indent: 0; }
.why .why__bottom-col h3 {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -0.01em;
  color: var(--brick); margin-bottom: 0.75rem; margin-top: 1.5rem;
}
.why .why__bottom-col h3:first-child { margin-top: 0; }
.why__subhead {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -0.01em;
  color: var(--brick); margin: 2rem 0; padding: 1rem 0; display: block;
  text-indent: 0;
}
.why__subhead:first-child { margin-top: 0; }
/* =============================================
   WHAT YOU GET
   ============================================= */
.what {
  background: var(--pink);
}
.what__header {
  padding: 4rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}
.what__card {
  padding: 2.5rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--paper);
}
.what__card:last-child { border-right: none; }
.what__card--pink { background: var(--pink); }
.what__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--black);
  line-height: 1;
  opacity: 0.2;
}
.what__title {}
.what__body {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {

  .hero__masthead { flex-direction: column; gap: 0.25rem; padding: 0.5rem 1.5rem; }
  .intro { grid-template-columns: 1fr; }
  .intro__text { padding: 3rem 1.5rem; }
  .intro__image { display: none; }
  .services__header { padding: 3rem 1.5rem 1.5rem; }
  .accordion__trigger { grid-template-columns: 2.5rem 1fr auto; padding: 1.5rem; }
  .accordion__body-inner { grid-template-columns: 1fr; padding: 1.5rem; }
  .accordion__body-spacer { display: none; }
  .accordion__illustration { width: 100%; max-width: 200px; margin: 1.5rem auto 0; }
  .why__top, .why__bottom { grid-template-columns: 1fr; }
/* Manuscript Why section responsive */
  .why .why__margin, .why .why__bottom-margin, .why .why__top-image { display: none; }
  .why .why__top { grid-template-columns: 1fr; }
  .why .why__top-copy { padding: 2.5rem 1.5rem; }
  .why .why__top-copy p { text-indent: 0; }
  .why .why__bottom { grid-template-columns: 1fr; }
  .why .why__bottom-col p { text-indent: 0; }
  .why__top-copy, .why__bottom-col { padding: 2.5rem 1.5rem; }
  .why__bottom-col:last-child { border-left: none; padding-left: 1.5rem; }
  .what__grid { grid-template-columns: 1fr; }

}
