.page-hero {
  padding: 90px 0 100px;
  position: relative;
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.ph-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 28px;
}
.ph-meta .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--accent-deep);
}
.ph-meta .divider {
  width: 1px;
  height: 10px;
  background: var(--line);
}
.ph-meta .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.page-hero h1 {
  font-size: clamp(46px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.page-hero h1 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-deep);
}
.ph-sub {
  margin-top: 28px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
}
.ph-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.ph-signals {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.ph-signal {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.ph-signal svg {
  color: var(--accent-deep);
  flex-shrink: 0;
}

.ph-visual {
  position: relative;
  height: 600px;
}
.ph-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 75%;
  border-radius: var(--radius);
  overflow: hidden;
}
.ph-img-sec {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 42%;
  border-radius: var(--radius);
  border: 6px solid var(--bg);
  z-index: 2;
}
.ph-img-main img,
.ph-img-sec img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq {
  padding: 120px 0;
}
.faq .wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.faq-head h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}
.faq-head h2 .italic {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 300;
}
.faq-head p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--accent-deep);
}
.faq-q .plus {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before {
  width: 14px;
  height: 1px;
}
.faq-q .plus::after {
  width: 1px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 28px;
}
.faq-a p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 620px;
}

.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 22vw;
  font-weight: 300;
  font-style: italic;
  color: rgba(246, 243, 238, 0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-cta .eyebrow {
  color: rgba(246, 243, 238, 0.6);
}
.final-cta .section-label {
  justify-content: center;
}
.final-cta .section-label::before,
.final-cta .section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--bg);
  opacity: 0.4;
}
.final-cta h2 {
  color: var(--bg);
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.02;
  margin-bottom: 24px;
}
.final-cta h2 .italic {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}
.final-cta p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246, 243, 238, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-primary {
  background: var(--warm);
  color: var(--ink);
}
.final-cta .btn-primary:hover {
  background: var(--bg);
}
.final-cta .btn-ghost {
  border-color: rgba(246, 243, 238, 0.4);
  color: var(--bg);
}
.final-cta .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.final-cta-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 243, 238, 0.15);
}
.final-cta-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(246, 243, 238, 0.8);
}
.final-cta-meta svg {
  color: var(--warm);
}

@media (max-width: 1024px) {
  .page-hero .wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .faq .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    padding: 50px 0 70px;
  }
  .ph-signals {
    gap: 20px;
  }
  .ph-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ph-actions .btn {
    width: 100%;
  }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-actions .btn {
    width: 100%;
  }
}
