/* ========================================
   DEVELOP YOUR RHYTHM — Page-Specific Styles
   ======================================== */

/* --- HERO VARIANT --- */
.hero--develop {
  min-height: 70vh;
  min-height: 70dvh;
}

.hero-video-placeholder--develop {
  background: linear-gradient(160deg, #0d0d0d 0%, #0A0A0A 30%, #141414 60%, #0A0A0A 100%);
}

.hero-video-placeholder--develop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(243, 187, 67, 0.06) 0%, transparent 60%);
}

.hero-image-wrap--develop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image-wrap--develop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) blur(3px);
  transform: scale(1.05);
}


/* ========================================
   TWO PATHS INTRO
   ======================================== */
.paths-intro {
  padding: var(--section-pad-mobile) 0 48px;
  background-color: var(--black);
}

.paths-intro-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.paths-intro-inner p {
  margin-bottom: 28px;
}

.paths-intro-inner h2 {
  margin-bottom: 32px;
}

.paths-intro-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


/* ========================================
   GENERAL INQUIRY
   ======================================== */
.inquiry {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--black);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.inquiry-text h2 {
  margin-bottom: 20px;
}

.inquiry-text > p {
  margin-bottom: 16px;
}

/* What Happens Next */
.what-happens {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-dark);
}

.what-happens h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 24px;
}

.what-happens-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.what-happens-step:last-of-type {
  margin-bottom: 0;
}

.what-happens-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gold);
}

.what-happens-step h5 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.what-happens-step p {
  font-size: 0.875rem;
  line-height: 1.6;
}

.what-happens-note {
  margin-top: 24px;
  font-style: italic;
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-size: 1rem !important;
}

/* Form Styles (shared between inquiry + dinner) */
.develop-form {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gray-dark);
  padding: 36px 28px;
}

.develop-form-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-dark);
}

.develop-form .form-group {
  margin-bottom: 24px;
}

.develop-form .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.develop-form .form-group input,
.develop-form .form-group textarea,
.develop-form .form-group select {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
  appearance: none;
  border-radius: 0;
}

.develop-form .form-group input:focus,
.develop-form .form-group textarea:focus,
.develop-form .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.develop-form .form-group input::placeholder,
.develop-form .form-group textarea::placeholder {
  color: var(--gray);
}

.develop-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.develop-form .form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Multi-select dropdown */
.multi-dropdown {
  position: relative;
}

.multi-dropdown-toggle {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
}

.multi-dropdown-toggle:hover {
  border-color: rgba(243, 187, 67, 0.3);
}

.multi-dropdown.open .multi-dropdown-toggle {
  border-color: var(--gold);
}

.multi-dropdown-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 12px;
}

.multi-dropdown-text.has-selection {
  color: var(--white);
}

.multi-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--dark);
  border: 1px solid var(--gray-dark);
  border-top: none;
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
}

.multi-dropdown.open .multi-dropdown-menu {
  display: block;
}

.multi-dropdown-menu label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
}

.multi-dropdown-menu label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.multi-dropdown-menu input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gray);
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.multi-dropdown-menu input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.multi-dropdown-menu input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3.5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--gray-dark);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.checkbox-label:hover {
  border-color: rgba(243, 187, 67, 0.3);
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label:has(input:checked) {
  border-color: rgba(243, 187, 67, 0.4);
  background: rgba(243, 187, 67, 0.05);
}

.develop-form .form-submit {
  width: 100%;
  margin-top: 8px;
}

.develop-form .form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gray);
}


/* ========================================
   DINNER SECTION
   ======================================== */
.dinner {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--dark);
  position: relative;
}

.dinner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.dinner-intro {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 56px;
}

.dinner-intro h2 {
  margin-bottom: 0;
}

.dinner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.dinner-lead {
  font-size: 1.25rem !important;
  margin-bottom: 20px;
}

.dinner-text > p {
  margin-bottom: 16px;
}

/* Dinner How It Works */
.dinner-how-it-works {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-dark);
}

.dinner-how-it-works h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 24px;
}

.dinner-step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.dinner-step:last-child {
  margin-bottom: 0;
}

.dinner-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gold);
}

.dinner-step h5 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.dinner-step p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Dinner form accent */
.develop-form--dinner {
  border-color: rgba(243, 187, 67, 0.15);
}

.develop-form--dinner .develop-form-title {
  border-bottom-color: rgba(243, 187, 67, 0.15);
}


/* ========================================
   FOUNDER'S NOTE
   ======================================== */
.founder-note {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--black);
  position: relative;
}

.founder-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.founder-note-inner {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.founder-note-inner blockquote {
  margin: 32px 0;
  text-align: left;
}

.founder-note-inner blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-note-inner blockquote p:last-child {
  margin-bottom: 0;
}

.founder-note-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.founder-note-photo {
  width: 48px;
  height: 48px;
  background-color: var(--dark-mid);
  border: 1px solid var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-note-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.founder-note-initials {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray);
  opacity: 0.4;
}

.founder-note-attribution strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
}

.founder-note-attribution span {
  font-size: 0.8125rem;
  color: var(--gray);
}


/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--dark);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-header h2 {
  margin-bottom: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  color: var(--gray-light);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--white);
}

.faq-question[aria-expanded="true"] {
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
}


/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: var(--section-pad-mobile) 0;
  background-color: var(--black);
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 32px;
  border: 1px solid var(--gray-dark);
  position: relative;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.final-cta-inner h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

.final-cta-inner p {
  margin-bottom: 8px;
}

.final-cta-closer {
  color: var(--white) !important;
  font-weight: 600;
  font-size: 1.125rem !important;
  font-family: var(--font-display);
  font-style: italic;
  margin-bottom: 32px !important;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}


/* ========================================
   DESKTOP BREAKPOINTS
   ======================================== */
@media (min-width: 768px) {
  .paths-intro-buttons {
    flex-direction: row;
    gap: 16px;
  }

  .inquiry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .dinner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .final-cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .develop-form {
    padding: 48px 40px;
  }

  .inquiry-grid {
    gap: 80px;
  }

  .dinner-grid {
    gap: 80px;
  }
}
