/**
 * REFINED_MOVEMENT - Coming Soon Page Styles
 * Matches client inspiration design
 */

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.2) contrast(0.92);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  max-width: 88%;
  min-height: 460px;
  background: rgba(26, 29, 35, 0.54);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 48px 55px;
  width: 100%;
  max-width: 100%;
}

.hero-logo {
  margin-bottom: 56px;
}

.hero-logo h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero-logo .location {
  font-family: var(--font-location);
  font-size: 18px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  opacity: 0.95;
  display: block;
  line-height: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 84px;
  color: var(--color-white);
  margin: 0 0 36px;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-tagline {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  color: #C9A876;
  font-weight: 400;
  margin-bottom: 52px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 0;
  opacity: 0;
  line-height: 1.4;
  height: 0;
  overflow: hidden;
  position: absolute;
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-cta .btn {
  padding: 16px 42px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */

.content-section {
  padding: var(--space-xxxl) var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.content-section.bg-linen {
  background-color: var(--bg-secondary);
}

.content-section.bg-white {
  background-color: var(--color-white);
}

.content-section.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--font-size-body-large);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.content-section.bg-dark .section-subtitle {
  color: rgba(245, 243, 237, 0.8);
}

/* ========================================
   PRICING GRID - Compact Professional Layout
   ======================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  background-color: var(--color-white);
  border-radius: 0;
  padding: var(--space-lg) var(--space-md);
  box-shadow: 0 1px 3px rgba(26, 29, 35, 0.06);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  box-shadow: 0 4px 12px rgba(26, 29, 35, 0.1);
  border-color: var(--accent-primary);
}

/* Featured Pricing Card */
.pricing-card.featured {
  border: 2px solid var(--color-charcoal);
  box-shadow: 0 4px 16px rgba(26, 29, 35, 0.15);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  box-shadow: 0 6px 20px rgba(26, 29, 35, 0.2);
  border-color: var(--color-charcoal);
}

.pricing-badge {
  background-color: var(--accent-primary);
  color: var(--color-charcoal);
  padding: 4px 12px;
  border-radius: 0;
  display: inline-block;
  font-weight: var(--font-weight-bold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 auto var(--space-sm);
}

.pricing-header {
  margin-bottom: var(--space-md);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  justify-content: center;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  line-height: 1;
}

.pricing-regular {
  font-size: 16px;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  text-align: left;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.4;
}

.pricing-includes li::before {
  content: '✓';
  color: var(--accent-primary);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-footer .btn {
  padding: 12px 24px;
  font-size: 14px;
}

.pricing-disclaimer {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
  line-height: 1.4;
}

/* ========================================
   RESPONSIVE - LARGE TABLET / SMALL DESKTOP
   ======================================== */

@media (min-width: 1024px) and (max-width: 1200px) {
  .hero-overlay {
    width: 620px;
    min-height: 500px;
  }

  .hero-content {
    padding: 46px 54px;
  }

  .hero-title {
    font-size: 76px;
  }

  .hero-logo h1 {
    font-size: 38px;
  }

  .hero-tagline {
    font-size: 20px;
  }
}

/* ========================================
   RESPONSIVE - STANDARD TABLET (iPad Air, etc)
   ======================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-overlay {
    width: 82%;
    min-height: 480px;
  }

  .hero-content {
    padding: 40px 44px;
  }

  .hero-logo {
    margin-bottom: 44px;
  }

  .hero-logo h1 {
    font-size: 34px;
  }

  .hero-logo .location {
    font-size: 15px;
  }

  .hero-title {
    font-size: 64px;
    margin-bottom: 30px;
  }

  .hero-tagline {
    font-size: 18px;
    margin-bottom: 44px;
  }

  .hero-cta {
    flex-direction: row !important;
    gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .hero-cta .btn {
    padding: 14px 32px;
    width: auto !important;
    flex: 0 1 auto;
    min-width: 180px;
  }

  .pricing-amount {
    font-size: 52px;
  }

  .content-section {
    padding: 80px 32px;
  }
}

/* ========================================
   STUDIO GALLERY GRID
   ======================================== */

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  font-size: 18px;
  color: var(--text-primary);
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-secondary);
}

.faq-icon {
  font-size: 28px;
  font-weight: var(--font-weight-light);
  color: var(--accent-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--space-lg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  margin: 0;
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
}

/* ========================================
   RESPONSIVE - LARGE MOBILE / SMALL TABLET
   ======================================== */

@media (min-width: 600px) and (max-width: 767px) {
  .hero-overlay {
    width: 80%;
    min-height: 440px;
  }

  .hero-content {
    padding: 36px 32px;
  }

  .hero-logo {
    margin-bottom: 40px;
  }

  .hero-logo h1 {
    font-size: 30px;
  }

  .hero-title {
    font-size: 50px;
    margin-bottom: 30px;
  }

  .hero-tagline {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .hero-cta {
    flex-direction: row;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-cta .btn {
    width: auto;
    min-width: 160px;
    flex: 0 1 auto;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (Revolutionary Bottom Gradient)
   ======================================== */

@media (max-width: 599px) {
  .hero {
    min-height: calc(100vh - var(--header-height));
    align-items: flex-end;
  }

  .hero-overlay {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 92%;
    min-height: 384px;
    background: rgba(26, 29, 35, 0.54);
    padding-bottom: 32px;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding: 40px 28px 20px;
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    margin-bottom: 24px;
  }

  .hero-logo h1 {
    font-size: 24px;
  }

  .hero-logo .location {
    font-size: 11px;
    letter-spacing: 0.3em;
  }

  .hero-title {
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .hero-cta .btn {
    padding: 16px 32px;
    font-size: 15px;
    width: 100%;
  }

  .content-section {
    padding: var(--space-xxl) var(--space-md);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .pricing-card {
    padding: var(--space-lg);
  }

  .pricing-amount {
    font-size: 40px;
  }

  /* Gallery mobile layout */
  .studio-gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  /* FAQ mobile adjustments */
  .faq-question {
    font-size: 16px;
    padding: var(--space-md);
  }

  .faq-answer {
    padding: 0 var(--space-md);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
  }
}
