.chef-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background: var(--cream);
}

.chef-gate-container {
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.chef-gate-icon {
  margin-bottom: 24px;
}

.chef-gate-title {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.chef-gate-line {
  display: block;
  color: var(--green-dark);
}

.chef-gate-accent {
  display: block;
  color: var(--coral);
  font-style: italic;
}

.chef-gate-subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.chef-gate-form {
  margin-bottom: 32px;
}

.chef-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid #E0DCD6;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.chef-input-wrapper:focus-within {
  border-color: var(--coral);
}

.chef-input {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-dark);
}

.chef-input::placeholder {
  color: var(--text-light);
}

.chef-input.input-error {
  animation: shake 0.4s ease;
}

.chef-input-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border: none;
  border-radius: 10px;
  margin: 4px;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s;
}

.chef-input-btn:hover {
  background: var(--green-medium);
}

.chef-error {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #C0392B;
  margin-top: 12px;
  min-height: 20px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}

.chef-gate-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.chef-gate-divider::before,
.chef-gate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0DCD6;
}

.chef-gate-divider span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.chef-gate-apply-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.chef-apply-btn {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.chef-apply-btn:hover {
  background: var(--green-dark);
  color: var(--white);
}

.chef-gate-footer {
  margin-top: 48px;
  text-align: center;
}

.chef-gate-footer p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.chef-apply-section {
  padding: 120px 24px 80px;
  background: var(--cream);
  min-height: 100vh;
}

.chef-apply-container {
  max-width: 600px;
  margin: 0 auto;
}

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

.chef-apply-title {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.chef-apply-intro {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.chef-apply-note {
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 12px;
}

.chef-apply-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-section {
  margin-bottom: 36px;
}

.form-section:last-of-type {
  margin-bottom: 40px;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-section-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-label svg {
  color: var(--text-light);
}

.chef-apply-form .chef-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #2D3B2D;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.chef-apply-form .chef-input:focus {
  border-color: var(--coral);
  outline: none;
}

.chef-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-hint {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.recipe-card-input {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: 14px;
}

.recipe-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 28px;
}

.recipe-card-fields {
  flex: 1;
}

.recipe-card-fields .form-group {
  margin-bottom: 12px;
}

.recipe-card-fields .form-group:last-child {
  margin-bottom: 0;
}

.recipe-card-input .chef-input {
  background: var(--white);
  border: 1px solid #2D3B2D;
}

.chef-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.chef-submit-btn:hover {
  background: var(--green-medium);
}

.chef-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.chef-apply-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.success-icon {
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.success-text {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 16px;
}

.success-text-secondary {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 32px;
}

.chef-back-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  transition: opacity 0.2s;
}

.chef-back-link:hover {
  opacity: 0.8;
}

.info-hero {
  padding: 160px 32px 80px;
  background: var(--green-dark);
  text-align: center;
}

.info-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.info-kicker {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--coral);
  margin-bottom: 16px;
}

.info-hero-title {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.info-hero .chef-gate-line {
  color: var(--white);
}

.info-hero .chef-gate-accent {
  color: var(--coral);
}

.info-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.info-section {
  padding: 100px 32px;
}

.info-section-cream {
  background: var(--cream);
}

.info-section-dark {
  background: var(--green-dark);
}

.info-section-white {
  background: var(--white);
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
}

.info-section-kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 12px;
  text-align: center;
}

.info-kicker-light {
  color: var(--coral);
}

.info-section-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}

.info-section-title em {
  color: var(--coral);
  font-style: italic;
}

.info-title-light {
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.info-card-icon {
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.info-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.info-step {
  text-align: center;
}

.info-step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 16px;
  opacity: 0.8;
}

.info-step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.info-step p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.info-philosophy {
  max-width: 640px;
  margin: 0 auto;
}

.info-philosophy-text {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-philosophy-text:last-child {
  margin-bottom: 0;
}

.info-expectations {
  max-width: 680px;
  margin: 0 auto;
}

.info-expect-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #EDEBE7;
}

.info-expect-item:last-child {
  border-bottom: none;
}

.info-expect-icon {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  min-width: 24px;
}

.info-expect-item h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.info-expect-item p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.info-expectations-dark .info-expect-item {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.info-expectations-dark .info-expect-item h4 {
  color: var(--white);
}

.info-expectations-dark .info-expect-item p {
  color: rgba(255, 255, 255, 0.65);
}

.info-cta-section {
  padding: 100px 32px;
  background: var(--cream);
  text-align: center;
}

.info-cta-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.info-cta-text {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.info-cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(212, 131, 106, 0.3);
}

.info-cta-btn:hover {
  background: #C27560;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 131, 106, 0.4);
}

.info-cta-note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .info-hero-title,
  .chef-gate-title {
    font-size: 44px;
  }

  .info-section-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .chef-gate {
    padding: 100px 20px 40px;
  }

  .chef-gate-title {
    font-size: 40px;
  }

  .chef-apply-title {
    font-size: 36px;
  }

  .chef-apply-section {
    padding: 100px 16px 60px;
  }

  .chef-apply-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .recipe-card-input {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .recipe-card-number {
    margin-top: 0;
  }

  .info-hero {
    padding: 120px 20px 60px;
  }

  .info-hero-title {
    font-size: 36px;
  }

  .info-hero-subtitle {
    font-size: 16px;
  }

  .info-section {
    padding: 64px 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .info-section-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .info-cta-title {
    font-size: 30px;
  }

  .info-cta-section {
    padding: 64px 20px;
  }
}

.chef-login-container {
  max-width: 460px;
  width: 100%;
  text-align: center;
}

.chef-login-tabs {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid #E0DCD6;
}

.login-tab {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.login-tab.active {
  background: var(--green-dark);
  color: var(--white);
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.google-btn {
  background: var(--white);
  border: 1px solid #E0DCD6;
  color: var(--text-dark);
}

.google-btn:hover {
  background: #F5F5F5;
  border-color: #CACACA;
}

.apple-btn {
  background: #000000;
  border: 1px solid #000000;
  color: var(--white);
}

.apple-btn:hover {
  background: #1A1A1A;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #E0DCD6;
}

.login-divider span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.chef-login-form {
  text-align: left;
  margin-bottom: 24px;
}

.chef-login-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #2D3B2D;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.chef-login-input:focus {
  border-color: var(--coral);
  outline: none;
}

.chef-login-form .form-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.chef-login-form .form-group {
  margin-bottom: 18px;
}

.chef-login-note {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.chef-login-note a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
}

.chef-login-note a:hover {
  text-decoration: underline;
}

.chef-dashboard-page {
  min-height: 100vh;
  padding: 100px 32px 60px;
  background: var(--cream);
}

.chef-dashboard-container {
  max-width: 800px;
  margin: 0 auto;
}

.chef-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.chef-dashboard-welcome h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.chef-dashboard-welcome p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-medium);
}

.chef-signout-btn {
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--white);
  border: 1px solid #E0DCD6;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.chef-signout-btn:hover {
  border-color: var(--text-medium);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dashboard-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.dashboard-card-icon {
  margin-bottom: 16px;
}

.dashboard-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.dashboard-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
}

.dashboard-info {
  margin-top: 40px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.dashboard-info p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.dashboard-info a {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 640px) {
  .chef-login-container {
    max-width: 100%;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .chef-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .chef-dashboard-welcome h1 {
    font-size: 28px;
  }
}
