/* ============================================
   MOVING GUIDE HUB — Page-Specific Styles
   Prefix: mgh-
   ============================================ */

/* ============================================
   MGH-CHAPTER-STACK — Editorial Teasers
   ============================================ */
.mgh-chapter-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding: var(--space-lg) 0 var(--space-4xl);
}

/* -- Why Teaser: Cinematic Image Bleed -- */
.mgh-teaser {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.mgh-teaser:hover {
  transform: scale(1.005);
}

.mgh-teaser--why {
  aspect-ratio: 21 / 9;
  min-height: 300px;
  max-height: 480px;
}

.mgh-teaser__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mgh-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.mgh-teaser:hover .mgh-teaser__media img {
  transform: scale(1.03);
}

.mgh-teaser__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.80) 0%,
    rgba(10, 22, 40, 0.50) 50%,
    rgba(10, 22, 40, 0.20) 100%
  );
}

.mgh-teaser__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--mg-content-width, 1060px);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.mgh-teaser__number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: var(--text-4xl);
  color: var(--mg-gold, #c4918a);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.mgh-teaser__title {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.mgh-teaser__desc {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 480px;
}

.mgh-teaser__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mg-gold, #c4918a);
  margin-top: var(--space-lg);
  transition: gap 0.3s ease;
}

.mgh-teaser:hover .mgh-teaser__arrow {
  gap: var(--space-sm);
}

.mgh-teaser__arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* -- Who Teaser: Cinematic Image Bleed -- */
.mgh-teaser--who {
  aspect-ratio: 21 / 9;
  min-height: 300px;
  max-height: 480px;
}

.mgh-teaser--who .mgh-teaser__overlay {
  background: linear-gradient(
    to left,
    rgba(10, 22, 40, 0.80) 0%,
    rgba(10, 22, 40, 0.50) 50%,
    rgba(10, 22, 40, 0.20) 100%
  );
}

.mgh-teaser--who .mgh-teaser__content {
  align-items: flex-end;
  text-align: right;
}

.mgh-teaser--who .mgh-teaser__desc {
  margin-left: auto;
}

.mgh-teaser--who .mgh-teaser__arrow {
  justify-content: flex-end;
}

/* -- How Teaser: Cinematic Image Bleed -- */
.mgh-teaser--how {
  aspect-ratio: 21 / 9;
  min-height: 300px;
  max-height: 480px;
}

.mgh-teaser--how .mgh-teaser__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.45) 50%,
    rgba(10, 22, 40, 0.10) 100%
  );
}

.mgh-teaser--how .mgh-teaser__content {
  justify-content: flex-end;
}

/* ============================================
   MGH-FAQ — Premium Accordion
   Dark midnight surface, gold accents, numbered items.
   Two-column: sticky header left, accordion right.
   ============================================ */
.mgh-faq {
  background: var(--mg-midnight, #0A1628);
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  overflow: visible;
}

/* Subtle ambient glow */
.mgh-faq::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 145, 138, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.mgh-faq__inner {
  max-width: var(--mg-wide-width, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* -- Header (left column, sticky) -- */
.mgh-faq__header {
  position: sticky;
  top: 120px;
}

.mgh-faq__eyebrow {
  display: block;
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mg-gold, #c4918a);
  margin-bottom: var(--space-lg);
}

.mgh-faq__eyebrow::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--mg-gold, #c4918a);
  opacity: 0.4;
  margin-top: var(--space-md);
}

.mgh-faq__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.02em;
}

.mgh-faq__count {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

/* -- List (right column) -- */
.mgh-faq__list {
  display: flex;
  flex-direction: column;
}

/* -- Item -- */
.mgh-faq__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.5s ease;
}

.mgh-faq__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* -- Question (summary) -- */
.mgh-faq__question {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: padding 0.4s ease;
}

.mgh-faq__question::-webkit-details-marker {
  display: none;
}

.mgh-faq__num {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--mg-gold, #c4918a);
  opacity: 0.5;
  width: 28px;
  transition: opacity 0.4s ease;
}

.mgh-faq__q-text {
  flex: 1;
  font-family: 'Glacial Indifference', sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.4s ease;
}

.mgh-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mgh-faq__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--mg-gold, #c4918a);
  opacity: 0.4;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover */
@media (hover: hover) {
  .mgh-faq__question:hover .mgh-faq__q-text {
    color: #fff;
  }
  .mgh-faq__question:hover .mgh-faq__num {
    opacity: 0.8;
  }
  .mgh-faq__question:hover .mgh-faq__icon svg {
    opacity: 0.7;
  }
}

/* Open state */
.mgh-faq__item[open] {
  background: rgba(255, 255, 255, 0.03);
}

.mgh-faq__item[open] .mgh-faq__question {
  padding-bottom: var(--space-sm);
}

.mgh-faq__item[open] .mgh-faq__num {
  opacity: 1;
}

.mgh-faq__item[open] .mgh-faq__q-text {
  color: #fff;
  font-weight: 700;
}

.mgh-faq__item[open] .mgh-faq__icon {
  transform: rotate(45deg);
}

.mgh-faq__item[open] .mgh-faq__icon svg {
  opacity: 0.7;
}

/* Focus */
.mgh-faq__question:focus-visible {
  outline: 2px solid var(--mg-aurora, #7dd3c0);
  outline-offset: -2px;
  border-radius: 4px;
}

/* -- Answer -- */
.mgh-faq__answer {
  padding: 0 var(--space-md) var(--space-xl) calc(28px + var(--space-lg) + var(--space-md));
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-base);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 56ch;
}

.mgh-faq__answer a {
  color: var(--mg-aurora, #7dd3c0);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(125, 211, 192, 0.3);
  transition: text-decoration-color 0.3s ease;
}

.mgh-faq__answer a:hover {
  text-decoration-color: var(--mg-aurora, #7dd3c0);
}

/* ============================================
   MGH-CONTACT — Contact CTA
   ============================================ */
.mgh-contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.mgh-contact__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--mg-text, #1a1a1a);
  margin-bottom: var(--space-sm);
}

.mgh-contact__desc {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-base);
  color: var(--mg-text-secondary, #4a4a4a);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.mgh-contact__submit {
  display: inline-block;
  font-family: 'Glacial Indifference', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mg-midnight, #0A1628);
  background: var(--mg-gold, #c4918a);
  border: none;
  border-radius: var(--radius-full, 9999px);
  padding: var(--space-md) var(--space-3xl);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mgh-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 145, 138, 0.35);
}

.mgh-contact__submit:focus-visible {
  outline: 2px solid var(--mg-aurora, #7dd3c0);
  outline-offset: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .mgh-teaser--why,
  .mgh-teaser--who,
  .mgh-teaser--how {
    aspect-ratio: 16 / 10;
    min-height: 240px;
    max-height: none;
  }

  .mgh-teaser--who .mgh-teaser__content {
    align-items: flex-start;
    text-align: left;
  }

  .mgh-teaser--who .mgh-teaser__desc {
    margin-left: 0;
  }

  .mgh-teaser--who .mgh-teaser__arrow {
    justify-content: flex-start;
  }

  .mgh-teaser__desc {
    max-width: 100%;
  }

  .mgh-teaser__number {
    font-size: var(--text-3xl);
  }

  /* FAQ responsive */
  .mgh-faq {
    padding: var(--space-3xl) var(--space-md);
  }

  .mgh-faq__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .mgh-faq__header {
    position: static;
    text-align: center;
  }

  .mgh-faq__eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .mgh-faq__title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .mgh-faq__title br {
    display: none;
  }

  .mgh-faq__question {
    padding: var(--space-lg) var(--space-sm);
    gap: var(--space-md);
    min-height: 44px;
  }

  .mgh-faq__num {
    width: 24px;
    font-size: var(--text-xs);
  }

  .mgh-faq__answer {
    padding-left: calc(24px + var(--space-md) + var(--space-sm));
    padding-right: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .mgh-faq {
    padding: var(--space-2xl) var(--space-md);
  }

  .mgh-faq__num {
    display: none;
  }

  .mgh-faq__answer {
    padding-left: var(--space-sm);
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .mgh-faq__icon,
  .mgh-faq__icon svg,
  .mgh-faq__item,
  .mgh-faq__question,
  .mgh-faq__q-text,
  .mgh-faq__num,
  .mgh-faq__answer a {
    transition: none;
  }
}


